diff options
Diffstat (limited to 'meta-oe/recipes-support/fbset/fbset-modes.bb')
-rw-r--r-- | meta-oe/recipes-support/fbset/fbset-modes.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/fbset/fbset-modes.bb b/meta-oe/recipes-support/fbset/fbset-modes.bb index 03d403950..e3b26ec45 100644 --- a/meta-oe/recipes-support/fbset/fbset-modes.bb +++ b/meta-oe/recipes-support/fbset/fbset-modes.bb @@ -13,5 +13,9 @@ do_install() { } inherit allarch -CONFFILES_${PN} = "${sysconfdir}/fb.modes" +# fb.modes file is MACHINE_ARCH, base.bbclass correctly changes it to MACHINE_ARCH, but too late for allarch.bbclass +# to disable "all" behavior (found when comparing qemuarm and qemux86 signatures) +PACKAGE_ARCH = "${MACHINE_ARCH}" + +CONFFILES_${PN} = "${sysconfdir}/fb.modes" |