build_library: add tftp module to grub

This commit is contained in:
Nick Owens 2016-07-06 17:13:28 -07:00
parent 9165182212
commit 14e90df8d5

View File

@ -54,14 +54,14 @@ case "${FLAGS_target}" in
CORE_NAME="core.img" CORE_NAME="core.img"
;; ;;
x86_64-efi) x86_64-efi)
CORE_MODULES+=( serial linuxefi efi_gop getenv smbios efinet verify http ) CORE_MODULES+=( serial linuxefi efi_gop getenv smbios efinet verify http tftp )
CORE_NAME="core.efi" CORE_NAME="core.efi"
;; ;;
x86_64-xen) x86_64-xen)
CORE_NAME="core.elf" CORE_NAME="core.elf"
;; ;;
arm64-efi) arm64-efi)
CORE_MODULES+=( serial efi_gop getenv smbios efinet verify http ) CORE_MODULES+=( serial efi_gop getenv smbios efinet verify http tftp )
CORE_NAME="core.efi" CORE_NAME="core.efi"
BOARD_GRUB=1 BOARD_GRUB=1
;; ;;