mirror of
https://xff.cz/git/u-boot/
synced 2025-09-26 13:01:17 +02:00
sunxi: Fix build when CONFIG_CMD_PXE or CONFIG_CMD_DHCP are disabled
Signed-off-by: Ondřej Jirman <megous@megous.com>
This commit is contained in:
@@ -399,6 +399,18 @@ extern int soft_i2c_gpio_scl;
|
|||||||
#define BOOT_TARGET_DEVICES_USB(func)
|
#define BOOT_TARGET_DEVICES_USB(func)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef CONFIG_CMD_PXE
|
||||||
|
#define BOOT_TARGET_DEVICES_PXE(func) func(PXE, pxe, na)
|
||||||
|
#else
|
||||||
|
#define BOOT_TARGET_DEVICES_PXE(func)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef CONFIG_CMD_DHCP
|
||||||
|
#define BOOT_TARGET_DEVICES_DHCP(func) func(DHCP, dhcp, na)
|
||||||
|
#else
|
||||||
|
#define BOOT_TARGET_DEVICES_DHCP(func)
|
||||||
|
#endif
|
||||||
|
|
||||||
/* FEL boot support, auto-execute boot.scr if a script address was provided */
|
/* FEL boot support, auto-execute boot.scr if a script address was provided */
|
||||||
#define BOOTENV_DEV_FEL(devtypeu, devtypel, instance) \
|
#define BOOTENV_DEV_FEL(devtypeu, devtypel, instance) \
|
||||||
"bootcmd_fel=" \
|
"bootcmd_fel=" \
|
||||||
@@ -414,8 +426,8 @@ extern int soft_i2c_gpio_scl;
|
|||||||
BOOT_TARGET_DEVICES_MMC(func) \
|
BOOT_TARGET_DEVICES_MMC(func) \
|
||||||
BOOT_TARGET_DEVICES_SCSI(func) \
|
BOOT_TARGET_DEVICES_SCSI(func) \
|
||||||
BOOT_TARGET_DEVICES_USB(func) \
|
BOOT_TARGET_DEVICES_USB(func) \
|
||||||
func(PXE, pxe, na) \
|
BOOT_TARGET_DEVICES_PXE(func) \
|
||||||
func(DHCP, dhcp, na)
|
BOOT_TARGET_DEVICES_DHCP(func)
|
||||||
|
|
||||||
#ifdef CONFIG_OLD_SUNXI_KERNEL_COMPAT
|
#ifdef CONFIG_OLD_SUNXI_KERNEL_COMPAT
|
||||||
#define BOOTCMD_SUNXI_COMPAT \
|
#define BOOTCMD_SUNXI_COMPAT \
|
||||||
|
Reference in New Issue
Block a user