mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-04-20 23:48:20 +00:00
* as oe-core did in: https://git.openembedded.org/openembedded-core/commit/?id=d4c346e8ab * when people are have to maintain own PRs for recipes in oe-core, they might add them for meta-oe recipes at the same time when upgrading to next LTS Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
21 lines
675 B
BlitzBasic
21 lines
675 B
BlitzBasic
SUMMARY = "Default display timings and resolutions for fbset"
|
|
HOMEPAGE = "http://users.telenet.be/geertu/Linux/fbdev/"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
|
|
PV = "0.1.0"
|
|
|
|
SRC_URI = "file://fb.modes"
|
|
S = "${WORKDIR}"
|
|
|
|
do_install() {
|
|
install -d ${D}${sysconfdir}
|
|
install -m 0644 ${WORKDIR}/fb.modes ${D}${sysconfdir}
|
|
}
|
|
|
|
# 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"
|