diff options
author | Markus Niebel <Markus.Niebel@ew.tq-group.com> | 2022-04-06 11:46:02 +0200 |
---|---|---|
committer | Markus Niebel <Markus.Niebel@ew.tq-group.com> | 2022-04-06 11:46:02 +0200 |
commit | 4d3ab7284a98fc0b3e3915e5ac21fc56828e95fa (patch) | |
tree | f2c4ca167dced810a37350fc19a0f1370ed524de /conf/machine/include | |
parent | 4198ce7aed0253afa1b67394741b21fdff643e86 (diff) | |
download | meta-freescale-4d3ab7284a98fc0b3e3915e5ac21fc56828e95fa.tar.gz |
qoriq-arm.inc: use weak defaults
When maintaining a hardware support layer for a SOM there will be different
mainboards and BSP for this SOM. Depending on the use case there may be
different needs for console UART and KERNEL_IMAGETYPE. When providing a
valid weak default in meta-freescale a machine definition can override this
easier as well as a BSP for a specific mainboard.
Signed-off-by: Markus Niebel <Markus.Niebel@ew.tq-group.com>
Diffstat (limited to 'conf/machine/include')
-rw-r--r-- | conf/machine/include/qoriq-arm.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/conf/machine/include/qoriq-arm.inc b/conf/machine/include/qoriq-arm.inc index eb03af43..cd6470ca 100644 --- a/conf/machine/include/qoriq-arm.inc +++ b/conf/machine/include/qoriq-arm.inc | |||
@@ -1,9 +1,9 @@ | |||
1 | # Provides the common settings for QorIQ ARM | 1 | # Provides the common settings for QorIQ ARM |
2 | 2 | ||
3 | KERNEL_IMAGETYPE ?= "uImage" | 3 | KERNEL_IMAGETYPE ??= "uImage" |
4 | 4 | ||
5 | SERIAL_CONSOLES ?= "115200;ttyS0 115200;ttyS1 115200;ttyEHV0 115200;ttyLP0 115200;ttyAMA0" | 5 | SERIAL_CONSOLES ??= "115200;ttyS0 115200;ttyS1 115200;ttyEHV0 115200;ttyLP0 115200;ttyAMA0" |
6 | SERIAL_CONSOLES_CHECK ?= "${SERIAL_CONSOLES}" | 6 | SERIAL_CONSOLES_CHECK ??= "${SERIAL_CONSOLES}" |
7 | 7 | ||
8 | MACHINEOVERRIDES =. "qoriq-arm:" | 8 | MACHINEOVERRIDES =. "qoriq-arm:" |
9 | 9 | ||