From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: Non-graphical GRUB configuration Date: Wed, 5 Apr 2017 12:07:45 -0400 Message-ID: <20170405160745.GA30632@jasmine> References: <20170331125956.rhlwjg45vwo3pgwh@abyayala> <20170331234321.GA10435@jasmine> <20170401072740.kgzz3zbtikn5hpg5@abyayala> <20170401202901.GA10480@jasmine> <86vaqmwz3c.fsf@gmail.com> <20170402210620.GA26945@jasmine> <20170405115919.GA28944@jasmine> <86zifudgzl.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52374) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cvnTN-00011c-H9 for guix-devel@gnu.org; Wed, 05 Apr 2017 12:07:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cvnTJ-0006fl-J2 for guix-devel@gnu.org; Wed, 05 Apr 2017 12:07:53 -0400 Content-Disposition: inline In-Reply-To: <86zifudgzl.fsf@gmail.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: myglc2 Cc: guix-devel@gnu.org On Wed, Apr 05, 2017 at 11:14:06AM -0400, myglc2 wrote: > I interpreted your doc to say I should use something like this ... > > (bootloader (grub-configuration (device "/dev/nvme0n1") > (serial-speed 115200) > (terminal-inputs '(serial console)) > (terminal-outputs '(console)))) Right, except... > ... to produce something like this in my grub config ... > > serial --unit=0 --speed=115200 > terminal_input serial console; terminal_output console ... you won't get '--unit=0' unless you specify (serial-unit 0) in your GuixSD configuration. However, GRUB defaults to '0', according to its manual.