From: Jörg Krause Date: Fri, 15 Sep 2017 20:16:48 +0000 (+0200) Subject: net/tftp: fix build if CMD_BOOTEFI is not set X-Git-Tag: v2017.11-rc1~47 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=64b8d7a677ce625c7dd30c040b32b606aea61745;p=platform%2Fkernel%2Fu-boot.git net/tftp: fix build if CMD_BOOTEFI is not set Fixes: net/tftp.c:811: undefined reference to `efi_set_bootdev' Signed-off-by: Jörg Krause Reviewed-by: Bin Meng --- diff --git a/net/tftp.c b/net/tftp.c index a5ed8c5..6671b1f 100644 --- a/net/tftp.c +++ b/net/tftp.c @@ -805,7 +805,9 @@ void tftp_start(enum proto_t protocol) printf("Load address: 0x%lx\n", load_addr); puts("Loading: *\b"); tftp_state = STATE_SEND_RRQ; +#ifdef CONFIG_CMD_BOOTEFI efi_set_bootdev("Net", "", tftp_filename); +#endif } time_start = get_timer(0);