]> code.ossystems Code Review - openembedded-core.git/commitdiff
poky-feed-config-opkg: Remove
authorPaul Barker <paul@paulbarker.me.uk>
Fri, 19 Dec 2014 18:01:03 +0000 (18:01 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 3 Feb 2015 14:53:44 +0000 (14:53 +0000)
This recipe was not usable as-is. A much better way of configuring package feeds
for opkg is provided by the distro-feed-config recipe in meta-oe.

Signed-off-by: Paul Barker <paul@paulbarker.me.uk>
meta/recipes-core/feed-config/poky-feed-config-opkg_1.0.bb [deleted file]

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
deleted file mode 100644 (file)
index fb312f8..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-SUMMARY = "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"
-