diff options
author | Tomasz Maciej Nowak <tomek_n@o2.pl> | 2019-01-13 21:39:36 +0100 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2019-02-17 18:22:40 +0100 |
commit | 55b808e0c4be681a0aab565d32a70f5af06a1f8a (patch) | |
tree | 6d45fb9c416f7fce9a9732504345eda3d0884242 /target/linux | |
parent | bb0e4f9fb0c101b86b1a0c2785fec9b38b19fd02 (diff) | |
download | upstream-55b808e0c4be681a0aab565d32a70f5af06a1f8a.tar.gz upstream-55b808e0c4be681a0aab565d32a70f5af06a1f8a.tar.bz2 upstream-55b808e0c4be681a0aab565d32a70f5af06a1f8a.zip |
x86: image: add test module to bootloader
It was previously added in 546fced, which was part of "intel-microcode:
load as early as possible" series.
Unfortunately the conditionals added to GRUB config caused error on boot,
because on sysupgrade, bootloader is not updated and is left with old
features/modules. Since this module is needed for early microcode load
and transition to this needs to be done step by step, enable the test
module now, so that every newly created image has it already embedded.
Signed-off-by: Tomasz Maciej Nowak <tomek_n@o2.pl>
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/x86/image/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/x86/image/Makefile b/target/linux/x86/image/Makefile index d799a0ba03..84a3d88a7f 100644 --- a/target/linux/x86/image/Makefile +++ b/target/linux/x86/image/Makefile @@ -9,8 +9,8 @@ include $(INCLUDE_DIR)/image.mk export PATH=$(TARGET_PATH):/sbin -GRUB2_MODULES = biosdisk boot chain configfile ext2 linux ls part_msdos reboot serial vga -GRUB2_MODULES_ISO = biosdisk boot chain configfile iso9660 linux ls part_msdos reboot serial vga +GRUB2_MODULES = biosdisk boot chain configfile ext2 linux ls part_msdos reboot serial test vga +GRUB2_MODULES_ISO = biosdisk boot chain configfile iso9660 linux ls part_msdos reboot serial test vga GRUB_TERMINALS = GRUB_SERIAL_CONFIG = GRUB_TERMINAL_CONFIG = |