]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
configs: meson64: add SCSI boot target
authorNeil Armstrong <narmstrong@baylibre.com>
Fri, 17 Sep 2021 07:37:04 +0000 (09:37 +0200)
committerNeil Armstrong <narmstrong@baylibre.com>
Thu, 7 Oct 2021 08:14:50 +0000 (10:14 +0200)
Add SCSI target to be able to boot from the SATA disks on the Odroid HC4 using
an on-board AHCI PCIe controller.

Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Signed-off-by: Mark Kettenis <kettenis@openbsd.org>
include/configs/meson64.h

index b779363b2b0831dcaee8729980f37448d64307f8..cb202d5555616849db543c7c782eeaa06e9da01f 100644 (file)
        #define BOOT_TARGET_NVME(func)
 #endif
 
+#ifdef CONFIG_CMD_SCSI
+       #define BOOT_TARGET_SCSI(func) func(SCSI, scsi, 0)
+#else
+       #define BOOT_TARGET_SCSI(func)
+#endif
+
 #ifndef BOOT_TARGET_DEVICES
 #define BOOT_TARGET_DEVICES(func) \
        func(ROMUSB, romusb, na)  \
@@ -70,6 +76,7 @@
        func(MMC, mmc, 2) \
        BOOT_TARGET_DEVICES_USB(func) \
        BOOT_TARGET_NVME(func) \
+       BOOT_TARGET_SCSI(func) \
        func(PXE, pxe, na) \
        func(DHCP, dhcp, na)
 #endif