From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mathieu Othacehe Subject: bug#27007: boot-parameters are not documented Date: Sat, 20 May 2017 22:31:59 +0200 Message-ID: <87wp9bl16o.fsf@gmail.com> References: <20170520200015.7lkqfgp5pju3clvf@penguin.suse.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60445) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dCB3h-0007Mg-Dd for bug-guix@gnu.org; Sat, 20 May 2017 16:33:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dCB3e-0001mg-9V for bug-guix@gnu.org; Sat, 20 May 2017 16:33:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:54644) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dCB3e-0001m1-6e for bug-guix@gnu.org; Sat, 20 May 2017 16:33:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dCB3d-0004vE-RT for bug-guix@gnu.org; Sat, 20 May 2017 16:33:01 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-reply-to: <20170520200015.7lkqfgp5pju3clvf@penguin.suse.cz> 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: =?UTF-8?Q?Tom=C3=A1=C5=A1_?= =?UTF-8?Q?=C4=8Cech?= Cc: 27007@debbugs.gnu.org Hi Tomáš, > My question without answer is - how can I specify bootloader menu entries now? You're right, you have to pass a now. The documentation patch is still in review, you can find it here : https://debbugs.gnu.org/cgi/bugreport.cgi?bug=26339#489 The example has been updated : --8<---------------cut here---------------start------------->8--- @example -(menu-entry +(boot-parameters (label "The Other Distro") - (linux "/boot/old/vmlinux-2.6.32") - (linux-arguments '("root=/dev/sda2")) + (root-device "my-root") + (boot-name 'grub) + (store-device "my-root") + (store-mount-point "/") + (kernel "/boot/old/vmlinux-2.6.32") + (kernel-arguments '("root=/dev/sda2")) (initrd "/boot/old/initrd")) @end example --8<---------------cut here---------------end--------------->8--- It will maybe change again in the future, I'm not sure are our best option here. Anyway, let me now if it works for you. Thanks, Mathieu