1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-02 21:24:09 +03:00

code to bring in the following for x86:

X86_GRUB_ROOTPART: configureable root partition for kernel options
    X86_GRUB_BOOTOPTS: configureable parameters to be added to the boot line



git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5289 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
pavlov 2006-10-24 22:33:23 +00:00
parent 12001ac685
commit 58c8f8ef5a
2 changed files with 14 additions and 1 deletions

View File

@ -14,4 +14,17 @@ config X86_GRUB_KERNELPART
depends X86_GRUB_IMAGES depends X86_GRUB_IMAGES
default 4 default 4
config X86_GRUB_ROOTPART
string
prompt "Root partition on target device" if X86_GRUB_IMAGES
default "/dev/hda2"
help
The root partition on the final device. If you don't know,
you probably want the default (/dev/hda2).
config X86_GRUB_BOOTOPTS
string
prompt "Extra kernel boot options" if X86_GRUB_IMAGES
default ""
help
If you don't know leave it blank

View File

@ -25,7 +25,7 @@ ifeq ($(CONFIG_X86_GRUB_IMAGES),y)
endef endef
define Image/cmdline/ext2 define Image/cmdline/ext2
root=/dev/hda2 rootfstype=ext2 root=$(CONFIG_X86_GRUB_ROOTPART) rootfstype=ext2 $(CONFIG_X86_GRUB_BOOTOPTS)
endef endef
define Image/Build/grub define Image/Build/grub