From e2e6f6fe07049f33cb6348780fa975162752e421 Mon Sep 17 00:00:00 2001 From: Adrian Dudau Date: Thu, 12 Dec 2013 13:38:32 +0100 Subject: initial commit of Enea Linux 3.1 Migrated from the internal git server on the dora-enea branch Signed-off-by: Adrian Dudau --- .../feed-config/poky-feed-config-opkg_1.0.bb | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 meta/recipes-core/feed-config/poky-feed-config-opkg_1.0.bb (limited to 'meta/recipes-core/feed-config/poky-feed-config-opkg_1.0.bb') diff --git a/meta/recipes-core/feed-config/poky-feed-config-opkg_1.0.bb b/meta/recipes-core/feed-config/poky-feed-config-opkg_1.0.bb new file mode 100644 index 0000000000..14f1d4194a --- /dev/null +++ b/meta/recipes-core/feed-config/poky-feed-config-opkg_1.0.bb @@ -0,0 +1,44 @@ +DESCRIPTION = "Poky example feed configuration" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" +PR = "r2" +PACKAGE_ARCH = "${MACHINE_ARCH}" +INHIBIT_DEFAULT_DEPS = "1" + +#FEEDNAMEPREFIX ?= "INVALID" +#FEEDURIPREFIX ?= "INVALID" + +do_compile() { + mkdir -p ${S}/${sysconfdir}/opkg/ + + archconf=${S}/${sysconfdir}/opkg/arch.conf + + rm -f $archconf + ipkgarchs="${ALL_MULTILIB_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 + touch $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/ +} + +FILES_${PN} = "${sysconfdir}/opkg/ " + +CONFFILES_${PN} += "${sysconfdir}/opkg/base-feeds.conf \ + ${sysconfdir}/opkg/arch.conf" + -- cgit v1.2.3-54-g00ecf