From d9727db3e7957d4842e4afeeeaa6420d5d2cfa7d Mon Sep 17 00:00:00 2001 From: California Sullivan Date: Mon, 25 Apr 2016 20:00:31 -0700 Subject: conf/machine/intel-*: Add rootwait to APPEND variables When using the init-install-efi.sh scripts from oe-core to install to a USB stick, we do not get the "rootwait" kernel command line option. Without the rootwait option we get a kernel panic when attempting to boot from the installed USB stick. This patch adds rootwait to the kernel command line of all intel-* MACHINEs as a temporary workaround. This could potentially impact boot times with devices that do not require it, but in testing with a Silverjaw lure and SSD on a MinnowBoard Max, it did not have a noticable impact. Signed-off-by: California Sullivan Signed-off-by: Saul Wold --- conf/machine/intel-corei7-64.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'conf/machine/intel-corei7-64.conf') diff --git a/conf/machine/intel-corei7-64.conf b/conf/machine/intel-corei7-64.conf index 8c7a21d5..30d492f8 100644 --- a/conf/machine/intel-corei7-64.conf +++ b/conf/machine/intel-corei7-64.conf @@ -28,6 +28,6 @@ XSERVER ?= "${XSERVER_X86_BASE} \ SYSLINUX_OPTS = "serial 0 115200" SERIAL_CONSOLE = "115200 ttyS0" -APPEND += "console=ttyS0,115200 console=tty0" +APPEND += "rootwait console=ttyS0,115200 console=tty0" PACKAGE_INSTALL_append_pn-core-image-minimal-initramfs = " linux-firmware-i915" -- cgit v1.2.3-54-g00ecf