From: Vagrant Cascadian Date: Wed, 6 Apr 2022 20:42:03 +0000 (-0700) Subject: rockchip: Enable SCSI in distro bootcmd for rk3399. X-Git-Tag: v2022.07~97^2~43 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=48cd7a1f6ccb7d971460e95a2b6c053d6e2a28d1;p=platform%2Fkernel%2Fu-boot.git rockchip: Enable SCSI in distro bootcmd for rk3399. Include SCSI in the list of boot targets if CONFIG_CMD_SCSI is enabled. Signed-off-by: Vagrant Cascadian Reviewed-by: Kever Yang --- diff --git a/include/configs/rockchip-common.h b/include/configs/rockchip-common.h index ba7061a..0c08776 100644 --- a/include/configs/rockchip-common.h +++ b/include/configs/rockchip-common.h @@ -29,6 +29,12 @@ #define BOOT_TARGET_NVME(func) #endif +#if CONFIG_IS_ENABLED(CMD_SCSI) + #define BOOT_TARGET_SCSI(func) func(SCSI, scsi, 0) +#else + #define BOOT_TARGET_SCSI(func) +#endif + #if CONFIG_IS_ENABLED(CMD_USB) #define BOOT_TARGET_USB(func) func(USB, usb, 0) #else @@ -57,6 +63,7 @@ #define BOOT_TARGET_DEVICES(func) \ BOOT_TARGET_MMC(func) \ BOOT_TARGET_NVME(func) \ + BOOT_TARGET_SCSI(func) \ BOOT_TARGET_USB(func) \ BOOT_TARGET_PXE(func) \ BOOT_TARGET_DHCP(func) \