Make the grub timeout configurable on x86 targets
Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de> SVN-Revision: 29786
This commit is contained in:
parent
095f7f2da3
commit
2fc3fe1d09
@ -47,6 +47,13 @@ config X86_GRUB_BOOTOPTS
|
|||||||
help
|
help
|
||||||
If you don't know, just leave it blank.
|
If you don't know, just leave it blank.
|
||||||
|
|
||||||
|
config X86_GRUB_TIMEOUT
|
||||||
|
string "Seconds to wait before booting the default entry"
|
||||||
|
depends X86_GRUB_IMAGES
|
||||||
|
default "5"
|
||||||
|
help
|
||||||
|
If you don't know, 5 seconds is a reasonable default.
|
||||||
|
|
||||||
config X86_VDI_IMAGES
|
config X86_VDI_IMAGES
|
||||||
bool "Build VirtualBox image files (VDI)"
|
bool "Build VirtualBox image files (VDI)"
|
||||||
depends X86_GRUB_IMAGES
|
depends X86_GRUB_IMAGES
|
||||||
|
@ -31,6 +31,8 @@ endif
|
|||||||
|
|
||||||
ROOTPART:=$(call qstrip,$(CONFIG_TARGET_ROOTFS_PARTNAME))
|
ROOTPART:=$(call qstrip,$(CONFIG_TARGET_ROOTFS_PARTNAME))
|
||||||
|
|
||||||
|
GRUB_TIMEOUT:=$(call qstrip,$(CONFIG_X86_GRUB_TIMEOUT))
|
||||||
|
|
||||||
ifneq ($(CONFIG_X86_GRUB_IMAGES),)
|
ifneq ($(CONFIG_X86_GRUB_IMAGES),)
|
||||||
|
|
||||||
BOOTOPTS:=$(call qstrip,$(CONFIG_X86_GRUB_BOOTOPTS))
|
BOOTOPTS:=$(call qstrip,$(CONFIG_X86_GRUB_BOOTOPTS))
|
||||||
@ -64,6 +66,7 @@ ifneq ($(CONFIG_X86_GRUB_IMAGES),)
|
|||||||
-e 's#@SERIAL_CONFIG@#$(strip $(GRUB_SERIAL_CONFIG))#g' \
|
-e 's#@SERIAL_CONFIG@#$(strip $(GRUB_SERIAL_CONFIG))#g' \
|
||||||
-e 's#@TERMINAL_CONFIG@#$(strip $(GRUB_TERMINAL_CONFIG))#g' \
|
-e 's#@TERMINAL_CONFIG@#$(strip $(GRUB_TERMINAL_CONFIG))#g' \
|
||||||
-e 's#@CMDLINE@#$(strip $(call Image/cmdline/$(1)) $(BOOTOPTS) $(GRUB_CONSOLE_CMDLINE))#g' \
|
-e 's#@CMDLINE@#$(strip $(call Image/cmdline/$(1)) $(BOOTOPTS) $(GRUB_CONSOLE_CMDLINE))#g' \
|
||||||
|
-e 's#@TIMEOUT@#$(GRUB_TIMEOUT)#g' \
|
||||||
./menu.lst > $(KDIR)/root.grub/boot/grub/menu.lst
|
./menu.lst > $(KDIR)/root.grub/boot/grub/menu.lst
|
||||||
PADDING="$(CONFIG_TARGET_IMAGES_PAD)" PATH="$(TARGET_PATH)" ./gen_image_x86.sh \
|
PADDING="$(CONFIG_TARGET_IMAGES_PAD)" PATH="$(TARGET_PATH)" ./gen_image_x86.sh \
|
||||||
$(BIN_DIR)/$(IMG_PREFIX)-combined-$(1).img \
|
$(BIN_DIR)/$(IMG_PREFIX)-combined-$(1).img \
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
@TERMINAL_CONFIG@
|
@TERMINAL_CONFIG@
|
||||||
|
|
||||||
default 0
|
default 0
|
||||||
timeout 5
|
timeout @TIMEOUT@
|
||||||
|
|
||||||
title OpenWrt
|
title OpenWrt
|
||||||
root (hd0,0)
|
root (hd0,0)
|
||||||
|
Loading…
Reference in New Issue
Block a user