mirror of
https://git.yoctoproject.org/poky
synced 2026-09-19 09:49:33 +02:00
Add moblin-feed-config-opkg (loosely based on angstrom recipes)
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
@@ -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"
|
||||||
|
|
||||||
Reference in New Issue
Block a user