From patchwork Thu Jul 27 16:46:24 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vagrant Cascadian X-Patchwork-Id: 794530 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=) Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3xJHtv2tDwz9s2G for ; Fri, 28 Jul 2017 02:46:47 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id 25F80C21DD3; Thu, 27 Jul 2017 16:46:42 +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=0.0 required=5.0 tests=none autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 152E9C21D65; Thu, 27 Jul 2017 16:46:40 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id E3F33C21D65; Thu, 27 Jul 2017 16:46:38 +0000 (UTC) Received: from cascadia.aikidev.net (cascadia.aikidev.net [173.255.214.101]) by lists.denx.de (Postfix) with ESMTP id 69E39C21C73 for ; Thu, 27 Jul 2017 16:46:38 +0000 (UTC) Received: from localhost (vtelinet-66-220-238-128.vermontel.net [66.220.238.128]) (Authenticated sender: vagrant@aikidev.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id DB88A1AE9A; Thu, 27 Jul 2017 09:46:36 -0700 (PDT) From: Vagrant Cascadian To: u-boot@lists.denx.de Date: Thu, 27 Jul 2017 12:46:24 -0400 Message-Id: <20170727164625.12972-1-vagrant@debian.org> X-Mailer: git-send-email 2.11.0 Cc: Vagrant Cascadian , Fabio Estevam , Albert Aribaud Subject: [U-Boot] [PATCH] arm: imx: Enable booting from SATA on wandboard. 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" Enable booting from SATA on the wandboard. Sata support was already enabled, but distro_bootcmd is not configured to boot from it. Signed-off-by: Vagrant Cascadian Reviewed-by: Fabio Estevam --- include/configs/wandboard.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/wandboard.h b/include/configs/wandboard.h index a8a48a597f..4c6b3188ec 100644 --- a/include/configs/wandboard.h +++ b/include/configs/wandboard.h @@ -124,6 +124,7 @@ #define BOOT_TARGET_DEVICES(func) \ func(MMC, mmc, 0) \ func(MMC, mmc, 1) \ + func(SATA, sata, 0) \ func(USB, usb, 0) \ func(PXE, pxe, na) \ func(DHCP, dhcp, na)