imx-base.inc unconditionally sets SERIAL_CONSOLE to ttymxc0. So assigning with ?= here to the same value does nothing and may confuse if someone wants to assign to a different UART.
Signed-off-by: Max Krummenacher <[email protected]> --- Changes in v2: None conf/machine/apalis-imx6.conf | 2 -- conf/machine/colibri-imx6.conf | 2 -- 2 files changed, 4 deletions(-) diff --git a/conf/machine/apalis-imx6.conf b/conf/machine/apalis-imx6.conf index 0715a9b..47a9d87 100644 --- a/conf/machine/apalis-imx6.conf +++ b/conf/machine/apalis-imx6.conf @@ -32,6 +32,4 @@ IMAGE_FSTYPES += "tar.xz" # wic support WKS_FILE = "sdimage-bootpart.wks" -SERIAL_CONSOLE ?= "115200 ttymxc0" - MACHINE_FEATURES += "screen usbgadget usbhost vfat ext2 alsa touchscreen wifi bluetooth 3g pci" diff --git a/conf/machine/colibri-imx6.conf b/conf/machine/colibri-imx6.conf index bc1671d..d3c2d00 100644 --- a/conf/machine/colibri-imx6.conf +++ b/conf/machine/colibri-imx6.conf @@ -30,6 +30,4 @@ IMAGE_FSTYPES += "tar.xz" # wic support WKS_FILE = "sdimage-bootpart.wks" -SERIAL_CONSOLE ?= "115200 ttymxc0" - MACHINE_FEATURES += "screen usbgadget usbhost vfat ext2 alsa touchscreen wifi bluetooth 3g" -- 2.13.6 -- _______________________________________________ meta-freescale mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-freescale
