From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: bug#30467: GuixSD fails to display login prompt on headless server Date: Sat, 24 Feb 2018 15:51:34 +0100 Message-ID: <20180224155134.66876b39@scratchpost.org> References: <868tbu9u0r.fsf@gmail.com> <20180215165455.09a9efa3@scratchpost.org> <86y3jundqw.fsf@gmail.com> <20180216015312.416091f0@scratchpost.org> <868tbtlnmp.fsf@gmail.com> <20180217180348.1961da18@scratchpost.org> <86mv01iz6h.fsf@gmail.com> <20180222124139.26626adf@scratchpost.org> <86a7vzbtel.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/ug2RIqX1u1Pc+SuPA4HOL5P" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43023) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1epbBG-0008Vw-2t for bug-guix@gnu.org; Sat, 24 Feb 2018 09:52:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1epbBD-0002g2-0k for bug-guix@gnu.org; Sat, 24 Feb 2018 09:52:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:50393) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1epbBC-0002fb-Rv for bug-guix@gnu.org; Sat, 24 Feb 2018 09:52:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1epbBC-00042k-E7 for bug-guix@gnu.org; Sat, 24 Feb 2018 09:52:02 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <86a7vzbtel.fsf@gmail.com> List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: George myglc2 Clemmer Cc: 30467@debbugs.gnu.org --MP_/ug2RIqX1u1Pc+SuPA4HOL5P Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline > > Is there still a cursor? > > NO. That's... bad. The tool I'd need to debug this (fbset) is not available in Guix. And my guix git checkout is a little under construction. So can you please try to guix package -f the attached file? Then please run fbset. Does it work? What does it say? --MP_/ug2RIqX1u1Pc+SuPA4HOL5P Content-Type: text/x-scheme Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=fbset.scm (use-modules (guix packages) (guix download) (guix build-system gnu) (guix licenses) (gnu packages bison) (gnu packages flex)) (package (name "fbset") (version "2.1") (source (origin (method url-fetch) (uri (string-append "http://users.telenet.be/geertu/Linux/fbdev/" name "-" version ".tar.gz")) (sha256 (base32 "080wnisi0jq7dp0jcwdp83rq8q8s3kw41vc712516xbv4jq4mzs0")))) (build-system gnu-build-system) (arguments `(#:tests? #f #:phases (modify-phases %standard-phases (add-after 'unpack 'patch-installer (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) (mkdir-p out) (mkdir-p (string-append out "/bin")) (mkdir-p (string-append out "/man")) (mkdir-p (string-append out "/man/man5")) (mkdir-p (string-append out "/man/man8")) (substitute* "Makefile" (("/usr/sbin") "/usr/bin") (("/usr") out) (("mknod ") "echo ")) #t))) (delete 'configure)))) (native-inputs `(("bison" ,bison) ("flex" ,flex))) (home-page "https://www.gnu.org/software/linux-libre/") (synopsis "Framebuffer device maintenance program") (description "@code{fbset} can be used to set the screen resolution and virtual terminal association of a Framebuffer.") (license gpl2)) --MP_/ug2RIqX1u1Pc+SuPA4HOL5P--