From patchwork Sun Apr 16 22:01:33 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vagrant Cascadian X-Patchwork-Id: 751191 X-Patchwork-Delegate: promsoft@gmail.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3w5lkf5q89z9s2s for ; Mon, 17 Apr 2017 08:02:50 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id 9112AC21CCD; Sun, 16 Apr 2017 22:01:58 +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 27603C21D05; Sun, 16 Apr 2017 22:01:56 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 519ECC21CE9; Sun, 16 Apr 2017 22:01:45 +0000 (UTC) Received: from cascadia.aikidev.net (cascadia.aikidev.net [173.255.214.101]) by lists.denx.de (Postfix) with ESMTP id 58686C21CD4 for ; Sun, 16 Apr 2017 22:01:42 +0000 (UTC) Received: from localhost (75-164-202-26.ptld.qwest.net [75.164.202.26]) (Authenticated sender: vagrant@aikidev.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id AA56B1A9FA; Sun, 16 Apr 2017 15:01:41 -0700 (PDT) From: Vagrant Cascadian To: u-boot@lists.denx.de Date: Sun, 16 Apr 2017 15:01:33 -0700 Message-Id: <20170416220133.31043-3-vagrant@debian.org> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170416220133.31043-1-vagrant@debian.org> References: <20170416220133.31043-1-vagrant@debian.org> Cc: Vagrant Cascadian , =?UTF-8?q?Andreas=20F=C3=A4rber?= Subject: [U-Boot] [PATCH 2/2] Enable PXE boot on meson-gxbb. 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 distro_bootcmd PXE functions on meson-gxbb systems. While DHCP boot is already supported, the format is fairly u-boot specific, while PXE boot supports the widely used syslinux style boot configuration format. Signed-off-by: Vagrant Cascadian --- include/configs/meson-gxbb-common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/meson-gxbb-common.h b/include/configs/meson-gxbb-common.h index c3229ea2cf..0339feaed9 100644 --- a/include/configs/meson-gxbb-common.h +++ b/include/configs/meson-gxbb-common.h @@ -41,6 +41,7 @@ #define BOOT_TARGET_DEVICES(func) \ func(MMC, mmc, 0) \ func(MMC, mmc, 1) \ + func(PXE, pxe, na) \ func(DHCP, dhcp, na) #include