From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mateusz Kulikowski Date: Tue, 12 Jul 2016 21:26:59 +0200 Subject: [U-Boot] [PATCH] dragonboard410c: prefer sdcard boot over emmc In-Reply-To: <1467565141-17740-1-git-send-email-rsalveti@rsalveti.net> References: <1467565141-17740-1-git-send-email-rsalveti@rsalveti.net> Message-ID: <57854483.9070905@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 03.07.2016 18:59, Ricardo Salveti wrote: > Make the external devices the preferred ones when booting the system > (usb is already the first option). This allows users to easily boot > custom distributions without requiring them to reflash/customize u-boot. > > Cc: Mateusz Kulikowski > Signed-off-by: Ricardo Salveti > --- > include/configs/dragonboard410c.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/configs/dragonboard410c.h b/include/configs/dragonboard410c.h > index 4b00922..74a827d 100644 > --- a/include/configs/dragonboard410c.h > +++ b/include/configs/dragonboard410c.h > @@ -84,8 +84,8 @@ > > #define BOOT_TARGET_DEVICES(func) \ > func(USB, usb, 0) \ > - func(MMC, mmc, 0) \ > func(MMC, mmc, 1) \ > + func(MMC, mmc, 0) \ > func(DHCP, dhcp, na) > > #include > +1, I don't know why didn't I thought about that. Acked-by: Mateusz Kulikowski