mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

Added 3 new targets to directdisk-bootloader-config.cfg to match hddimg syslinux config. This is a preparation for dropping hddimg in favor of wic. [YOCTO #11044] (From OE-Core rev: 95bf0af5293a7f5868abd85f4fc15f5c542bfd09) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
634 B
INI
28 lines
634 B
INI
# This is an example configuration file for syslinux.
|
|
TIMEOUT 50
|
|
ALLOWOPTIONS 1
|
|
SERIAL 0 115200
|
|
PROMPT 0
|
|
|
|
UI vesamenu.c32
|
|
menu title Select boot options
|
|
menu tabmsg Press [Tab] to edit, [Return] to select
|
|
|
|
DEFAULT Graphics console boot
|
|
|
|
LABEL Graphics console boot
|
|
KERNEL /vmlinuz
|
|
APPEND label=boot root=/dev/sda2 rootwait
|
|
|
|
LABEL Serial console boot
|
|
KERNEL /vmlinuz
|
|
APPEND label=boot root=/dev/sda2 rootwait console=ttyS0,115200
|
|
|
|
LABEL Graphics console install
|
|
KERNEL /vmlinuz
|
|
APPEND label=install root=/dev/sda2 rootwait
|
|
|
|
LABEL Serial console install
|
|
KERNEL /vmlinuz
|
|
APPEND label=install root=/dev/sda2 rootwait console=ttyS0,115200
|