Message ID | 1588152641-23265-1-git-send-email-pramod.kumar_1@nxp.com |
---|---|
State | Accepted |
Commit | 1ff0c9d59c7a151956aaac0fc72c85e927617ce3 |
Headers | show |
Series | [v2] include/configs: ls1046afrwy: add support for boot targets. | expand |
>-----Original Message----- >From: U-Boot <u-boot-bounces at lists.denx.de> On Behalf Of Pramod Kumar >Sent: Wednesday, April 29, 2020 3:01 PM >To: u-boot at lists.denx.de >Cc: Priyanka Jain <priyanka.jain at nxp.com>; Pramod Kumar ><pramod.kumar_1 at nxp.com> >Subject: [PATCH v2] include/configs: ls1046afrwy: add support for boot >targets. > >ls1046afrwy does not support sata boot. >So Override default BOOT_TARGET_DEVICES >and support only mmc, usb and dhcp as boot targets. > >Signed-off-by: Pramod Kumar <pramod.kumar_1 at nxp.com> >--- Applied to u-boot-fsl-qoriq. Awaiting upstream. Thanks Priyanka
diff --git a/include/configs/ls1046afrwy.h b/include/configs/ls1046afrwy.h index 4ccd3b0..6ee1a53 100644 --- a/include/configs/ls1046afrwy.h +++ b/include/configs/ls1046afrwy.h @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0+ */ /* - * Copyright 2019 NXP + * Copyright 2019-2020 NXP */ #ifndef __LS1046AFRWY_H__ @@ -102,6 +102,14 @@ #define CONFIG_SYS_FSL_QSPI_BASE 0x40000000 +#ifndef CONFIG_SPL_BUILD +#undef BOOT_TARGET_DEVICES +#define BOOT_TARGET_DEVICES(func) \ + func(MMC, mmc, 0) \ + func(USB, usb, 0) \ + func(DHCP, dhcp, na) +#endif + /* FMan */ #ifdef CONFIG_SYS_DPAA_FMAN #define CONFIG_FMAN_ENET
ls1046afrwy does not support sata boot. So Override default BOOT_TARGET_DEVICES and support only mmc, usb and dhcp as boot targets. Signed-off-by: Pramod Kumar <pramod.kumar_1 at nxp.com> --- Changes in v2: - incorporate review comments include/configs/ls1046afrwy.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-)