From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?Q?Cl=C3=A9ment?= Lassieur Subject: Re: manage /boot/grub/grub.cfg without installing grub binaries to disk Date: Sun, 17 Feb 2019 19:26:46 +0100 Message-ID: <878syexod5.fsf@lassieur.org> References: <87va1mpa04.fsf@lassieur.org> <0JDB6ldyhhOxLUXJ1vs5jEGzx20yKPHAspTJWq9Dd0c0TQ8yVVVjvw2R3EMNwpBYINiF69nxHLBzocLqOAeWBI-LrI1ouGOS9fDXIxVgMbk=@protonmail.ch> <8ixPOWGsmqTbgQ2RF_O1Ax624OdjPpl-XW6E70NDSWIIYaGHfoKYffc0chPnZdebgi2fW2fC131YkaUz9chzUhy1PefGpn7eI0ekU66D-Wo=@protonmail.ch> <87a7ivcrj9.fsf@lassieur.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([209.51.188.92]:57855) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gvR9b-0000zS-Gb for guix-devel@gnu.org; Sun, 17 Feb 2019 13:27:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gvR9Z-00061y-Cl for guix-devel@gnu.org; Sun, 17 Feb 2019 13:27:02 -0500 Received: from mail-wm1-f53.google.com ([209.85.128.53]:40114) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gvR9Z-0005yH-4H for guix-devel@gnu.org; Sun, 17 Feb 2019 13:27:01 -0500 Received: by mail-wm1-f53.google.com with SMTP id t15so6637052wmi.5 for ; Sun, 17 Feb 2019 10:26:55 -0800 (PST) In-reply-to: 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: Raghav RG Gururajan Cc: guix-devel@gnu.org Raghav RG Gururajan writes: > @clement > > Thanks! Btw, shouldn't the first line be "(boot loader (bootloader-configuration)" in the code snippet you sent?? Well, I just gave the value of the bootloader field, but with this your config.scm should look like: (operating-system [...] (bootloader (bootloader-configuration (bootloader (bootloader (inherit grub-bootloader) (installer #~(const #t)))))) [...] )