1SUMMARY = "Default display timings and resolutions for fbset" 2HOMEPAGE = "http://users.telenet.be/geertu/Linux/fbdev/" 3LICENSE = "MIT" 4LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" 5 6PV = "0.1.0" 7PR = "r6" 8 9SRC_URI = "file://fb.modes" 10S = "${WORKDIR}" 11 12do_install() { 13 install -d ${D}${sysconfdir} 14 install -m 0644 ${WORKDIR}/fb.modes ${D}${sysconfdir} 15} 16 17# fb.modes file is MACHINE_ARCH, base.bbclass correctly changes it to MACHINE_ARCH, but too late for allarch.bbclass 18# to disable "all" behavior (found when comparing qemuarm and qemux86 signatures) 19PACKAGE_ARCH = "${MACHINE_ARCH}" 20 21CONFFILES:${PN} = "${sysconfdir}/fb.modes" 22