diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-10-10 10:40:51 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-10-11 08:26:09 +0100 |
commit | ee16a283d695112236906338887c6eba109c9fb5 (patch) | |
tree | 47d04bafa090e62426e8c296b62be6e93c883e9e | |
parent | 68d56306baa21e66756fb44c6c5680e725b1e3bc (diff) | |
download | openembedded-core-ee16a283d695112236906338887c6eba109c9fb5.tar.gz openembedded-core-ee16a283d695112236906338887c6eba109c9fb5.tar.bz2 openembedded-core-ee16a283d695112236906338887c6eba109c9fb5.zip |
systemd-bootdisk.wks: update kernel command line
Used ttyS0 console.
Removed usage of ttyPCH0 (FRI2 leftover)
Decreased bootloader timeout to 5 seconds
Removed 'vmalloc=256MB snd-hda-intel.enable_msi=0' as it's not
needed for any of reference BSPs.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | scripts/lib/wic/canned-wks/systemd-bootdisk.wks | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/wic/canned-wks/systemd-bootdisk.wks b/scripts/lib/wic/canned-wks/systemd-bootdisk.wks index d80189bcb7..a49d130618 100644 --- a/scripts/lib/wic/canned-wks/systemd-bootdisk.wks +++ b/scripts/lib/wic/canned-wks/systemd-bootdisk.wks @@ -8,4 +8,4 @@ part / --source rootfs --ondisk sda --fstype=ext4 --label platform --align 1024 part swap --ondisk sda --size 44 --label swap1 --fstype=swap -bootloader --timeout=10 --append="rootwait rootfstype=ext4 console=ttyPCH0,115200 console=tty0 vmalloc=256MB snd-hda-intel.enable_msi=0" +bootloader --timeout=5 --append="rootwait rootfstype=ext4 console=ttyS0,115200 console=tty0" |