From 81e48b24dd9c97a3bdda3b4140f8e2bda29d24da Mon Sep 17 00:00:00 2001 From: Heiko Schocher Date: Tue, 13 Nov 2018 08:06:30 +0100 Subject: meta-yocto-bsp: beaglebone-yocto.conf: support 8250 serial driver it is possible to use the beagleboneblack with the 8250 serial driver or with the deprecated omap serial driver. Unfortunately serial console get different names (ttyS0 with 8250 driver and ttyO0 with omap driver) So set SERIAL_CONSOLES to SERIAL_CONSOLES ?= "115200;ttyS0 115200;ttyO0" (intentionally with "?=" so it is overwriteable) and activate SERIAL_CONSOLES_CHECK = "${SERIAL_CONSOLES}" with that on the first boot the correct value is picked up automatically. (From meta-yocto rev: ffd224382af6fe1f5eeae32d7b28cc975acdde05) Signed-off-by: Heiko Schocher Signed-off-by: Richard Purdie --- meta-yocto-bsp/conf/machine/beaglebone-yocto.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'meta-yocto-bsp') diff --git a/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf b/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf index e911e75004..69e11eca59 100644 --- a/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf +++ b/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf @@ -20,7 +20,8 @@ WKS_FILE ?= "beaglebone-yocto.wks" IMAGE_INSTALL_append = " kernel-devicetree kernel-image-zimage" do_image_wic[depends] += "mtools-native:do_populate_sysroot dosfstools-native:do_populate_sysroot" -SERIAL_CONSOLES = "115200;ttyO0" +SERIAL_CONSOLES ?= "115200;ttyS0 115200;ttyO0" +SERIAL_CONSOLES_CHECK = "${SERIAL_CONSOLES}" PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto" PREFERRED_VERSION_linux-yocto ?= "4.18%" -- cgit v1.2.3-54-g00ecf