From patchwork Thu Jun 14 20:46:07 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Guillaume GARDET X-Patchwork-Id: 929708 X-Patchwork-Delegate: xypron.glpk@gmx.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=free.fr Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 416Fyp2Hw7z9s0w for ; Fri, 15 Jun 2018 06:46:26 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id D5A51C21DD9; Thu, 14 Jun 2018 20:46:21 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: * X-Spam-Status: No, score=1.2 required=5.0 tests=FREEMAIL_FROM, RCVD_IN_BL_SPAMCOP_NET, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL autolearn=no autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 8854AC21C27; Thu, 14 Jun 2018 20:46:19 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id A3D4AC21C27; Thu, 14 Jun 2018 20:46:17 +0000 (UTC) Received: from smtp1-g21.free.fr (smtp1-g21.free.fr [212.27.42.1]) by lists.denx.de (Postfix) with ESMTPS id C9D25C21BE5 for ; Thu, 14 Jun 2018 20:46:15 +0000 (UTC) Received: from localhost.localdomain (unknown [91.163.92.88]) by smtp1-g21.free.fr (Postfix) with ESMTP id 2ED60B0057F; Thu, 14 Jun 2018 22:46:15 +0200 (CEST) From: Guillaume GARDET To: u-boot@lists.denx.de Date: Thu, 14 Jun 2018 22:46:07 +0200 Message-Id: <20180614204607.16722-1-guillaume.gardet@free.fr> X-Mailer: git-send-email 2.17.1 Cc: Tom Rini , Guillaume GARDET Subject: [U-Boot] [PATCH] distro: add more efi dtb prefixes X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" As used on some distro, such as openSUSE. Signed-off-by: Guillaume GARDET Cc: Tom Rini --- include/config_distro_bootcmd.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/config_distro_bootcmd.h b/include/config_distro_bootcmd.h index d672e8ebe6..ad4c7a78f1 100644 --- a/include/config_distro_bootcmd.h +++ b/include/config_distro_bootcmd.h @@ -141,7 +141,8 @@ "load ${devtype} ${devnum}:${distro_bootpart} " \ "${fdt_addr_r} ${prefix}${efi_fdtfile}\0" \ \ - "efi_dtb_prefixes=/ /dtb/ /dtb/current/\0" \ + "efi_dtb_prefixes=/ /dtb/ /dtb/current/ " \ + "/boot/ /boot/dtb/ /boot/dtb/current/\0" \ "scan_dev_for_efi=" \ "setenv efi_fdtfile ${fdtfile}; " \ BOOTENV_EFI_SET_FDTFILE_FALLBACK \