diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-04-12 23:30:27 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-04-12 23:30:27 +0000 |
commit | 4b230e19fc765c582555647945d4380c37cecc49 (patch) | |
tree | 43374f00caf6354fd8fcd14003e8dd5c7dc65813 /target/linux | |
parent | 3cb72f38fda3b3b94bb866b8a37001396ac2f784 (diff) | |
download | mtk-20170518-4b230e19fc765c582555647945d4380c37cecc49.zip mtk-20170518-4b230e19fc765c582555647945d4380c37cecc49.tar.gz mtk-20170518-4b230e19fc765c582555647945d4380c37cecc49.tar.bz2 |
PATCH: Disable console terminal in Grub for alix2 target
The alix2 target has the VGA console for grub enabled by default. This
prevents the grub menu from appearing on bootup. It is disabled by
default for the other embedded x86 platforms. This patch corrects that
behavior for the alix2 target.
Signed-off-by: Adam Gensler <openwrt@kristenandadam.net>
SVN-Revision: 31270
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/x86/image/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/x86/image/Config.in b/target/linux/x86/image/Config.in index fba5da7..a4048c9 100644 --- a/target/linux/x86/image/Config.in +++ b/target/linux/x86/image/Config.in @@ -23,7 +23,7 @@ config X86_GRUB_IMAGES config X86_GRUB_CONSOLE bool "Use Console Terminal (in addition to Serial)" depends X86_GRUB_IMAGES - default n if (TARGET_x86_generic_Soekris45xx || TARGET_x86_generic_Soekris48xx || TARGET_x86_net5501 || TARGET_x86_geos) + default n if (TARGET_x86_generic_Soekris45xx || TARGET_x86_generic_Soekris48xx || TARGET_x86_net5501 || TARGET_x86_geos || TARGET_x86_alix2) default y config X86_GRUB_SERIAL |