diff options
author | Era Tiwari <era.tiwari@nxp.com> | 2020-05-15 12:48:39 +0530 |
---|---|---|
committer | Priyanka Jain <priyanka.jain@nxp.com> | 2020-07-27 14:16:26 +0530 |
commit | e08bcc0e948de2a1ea73b9c58d642d08b1488ce0 (patch) | |
tree | 8482a0619e0a6a97077db92b24002a1bcbc2f948 | |
parent | f8c5815c1b5728b005c97145f5b39df1e59af53b (diff) | |
download | u-boot-e08bcc0e948de2a1ea73b9c58d642d08b1488ce0.tar.gz |
configs: ls1088ardb: Add support for usb boot target
LS1088A-RDB has MMC, SCSI, DHCP as boot targets,
but the USB support was missing.
Add support for USB as Boot_targets_devices.
Signed-off-by: Era Tiwari <era.tiwari@nxp.com>
Signed-off-by: Pramod Kumar <pramod.kumar_1@nxp.com>
[Rebased]
Signed-off-by: Priyanka Jain <priyanka.jain@nxp.com>
-rw-r--r-- | include/configs/ls1088ardb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/configs/ls1088ardb.h b/include/configs/ls1088ardb.h index 16e0486d40..28a458772d 100644 --- a/include/configs/ls1088ardb.h +++ b/include/configs/ls1088ardb.h @@ -524,6 +524,7 @@ #define BOOT_TARGET_DEVICES(func) \ func(MMC, mmc, 0) \ + func(USB, usb, 0) \ func(SCSI, scsi, 0) \ func(DHCP, dhcp, na) #include <config_distro_bootcmd.h> |