conf/machine: Makes SERIAL_CONSOLES overridable

That's very important to be able to redefine some variables for the need
of custom kernels. As on rockchip-based devices the serial interface might
change from a kernel to another, makes it overridable using '?='.

Signed-off-by: Florent Revest <revestflo@gmail.com>
Reviewed-by: Romain Perier <romain.perier@gmail.com>
This commit is contained in:
Florent Revest 2015-07-28 09:38:09 +02:00 committed by Romain Perier
parent 14ccfc2cd8
commit 23cf07b739
2 changed files with 2 additions and 2 deletions

View File

@ -19,5 +19,5 @@ KERNEL_IMAGETYPE = "zImage"
IMAGE_CLASSES += "rockchip-update-img"
IMAGE_FSTYPES += "ext4 rockchip-update-img"
SERIAL_CONSOLES = "115200;ttyFIQ0"
SERIAL_CONSOLES ?= "115200;ttyFIQ0"

View File

@ -10,5 +10,5 @@
require conf/machine/include/rockchip.inc
PREFERRED_PROVIDER_virtual/kernel = "linux"
SERIAL_CONSOLES = "115200;ttyS2"
SERIAL_CONSOLES ?= "115200;ttyS2"
KERNEL_DEVICETREE = "rk3188-radxarock.dtb"