From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mathieu Othacehe Subject: Re: Unable to get (menu-entries (...)) to work properly Date: Sun, 09 Apr 2017 10:05:25 +0200 Message-ID: <87k26uj9a2.fsf@gmail.com> References: <20170409003642.5f1c05d5@khaalida> <20170409.095907.824263399826758452.post@thomasdanckaert.be> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44732) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cx7ql-0004W5-R5 for help-guix@gnu.org; Sun, 09 Apr 2017 04:05:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cx7qh-0006nV-S4 for help-guix@gnu.org; Sun, 09 Apr 2017 04:05:31 -0400 Received: from mail-wr0-x243.google.com ([2a00:1450:400c:c0c::243]:33606) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cx7qh-0006nN-Kh for help-guix@gnu.org; Sun, 09 Apr 2017 04:05:27 -0400 Received: by mail-wr0-x243.google.com with SMTP id l28so420454wre.0 for ; Sun, 09 Apr 2017 01:05:27 -0700 (PDT) In-reply-to: <20170409.095907.824263399826758452.post@thomasdanckaert.be> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Thomas Danckaert Cc: help-guix@gnu.org Hi, > I think `menu-entries' should be a list. Try > > (menu-entries (list (menu-entry [...]))) Thomas is right, I just tried it with the following configuration and it works for me : --8<---------------cut here---------------start------------->8--- (bootloader (grub-configuration (device "/dev/sda") (timeout 1) (menu-entries (list (menu-entry (label "test") (initrd "/boot/inittest") (linux "/boot/vmtest")))))) --8<---------------cut here---------------end--------------->8--- Mathieu