mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
f3b78b8f1e
* bitbake-diffsigs output:
basehash changed from 2f6aa4302713441e9c3c7207c4edea33 to 3486f2b65998ee4ec5bd5fbbe02cadb0
List of dependencies for variable TARGET_LD_ARCH changed from 'set([])' to 'set(['TUNE_LDARGS'])'
List of dependencies for variable TARGET_AS_ARCH changed from 'set([])' to 'set(['TUNE_ASARGS'])'
List of dependencies for variable TARGET_OS changed from 'set([])' to 'set(['ABIEXTENSION', 'LIBCEXTENSION'])'
List of dependencies for variable TARGET_CC_ARCH changed from 'set([])' to 'set(['TUNE_CCARGS'])'
List of dependencies for variable TARGET_ARCH changed from 'set([])' to 'set(['TUNE_ARCH'])'
Dependency on Variable ABIEXTENSION was removed
Dependency on Variable TUNE_CCARGS was removed
Dependency on Variable TUNE_FEATURES_tune-armv5t was removed
Dependency on Variable TUNE_FEATURES_tune-armv5te was removed
Dependency on Variable TUNE_ARCH was removed
Dependency on Variable LIBCEXTENSION was removed
Dependency on Variable TUNE_FEATURES_tune-armv5 was removed
Dependency on Variable TUNE_LDARGS was removed
Dependency on Variable DEFAULTTUNE was removed
Dependency on Variable TUNE_ASARGS was removed
Dependency on Variable TUNE_FEATURES was removed
Variable TARGET_LD_ARCH value changed from 'none' to '${TUNE_LDARGS}'
Variable TARGET_AS_ARCH value changed from 'none' to '${TUNE_ASARGS}'
Variable TARGET_OS value changed from 'linux' to 'linux${LIBCEXTENSION}${ABIEXTENSION}'
Variable TARGET_CC_ARCH value changed from 'none' to '${TUNE_CCARGS}'
Variable TARGET_ARCH value changed from 'allarch' to '${TUNE_ARCH}'
Hash for dependent task fbset-modes.bb.do_patch changed from eb8e475b55d64d5c9f6427a90e080ba6 to ee7e89fdd852378ee18ac23cdd92f3d3
22 lines
632 B
BlitzBasic
22 lines
632 B
BlitzBasic
DESCRIPTION = "Default display timings and resolutions for fbset"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
|
|
PV = "0.1.0"
|
|
PR = "r6"
|
|
|
|
SRC_URI = "file://fb.modes"
|
|
|
|
do_install() {
|
|
install -d ${D}${sysconfdir}
|
|
install -m 0644 ${WORKDIR}/fb.modes ${D}${sysconfdir}
|
|
}
|
|
|
|
inherit allarch
|
|
|
|
# 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"
|