diff options
author | AKASHI Takahiro <takahiro.akashi@linaro.org> | 2024-01-17 13:39:43 +0900 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2024-01-17 08:40:25 +0100 |
commit | 593607c5814e399057e044343248fdaa77ef2238 (patch) | |
tree | 763f0a9f18ddae57719ae1313581ec8e74b30bb3 /net | |
parent | 279b03d979154cf6d4cd086f21daf478bd3d986c (diff) | |
download | u-boot-593607c5814e399057e044343248fdaa77ef2238.tar.gz u-boot-593607c5814e399057e044343248fdaa77ef2238.tar.bz2 u-boot-593607c5814e399057e044343248fdaa77ef2238.zip |
net: tftp: remove explicit efi configuration dependency
Now it is clear that the feature actually depends on efi interfaces,
not "bootefi" command. efi_set_bootdev() will automatically be nullified
if necessary efi component is disabled.
Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/tftp.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/net/tftp.c b/net/tftp.c index 88e71e67de..2e33541349 100644 --- a/net/tftp.c +++ b/net/tftp.c @@ -302,12 +302,10 @@ static void tftp_complete(void) time_start * 1000, "/s"); } puts("\ndone\n"); - if (IS_ENABLED(CONFIG_CMD_BOOTEFI)) { - if (!tftp_put_active) - efi_set_bootdev("Net", "", tftp_filename, - map_sysmem(tftp_load_addr, 0), - net_boot_file_size); - } + if (!tftp_put_active) + efi_set_bootdev("Net", "", tftp_filename, + map_sysmem(tftp_load_addr, 0), + net_boot_file_size); net_set_state(NETLOOP_SUCCESS); } |