conf: machine: use weak assignment for SERIAL_CONSOLES
This allows to override the console using the local.conf. https://jira.digi.com/browse/DEL-2856 Signed-off-by: Diaz de Grenu, Jose <Jose.DiazdeGrenu@digi.com>
This commit is contained in:
parent
c7da3e532c
commit
4850d0ffa9
|
|
@ -11,7 +11,7 @@ UBOOT_CONFIG[ccardimx28js] = "ccardimx28js_config"
|
|||
KERNEL_DEVICETREE = "imx28-${MACHINE}.dtb"
|
||||
|
||||
# Serial console
|
||||
SERIAL_CONSOLES = "115200;ttyAMA0"
|
||||
SERIAL_CONSOLES ?= "115200;ttyAMA0"
|
||||
|
||||
# Bluetooth tty
|
||||
BT_TTY ?= "ttyAPP0"
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ KERNEL_DEVICETREE ?= " \
|
|||
imx6ul-ccimx6ulsbc-id135.dtb \
|
||||
"
|
||||
|
||||
SERIAL_CONSOLES = "115200;ttymxc4"
|
||||
SERIAL_CONSOLES ?= "115200;ttymxc4"
|
||||
|
||||
MACHINE_FEATURES += "second-eth"
|
||||
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ KERNEL_DEVICETREE ?= " \
|
|||
imx6ul-ccimx6ulstarter-id129.dtb \
|
||||
"
|
||||
|
||||
SERIAL_CONSOLES = "115200;ttymxc4"
|
||||
SERIAL_CONSOLES ?= "115200;ttymxc4"
|
||||
|
||||
# Bluetooth tty
|
||||
BT_TTY ?= "ttymxc0"
|
||||
|
|
|
|||
Loading…
Reference in New Issue