diff options
| author | Eddie Cai <[email protected]> | 2017-04-01 14:49:54 +0800 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2017-04-15 10:13:17 -0600 |
| commit | 1e9d6c159f8e7981cece88f5f43f834506f6fbe5 (patch) | |
| tree | d168ba1d5e9b9df6167dcfe6169519fe33d7a407 /include | |
| parent | bfc664ba8bacc76d0837504dcb5fc9b5606ac2ba (diff) | |
rockchip: Add USB to the default boot targets
Now that most rockchip SoC based board have usb host support, enable
USB boot targets by default.
Signed-off-by: Eddie Cai <[email protected]>
Acked-by: Simon Glass <[email protected]>
Fixed build errors when CONFIG_CMD_USB not defined:
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/rockchip-common.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/configs/rockchip-common.h b/include/configs/rockchip-common.h index fd930c101eb..9d183cee6a8 100644 --- a/include/configs/rockchip-common.h +++ b/include/configs/rockchip-common.h @@ -12,11 +12,20 @@ #include <config_distro_defaults.h> /* First try to boot from SD (index 0), then eMMC (index 1 */ +#ifdef CONFIG_CMD_USB #define BOOT_TARGET_DEVICES(func) \ func(MMC, mmc, 0) \ func(MMC, mmc, 1) \ + func(USB, usb, 0) \ func(PXE, pxe, na) \ func(DHCP, dchp, na) +#else +#define BOOT_TARGET_DEVICES(func) \ + func(MMC, mmc, 0) \ + func(MMC, mmc, 1) \ + func(PXE, pxe, na) \ + func(DHCP, dchp, na) +#endif #define CONFIG_RANDOM_UUID #define PARTS_DEFAULT \ |
