Add moblin-feed-config-opkg (loosely based on angstrom recipes)

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Richard Purdie 2009-07-15 12:54:57 +01:00
parent 1893aa639f
commit 6e58ebdc1a
1 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,46 @@
DESCRIPTION = "Moblin feed configuration files (Online package repositories)"
PR = "r0"
PACKAGE_ARCH = "${MACHINE_ARCH}"
FEEDNAMEPREFIX ?= "INVALID"
FEEDURIPREFIX ?= "INVALID"
do_compile() {
mkdir -p ${S}/${sysconfdir}/opkg/
archconf=${S}/${sysconfdir}/opkg/arch.conf
rm -f $archconf
ipkgarchs="${PACKAGE_ARCHS}"
priority=1
for arch in $ipkgarchs; do
echo "arch $arch $priority" >> $archconf
priority=$(expr $priority + 5)
done
basefeedconf=${S}/${sysconfdir}/opkg/base-feeds.conf
rm -f $basefeedconf
for arch in $ipkgarchs; do
echo "src/gz ${FEEDNAMEPREFIX}-$arch http://pokylinux.org/${FEEDURIPREFIX}$arch" >> $basefeedconf
done
}
do_install () {
install -d ${D}${sysconfdir}/opkg
install -m 0644 ${S}/${sysconfdir}/opkg/* ${D}${sysconfdir}/opkg/
}
do_stage () {
install -d ${STAGING_DIR}${sysconfdir}/opkg
install -m 0644 ${S}/${sysconfdir}/opkg/* ${STAGING_DIR}${sysconfdir}/opkg/
}
FILES_${PN} = "${sysconfdir}/opkg/ "
CONFFILES_${PN} += "${sysconfdir}/opkg/base-feeds.conf \
${sysconfdir}/opkg/arch.conf"