From: Gervais, Francois Date: Sat, 16 Feb 2019 21:10:32 +0000 (+0000) Subject: cmd/fs: fix build if CMD_BOOTEFI is not set X-Git-Tag: baikal/mips/sdk5.9~1102^2~6 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=b07cdc6e8e6caa96323de824fab9fa9601879374;p=uboot.git cmd/fs: fix build if CMD_BOOTEFI is not set Fixes: cmd/fs.c:29: undefined reference to `efi_set_bootdev' Signed-off-by: Francois Gervais --- diff --git a/cmd/fs.c b/cmd/fs.c index 8064a1c84d..94467671be 100644 --- a/cmd/fs.c +++ b/cmd/fs.c @@ -26,8 +26,10 @@ U_BOOT_CMD( static int do_load_wrapper(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) { +#ifdef CONFIG_CMD_BOOTEFI efi_set_bootdev(argv[1], (argc > 2) ? argv[2] : "", (argc > 4) ? argv[4] : ""); +#endif return do_load(cmdtp, flag, argc, argv, FS_TYPE_ANY); }