diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2017-02-23 16:22:04 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-04 23:18:18 +0000 |
commit | 13c54959dd04a9f142bc4347ea89c9bfc229d17d (patch) | |
tree | 75d2a99ce3be00505b4278eba56106f513617742 /scripts/lib | |
parent | bf3e8c450063c7cc2dad3a01cfa44e622ca9cad3 (diff) | |
download | poky-13c54959dd04a9f142bc4347ea89c9bfc229d17d.tar.gz |
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>
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/wic/canned-wks/directdisk-bootloader-config.cfg | 28 |
1 files changed, 22 insertions, 6 deletions
diff --git a/scripts/lib/wic/canned-wks/directdisk-bootloader-config.cfg b/scripts/lib/wic/canned-wks/directdisk-bootloader-config.cfg index a16bd6ac61..d5a07d2048 100644 --- a/scripts/lib/wic/canned-wks/directdisk-bootloader-config.cfg +++ b/scripts/lib/wic/canned-wks/directdisk-bootloader-config.cfg | |||
@@ -1,11 +1,27 @@ | |||
1 | # This is an example configuration file for syslinux. | 1 | # This is an example configuration file for syslinux. |
2 | PROMPT 0 | 2 | TIMEOUT 50 |
3 | TIMEOUT 10 | ||
4 | |||
5 | ALLOWOPTIONS 1 | 3 | ALLOWOPTIONS 1 |
6 | SERIAL 0 115200 | 4 | SERIAL 0 115200 |
5 | PROMPT 0 | ||
6 | |||
7 | UI vesamenu.c32 | ||
8 | menu title Select boot options | ||
9 | menu tabmsg Press [Tab] to edit, [Return] to select | ||
10 | |||
11 | DEFAULT Graphics console boot | ||
12 | |||
13 | LABEL Graphics console boot | ||
14 | KERNEL /vmlinuz | ||
15 | APPEND label=boot root=/dev/sda2 rootwait | ||
16 | |||
17 | LABEL Serial console boot | ||
18 | KERNEL /vmlinuz | ||
19 | APPEND label=boot root=/dev/sda2 rootwait console=ttyS0,115200 | ||
20 | |||
21 | LABEL Graphics console install | ||
22 | KERNEL /vmlinuz | ||
23 | APPEND label=install root=/dev/sda2 rootwait | ||
7 | 24 | ||
8 | DEFAULT boot | 25 | LABEL Serial console install |
9 | LABEL boot | ||
10 | KERNEL /vmlinuz | 26 | KERNEL /vmlinuz |
11 | APPEND label=boot root=/dev/sda2 rootwait rootfstype=ext4 video=vesafb vga=0x318 console=tty0 | 27 | APPEND label=install root=/dev/sda2 rootwait console=ttyS0,115200 |