mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 18:02:12 +01:00
Add a 'wic kickstart' help section to make it easy for users to access the kickstart reference without having to go to an external website. (From OE-Core rev: 136137ec1c124aee89d2120abded60a5cf0562b0) Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
11 lines
433 B
Plaintext
11 lines
433 B
Plaintext
# short-description: Create a 'pcbios' direct disk image
|
|
# long-description: Creates a partitioned legacy BIOS disk image that the user
|
|
# can directly dd to boot media.
|
|
|
|
|
|
part /boot --source bootimg-pcbios --ondisk sda --label boot --active --align 1024
|
|
part / --source rootfs --ondisk sda --fstype=ext3 --label platform --align 1024
|
|
|
|
bootloader --timeout=0 --append="rootwait rootfstype=ext3 video=vesafb vga=0x318 console=tty0"
|
|
|