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: Mon, 26 Feb 2018 18:32:00 +0100 Message-ID: <20180226183200.0e5ce79c@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> <20180224155134.66876b39@scratchpost.org> <868tbfelbg.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/RVWSXYlYxWMGMfHsZILsGwZ" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51866) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eqMe9-0000yw-Qw for bug-guix@gnu.org; Mon, 26 Feb 2018 12:33:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eqMe6-0008Nr-Jw for bug-guix@gnu.org; Mon, 26 Feb 2018 12:33:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:54115) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eqMe6-0008Nf-E9 for bug-guix@gnu.org; Mon, 26 Feb 2018 12:33:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eqMe6-0006MY-7A for bug-guix@gnu.org; Mon, 26 Feb 2018 12:33:02 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <868tbfelbg.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_/RVWSXYlYxWMGMfHsZILsGwZ Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Try the attached one... --MP_/RVWSXYlYxWMGMfHsZILsGwZ 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 #:parallel-build? #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_/RVWSXYlYxWMGMfHsZILsGwZ--