wic: add more targets to directdisk syslinux config

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>
This commit is contained in:
Ed Bartosh 2017-02-23 16:22:04 +02:00 committed by Richard Purdie
parent bf3e8c4500
commit 13c54959dd
1 changed files with 22 additions and 6 deletions

View File

@ -1,11 +1,27 @@
# This is an example configuration file for syslinux.
PROMPT 0
TIMEOUT 10
TIMEOUT 50
ALLOWOPTIONS 1
SERIAL 0 115200
PROMPT 0
DEFAULT boot
LABEL boot
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 rootfstype=ext4 video=vesafb vga=0x318 console=tty0
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