diff options
author | Markus Niebel <Markus.Niebel@ew.tq-group.com> | 2022-04-12 11:16:43 +0200 |
---|---|---|
committer | Markus Niebel <Markus.Niebel@ew.tq-group.com> | 2022-04-12 11:24:58 +0200 |
commit | 382b57379c51201af8c951898e1ae4ec98a93454 (patch) | |
tree | fc46e173dbf6254d184f0bb77ab27b417044aac4 /conf/machine/include | |
parent | 9a71061c61e45cdebb26ba35c383f3b6af299e7d (diff) | |
download | meta-freescale-382b57379c51201af8c951898e1ae4ec98a93454.tar.gz |
Partially revert "qoriq-arm.inc: use weak defaults"
Although it seems a good idea to use a weak default for KERNEL_IMAGETYPE
this cannot be achieved since kernel.bbclass does already a default
assignment which has precedence over weak assignments.
If a machine requeires other image types, KERNEL_IMAGETYPE needs to be
assigned by the machine config file.
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 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/conf/machine/include/qoriq-arm.inc b/conf/machine/include/qoriq-arm.inc index 6941d3a4..89e9c4c0 100644 --- a/conf/machine/include/qoriq-arm.inc +++ b/conf/machine/include/qoriq-arm.inc | |||
@@ -1,6 +1,8 @@ | |||
1 | # Provides the common settings for QorIQ ARM | 1 | # Provides the common settings for QorIQ ARM |
2 | 2 | ||
3 | KERNEL_IMAGETYPE ??= "uImage" | 3 | # default assignment to override defaults from kernel.bbclass |
4 | # should be assigned by machine if other type needed | ||
5 | KERNEL_IMAGETYPE ?= "uImage" | ||
4 | 6 | ||
5 | SERIAL_CONSOLES ?= "115200;ttyS0 115200;ttyS1 115200;ttyEHV0 115200;ttyLP0 115200;ttyAMA0" | 7 | SERIAL_CONSOLES ?= "115200;ttyS0 115200;ttyS1 115200;ttyEHV0 115200;ttyLP0 115200;ttyAMA0" |
6 | SERIAL_CONSOLES_CHECK ?= "${SERIAL_CONSOLES}" | 8 | SERIAL_CONSOLES_CHECK ?= "${SERIAL_CONSOLES}" |