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:
Alexandre Bard 2023-02-13 13:33:39 +01:00
parent 5d00c9807b
commit 6dc6ddc79c
2 changed files with 2 additions and 2 deletions

View File

@ -4,6 +4,6 @@
# the new VCU pro was based on the changes done on NG800 # the new VCU pro was based on the changes done on NG800
require am335x-hw26.conf require am335x-hw26.conf
MACHINEOVERRIDES .= ":am335x-hw26" MACHINEOVERRIDES =. "am335x-hw26:"
USER_MODULE_MACHINE_FEATURE = "user-module" USER_MODULE_MACHINE_FEATURE = "user-module"

View File

@ -5,7 +5,7 @@
#require conf/machine/include/ti33x.inc #require conf/machine/include/ti33x.inc
require am335x-nmhw21.conf require am335x-nmhw21.conf
KERNEL_DEVICETREE_TO_USE = "${HW26_DT}" KERNEL_DEVICETREE_TO_USE = "${HW26_DT}"
MACHINEOVERRIDES .= ":am335x-nmhw21" MACHINEOVERRIDES =. "am335x-nmhw21:"
MACHINE_FEATURES += "pps" MACHINE_FEATURES += "pps"