mirror of
git://git.yoctoproject.org/poky
synced 2026-08-15 07:35:28 +00:00
(From OE-Core rev: ec4fdfcc7bcbc9bb92e2f33b37cc8c99bf1b6822) Signed-off-by: Maxime Roussin-Bélanger <maxime.roussinbelanger@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
24 lines
811 B
BlitzBasic
24 lines
811 B
BlitzBasic
SUMMARY = "Device formfactor information"
|
|
DESCRIPTION = "A formfactor configuration file provides information about the \
|
|
target hardware for which the image is being built and information that the \
|
|
build system cannot obtain from other sources such as the kernel."
|
|
SECTION = "base"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
PR = "r45"
|
|
|
|
SRC_URI = "file://config file://machconfig"
|
|
S = "${WORKDIR}"
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
|
|
do_install() {
|
|
# Install file only if it has 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
|
|
}
|