hw26/hw21: Fix order of machine overrides
For most of the overrides the order is not important since all overrides are used. But when using a file specific to a machine, only one override is used and in this case the order is important: the last override matching is used. So we must keep more specific overrides at the end. id:366284
This commit is contained in:
parent
5d00c9807b
commit
6dc6ddc79c
|
|
@ -4,6 +4,6 @@
|
|||
# the new VCU pro was based on the changes done on NG800
|
||||
|
||||
require am335x-hw26.conf
|
||||
MACHINEOVERRIDES .= ":am335x-hw26"
|
||||
MACHINEOVERRIDES =. "am335x-hw26:"
|
||||
|
||||
USER_MODULE_MACHINE_FEATURE = "user-module"
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
#require conf/machine/include/ti33x.inc
|
||||
require am335x-nmhw21.conf
|
||||
KERNEL_DEVICETREE_TO_USE = "${HW26_DT}"
|
||||
MACHINEOVERRIDES .= ":am335x-nmhw21"
|
||||
MACHINEOVERRIDES =. "am335x-nmhw21:"
|
||||
|
||||
MACHINE_FEATURES += "pps"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue