The implementation of FW_LOADER requires CMDLINE to be enabled, and
expressses this. In order to not have to have every users also depends
on CMDLINE introduce SUPPORTS_FW_LOADER. This depends on CMDLINE and
ENV_SUPPORT and then we have all users depends on SUPPORTS_FW_LOADER.
Signed-off-by: Tom Rini <trini@konsulko.com>
config PHY_AQUANTIA_UPLOAD_FW
bool "Aquantia firmware loading support"
depends on PHY_AQUANTIA
+ depends on SUPPORTS_FW_LOADER
select FW_LOADER
help
Aquantia PHYs use firmware which can be either loaded automatically
config PHY_AIROHA_EN8811
bool "Airoha Ethernet EN8811H support"
depends on PHY_AIROHA
+ depends on SUPPORTS_FW_LOADER
select FW_LOADER
help
AIROHA EN8811H supported.
config PHY_MEDIATEK_2P5GE
bool "MediaTek built-in 2.5Gb ethernet PHYs"
depends on OF_CONTROL && (TARGET_MT7987 || TARGET_MT7988)
+ depends on SUPPORTS_FW_LOADER
select FW_LOADER
select MTK_NET_PHYLIB
help
Enable this option to calculate entries for CRC tables at runtime.
This can be helpful when reducing the size of the build image
-config FW_LOADER
- bool "Enable firmware loader using environment script"
+config SUPPORTS_FW_LOADER
+ bool
depends on CMDLINE
depends on ENV_SUPPORT
+
+config FW_LOADER
+ bool "Enable firmware loader using environment script"
+ depends on SUPPORTS_FW_LOADER
help
Enable this option to make firmware loading using user-provided
U-Boot environment script functionality accessible to U-Boot code.