diff options
-rw-r--r-- | meta/classes/utils.bbclass | 2 | ||||
-rw-r--r-- | meta/conf/bitbake.conf | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass index c1de2f6930..be0a25a2b9 100644 --- a/meta/classes/utils.bbclass +++ b/meta/classes/utils.bbclass | |||
@@ -308,7 +308,7 @@ def base_set_filespath(path, d): | |||
308 | if extrapaths != "": | 308 | if extrapaths != "": |
309 | path = extrapaths.split(":") + path | 309 | path = extrapaths.split(":") + path |
310 | # The ":" ensures we have an 'empty' override | 310 | # The ":" ensures we have an 'empty' override |
311 | overrides = ((d.getVar("OVERRIDES", True) or "") + ":").split(":") | 311 | overrides = ((d.getVar("FILESOVERRIDES", True) or "") + ":").split(":") |
312 | for p in path: | 312 | for p in path: |
313 | if p != "": | 313 | if p != "": |
314 | for o in overrides: | 314 | for o in overrides: |
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 420bdfa31a..be3bfc2092 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -671,6 +671,8 @@ DISTROOVERRIDES ?= "${@d.getVar('DISTRO', True) or ''}" | |||
671 | MACHINEOVERRIDES ?= "${MACHINE}" | 671 | MACHINEOVERRIDES ?= "${MACHINE}" |
672 | MACHINEOVERRIDES[vardepsexclude] = "MACHINE" | 672 | MACHINEOVERRIDES[vardepsexclude] = "MACHINE" |
673 | 673 | ||
674 | FILESOVERRIDES = "${TRANSLATED_TARGET_ARCH}:${MACHINEOVERRIDES}:${DISTROOVERRIDES}" | ||
675 | |||
674 | CPU_FEATURES ?= "" | 676 | CPU_FEATURES ?= "" |
675 | CPU_FEATURES_arm ?= "vfp" | 677 | CPU_FEATURES_arm ?= "vfp" |
676 | 678 | ||