2006-10-08 18:48:56 +03:00
|
|
|
config X86_GRUB_IMAGES
|
2006-10-26 02:52:17 +03:00
|
|
|
bool "Build GRUB images (Linux x86 or x86_64 host only)"
|
2009-11-18 12:13:40 +02:00
|
|
|
depends TARGET_x86 && !TARGET_x86_olpc
|
2007-10-08 21:53:19 +03:00
|
|
|
depends TARGET_ROOTFS_EXT2FS || TARGET_ROOTFS_JFFS2 || TARGET_ROOTFS_SQUASHFS || TARGET_ROOTFS_ISO
|
2007-10-09 06:19:07 +03:00
|
|
|
select PACKAGE_grub
|
2006-10-26 02:52:17 +03:00
|
|
|
default y
|
2006-10-08 18:48:56 +03:00
|
|
|
|
2007-02-25 19:59:23 +02:00
|
|
|
config X86_GRUB_IMAGES_PAD
|
|
|
|
bool "Pad GRUB images to filesystem size (for JFFS2)"
|
|
|
|
depends X86_GRUB_IMAGES
|
|
|
|
|
2006-10-08 18:48:56 +03:00
|
|
|
config X86_GRUB_BAUDRATE
|
2006-10-26 02:52:17 +03:00
|
|
|
int "Serial port baud rate"
|
|
|
|
depends X86_GRUB_IMAGES
|
|
|
|
default 38400
|
2006-10-08 18:48:56 +03:00
|
|
|
|
|
|
|
config X86_GRUB_KERNELPART
|
2006-10-26 02:52:17 +03:00
|
|
|
int "Kernel partition size (in MB)"
|
|
|
|
depends X86_GRUB_IMAGES
|
|
|
|
default 4
|
2006-10-08 18:48:56 +03:00
|
|
|
|
2006-10-25 01:33:23 +03:00
|
|
|
config X86_GRUB_ROOTPART
|
|
|
|
string
|
|
|
|
prompt "Root partition on target device" if X86_GRUB_IMAGES
|
2009-09-25 17:15:21 +03:00
|
|
|
default "/dev/sda2"
|
2006-10-25 01:33:23 +03:00
|
|
|
help
|
2006-10-26 02:52:17 +03:00
|
|
|
The root partition on the final device. If you don't know,
|
2006-10-27 08:22:39 +03:00
|
|
|
you probably want the default (/dev/hda2).
|
2006-10-19 06:27:24 +03:00
|
|
|
|
2006-10-25 01:33:23 +03:00
|
|
|
config X86_GRUB_BOOTOPTS
|
|
|
|
string
|
|
|
|
prompt "Extra kernel boot options" if X86_GRUB_IMAGES
|
|
|
|
default ""
|
|
|
|
help
|
2006-10-26 02:52:17 +03:00
|
|
|
If you don't know, just leave it blank.
|
2008-05-30 19:50:37 +03:00
|
|
|
|
|
|
|
|
|
|
|
config X86_VDI_IMAGES
|
2009-01-02 16:35:18 +02:00
|
|
|
bool "Build VirtualBox image files (VDI). Requires VBoxManage"
|
2009-11-03 03:02:39 +02:00
|
|
|
depends TARGET_x86_generic
|
2008-05-30 19:50:37 +03:00
|
|
|
depends TARGET_ROOTFS_EXT2FS
|
|
|
|
depends X86_GRUB_IMAGES
|
|
|
|
select PACKAGE_kmod-pcnet32
|
|
|
|
|
2008-11-09 19:39:09 +02:00
|
|
|
config X86_VMDK_IMAGES
|
|
|
|
bool "Build VMware image files (VMDK). Requires qemu-img"
|
2009-11-03 03:02:39 +02:00
|
|
|
depends TARGET_x86_generic
|
2008-11-09 19:39:09 +02:00
|
|
|
depends TARGET_ROOTFS_EXT2FS
|
|
|
|
depends X86_GRUB_IMAGES
|
|
|
|
select PACKAGE_kmod-e1000
|
2009-11-03 03:02:39 +02:00
|
|
|
|
|
|
|
config OLPC_BOOTSCRIPT_IMAGES
|
|
|
|
bool "Build images with bootscript"
|
|
|
|
depends TARGET_x86_olpc
|
|
|
|
depends TARGET_ROOTFS_EXT2FS || TARGET_ROOTFS_JFFS2 || TARGET_ROOTFS_SQUASHFS || TARGET_ROOTFS_ISO
|
|
|
|
default y
|
|
|
|
|
|
|
|
config OLPC_BOOTSCRIPT_IMAGES_PAD
|
|
|
|
bool "Pad bootscript images to filesystem size (for JFFS2)"
|
|
|
|
depends OLPC_BOOTSCRIPT_IMAGES
|
|
|
|
|
|
|
|
config OLPC_BOOTSCRIPT_KERNELPART
|
|
|
|
int "Kernel partition size (in MB)"
|
|
|
|
depends OLPC_BOOTSCRIPT_IMAGES
|
|
|
|
default 4
|
|
|
|
|
|
|
|
config OLPC_BOOTSCRIPT_ROOTPART
|
|
|
|
string
|
|
|
|
prompt "Root partition on target device" if OLPC_BOOTSCRIPT_IMAGES
|
|
|
|
default "/dev/sda2"
|
|
|
|
help
|
|
|
|
The root partition on the final device. If you don't know,
|
|
|
|
you probably want the default (/dev/sda2).
|
|
|
|
|