From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36319) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eHaX9-0008E4-67 for guix-patches@gnu.org; Wed, 22 Nov 2017 14:18:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eHaX4-0006r0-VC for guix-patches@gnu.org; Wed, 22 Nov 2017 14:18:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:44408) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eHaX4-0006qP-Rc for guix-patches@gnu.org; Wed, 22 Nov 2017 14:18:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eHaX4-0006bB-IZ for guix-patches@gnu.org; Wed, 22 Nov 2017 14:18:02 -0500 Subject: [bug#29404] [PATCH] bootloader: extlinux: Fix device tree path. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36195) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eHaWV-0008CZ-JM for guix-patches@gnu.org; Wed, 22 Nov 2017 14:17:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eHaWR-0005gd-97 for guix-patches@gnu.org; Wed, 22 Nov 2017 14:17:27 -0500 Received: from mail-wr0-x236.google.com ([2a00:1450:400c:c0c::236]:35738) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eHaWR-0005ec-3I for guix-patches@gnu.org; Wed, 22 Nov 2017 14:17:23 -0500 Received: by mail-wr0-x236.google.com with SMTP id w95so15558124wrc.2 for ; Wed, 22 Nov 2017 11:17:23 -0800 (PST) From: Mathieu Othacehe Date: Wed, 22 Nov 2017 20:17:15 +0100 Message-Id: <20171122191715.28788-1-m.othacehe@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 29404@debbugs.gnu.org * gnu/bootloader/extlinux.scm (extlinux-configuration-file): Use kernel directory to format device tree file path. --- gnu/bootloader/extlinux.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/bootloader/extlinux.scm b/gnu/bootloader/extlinux.scm index e5fdeb580..0db5598fc 100644 --- a/gnu/bootloader/extlinux.scm +++ b/gnu/bootloader/extlinux.scm @@ -53,7 +53,7 @@ corresponding to old generations of the system." APPEND ~a ~%" #$label #$label - #$kernel #$kernel #$initrd + #$kernel (dirname #$kernel) #$initrd (string-join (list #$@kernel-arguments))))) (define builder -- 2.15.0