generic-poky/meta/packages/formfactor/formfactor_0.0.bb
Marcin Juszkiewicz 06a33a9f93 formfactor: added bootcdx86 support
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1908 311d38ba-8fff-0310-9ca6-ca027cbcb966
2007-06-11 09:33:35 +00:00

18 lines
454 B
BlitzBasic

DESCRIPTION = "Device formfactor information"
SECTION = "base"
PR = "r2"
SRC_URI = "file://config file://machconfig"
S = "${WORKDIR}"
PACKAGE_ARCH = "${MACHINE_ARCH}"
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
}