From patchwork Wed Jan 11 10:46:15 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Romain Perier X-Patchwork-Id: 90883 Delivered-To: patch@linaro.org Received: by 10.140.20.99 with SMTP id 90csp1108865qgi; Wed, 11 Jan 2017 05:02:21 -0800 (PST) X-Received: by 10.28.126.18 with SMTP id z18mr3323445wmc.87.1484139741740; Wed, 11 Jan 2017 05:02:21 -0800 (PST) Return-Path: Received: from theia.denx.de (theia.denx.de. [85.214.87.163]) by mx.google.com with ESMTP id 21si4368308wrx.116.2017.01.11.05.02.21; Wed, 11 Jan 2017 05:02:21 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) client-ip=85.214.87.163; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) smtp.mailfrom=u-boot-bounces@lists.denx.de; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=collabora.com Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 10662B38AD; Wed, 11 Jan 2017 14:02:17 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QDT0MpMEVmvF; Wed, 11 Jan 2017 14:02:16 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 7CF6EB3900; Wed, 11 Jan 2017 14:02:01 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 986AFA7631 for ; Wed, 11 Jan 2017 11:55:45 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id wNEpWOTTHCGI for ; Wed, 11 Jan 2017 11:55:45 +0100 (CET) X-Greylist: delayed 558 seconds by postgrey-1.34 at theia; Wed, 11 Jan 2017 11:55:42 CET X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [46.235.227.227]) by theia.denx.de (Postfix) with ESMTPS id 0D33CA75F5 for ; Wed, 11 Jan 2017 11:55:42 +0100 (CET) Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: rperier) with ESMTPSA id E123A269799 From: Romain Perier To: Simon Glass Date: Wed, 11 Jan 2017 11:46:15 +0100 Message-Id: <20170111104617.29915-10-romain.perier@collabora.com> X-Mailer: git-send-email 2.9.3 In-Reply-To: <20170111104617.29915-1-romain.perier@collabora.com> References: <20170111104617.29915-1-romain.perier@collabora.com> X-Mailman-Approved-At: Wed, 11 Jan 2017 14:01:51 +0100 Cc: Romain Perier , u-boot@lists.denx.de Subject: [U-Boot] [PATCH v7 09/11] rockchip: Add PXE and DHCP to the default boot targets X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 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" From: Sjoerd Simons Now that at least on the firefly board we have network support, enable PXE and DHCP boot targets by default. Signed-off-by: Sjoerd Simons Acked-by: Simon Glass Acked-by: Joe Hershberger --- Changes in v7: None Changes in v6: None Changes in v5: None Changes in v4: None Changes in v3: None Changes in v2: None include/configs/rockchip-common.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) -- 2.9.3 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot diff --git a/include/configs/rockchip-common.h b/include/configs/rockchip-common.h index 9ec71c4..be53e65 100644 --- a/include/configs/rockchip-common.h +++ b/include/configs/rockchip-common.h @@ -14,7 +14,9 @@ /* First try to boot from SD (index 0), then eMMC (index 1 */ #define BOOT_TARGET_DEVICES(func) \ func(MMC, mmc, 0) \ - func(MMC, mmc, 1) + func(MMC, mmc, 1) \ + func(PXE, pxe, na) \ + func(DHCP, dchp, na) /* Enable gpt partition table */ #define CONFIG_CMD_GPT