mirror of
git://git.yoctoproject.org/poky
synced 2026-08-14 05:31:06 +00:00
If fbset can't find a framebuffer we end up with a mess on the console. We might as well avoid doing this on machines without a framebuffer. (From OE-Core rev: f5c39ea822b440ae4bdd38be94fcf8a2814d2229) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
22 lines
678 B
BlitzBasic
22 lines
678 B
BlitzBasic
DESCRIPTION = "Device formfactor information"
|
|
SECTION = "base"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
|
|
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
PR = "r21"
|
|
|
|
SRC_URI = "file://config file://machconfig"
|
|
S = "${WORKDIR}"
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
|
|
do_install() {
|
|
# Only install file if it has a contents
|
|
install -d ${D}${sysconfdir}/formfactor/
|
|
install -m 0644 ${S}/config ${D}${sysconfdir}/formfactor/
|
|
if [ -s "${S}/machconfig" ]; then
|
|
install -m 0644 ${S}/machconfig ${D}${sysconfdir}/formfactor/
|
|
fi
|
|
}
|