diff options
author | Jan Kiszka <jan.kiszka@siemens.com> | 2022-10-14 18:10:06 +0200 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2022-11-06 10:50:04 +0100 |
commit | 77b5c4a5b1dcc6dafde116bfdd66f769769a0aeb (patch) | |
tree | 55a24eae5815bef26b4c8c3181088bde91c49d09 /lib/efi_selftest | |
parent | 607566d010925c53355839c6e6c6451b15adfa58 (diff) | |
download | u-boot-77b5c4a5b1dcc6dafde116bfdd66f769769a0aeb.zip u-boot-77b5c4a5b1dcc6dafde116bfdd66f769769a0aeb.tar.gz u-boot-77b5c4a5b1dcc6dafde116bfdd66f769769a0aeb.tar.bz2 |
efi_loader: Let networking support depend on NETDEVICES
CONFIG_NET does not imply that there are actually network devices
available, only CONFIG_NETDEVICES does. Changing to this dependency
obsoletes the check in Kconfig because NETDEVICES means DM_ETH.
Fixes: 0efe1bcf5c2c ("efi_loader: Add network access support")
Suggested-by: Tom Rini <trini@konsulko.com>
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'lib/efi_selftest')
-rw-r--r-- | lib/efi_selftest/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_selftest/Makefile b/lib/efi_selftest/Makefile index daac6c3..e4d7542 100644 --- a/lib/efi_selftest/Makefile +++ b/lib/efi_selftest/Makefile @@ -50,7 +50,7 @@ efi_selftest_variables_runtime.o \ efi_selftest_watchdog.o obj-$(CONFIG_EFI_ECPT) += efi_selftest_ecpt.o -obj-$(CONFIG_NET) += efi_selftest_snp.o +obj-$(CONFIG_NETDEVICES) += efi_selftest_snp.o obj-$(CONFIG_EFI_DEVICE_PATH_TO_TEXT) += efi_selftest_devicepath.o obj-$(CONFIG_EFI_UNICODE_COLLATION_PROTOCOL2) += \ |