Message ID | 20200318054025.46740-1-biwen.li@nxp.com |
---|---|
State | Accepted |
Commit | fad129f3296bd4b66fcf70cfde67b70ddddc6f7e |
Headers | show |
Series | [v2] include/configs: ls1012afrwy: support dhcp boot | expand |
>-----Original Message----- >From: U-Boot <u-boot-bounces at lists.denx.de> On Behalf Of Biwen Li >Sent: Wednesday, March 18, 2020 11:10 AM >To: Jagdish Gediya <jagdish.gediya at nxp.com>; Priyanka Jain ><priyanka.jain at nxp.com>; Pramod Kumar <pramod.kumar_1 at nxp.com> >Cc: Alison Wang <alison.wang at nxp.com>; u-boot at lists.denx.de; Jiafei Pan ><jiafei.pan at nxp.com>; Biwen Li <biwen.li at nxp.com> >Subject: [v2, PATCH] include/configs: ls1012afrwy: support dhcp boot > >This supports dhcp boot for ls1012afrwy please update description to something like "Add support of dhcp boot for ls1012afrwy" > >Signed-off-by: Biwen Li <biwen.li at nxp.com> >--- >Change in v2: > - update subject > - recover original macro > - add dhcp boot > > include/configs/ls1012afrwy.h | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > >diff --git a/include/configs/ls1012afrwy.h b/include/configs/ls1012afrwy.h >index dde4369c97..5fc00a9d93 100644 >--- a/include/configs/ls1012afrwy.h >+++ b/include/configs/ls1012afrwy.h >@@ -30,7 +30,8 @@ > #undef BOOT_TARGET_DEVICES > #define BOOT_TARGET_DEVICES(func) \ > func(MMC, mmc, 0) \ >- func(USB, usb, 0) >+ func(USB, usb, 0) \ >+ func(DHCP, dhcp, na) > #endif > > #undef FSL_QSPI_FLASH_SIZE >-- >2.17.1 Regards Priyanka
diff --git a/include/configs/ls1012afrwy.h b/include/configs/ls1012afrwy.h index dde4369c97..5fc00a9d93 100644 --- a/include/configs/ls1012afrwy.h +++ b/include/configs/ls1012afrwy.h @@ -30,7 +30,8 @@ #undef BOOT_TARGET_DEVICES #define BOOT_TARGET_DEVICES(func) \ func(MMC, mmc, 0) \ - func(USB, usb, 0) + func(USB, usb, 0) \ + func(DHCP, dhcp, na) #endif #undef FSL_QSPI_FLASH_SIZE
This supports dhcp boot for ls1012afrwy Signed-off-by: Biwen Li <biwen.li at nxp.com> --- Change in v2: - update subject - recover original macro - add dhcp boot include/configs/ls1012afrwy.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)