aboutsummaryrefslogtreecommitdiffstats
path: root/classes/rootfs_ipk.bbclass
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2008-10-17 20:51:49 +0100
committerPhil Blundell <philb@gnu.org>2008-10-17 20:51:49 +0100
commite0eabc7eb8293f6abe51b50eeae26b542efb147f (patch)
tree5801af00be21a11e0137a1e48b5ff648a80dc9ea /classes/rootfs_ipk.bbclass
parent59aa6dc63cd5ccf34f25f849a6de31ae786b1b8e (diff)
downloadopenembedded-e0eabc7eb8293f6abe51b50eeae26b542efb147f.tar.gz
rootfs_ipk: add support for BAD_RECOMMENDATIONS and
ONLINE_PACKAGE_MANAGEMENT configuration settings
Diffstat (limited to 'classes/rootfs_ipk.bbclass')
-rw-r--r--classes/rootfs_ipk.bbclass44
1 files changed, 38 insertions, 6 deletions
diff --git a/classes/rootfs_ipk.bbclass b/classes/rootfs_ipk.bbclass
index 889ace2e99..d69be35b40 100644
--- a/classes/rootfs_ipk.bbclass
+++ b/classes/rootfs_ipk.bbclass
@@ -10,9 +10,19 @@ do_rootfs[recrdeptask] += "do_package_write_ipk"
IPKG_ARGS = "-f ${IPKGCONF_TARGET} -o ${IMAGE_ROOTFS} ${@base_conditional("PACKAGE_INSTALL_NO_DEPS", "1", "-nodeps", "", d)}"
-DISTRO_EXTRA_RDEPENDS += " opkg opkg-collateral "
PACKAGE_INSTALL_NO_DEPS ?= "0"
+# What support to provide for online management of packages at run time?
+# full -> traditional system, opkg is installed with all metadata
+# add -> opkg is installed with basic conf files but no status database; can add new packages at runtime but not modify existing ones
+# none -> opkg not installed at all, no metadata or config files provided
+ONLINE_PACKAGE_MANAGEMENT ?= "full"
+
+# Which packages to not install on the basis of a recommendation
+BAD_RECOMMENDATIONS ?= ""
+
+DISTRO_EXTRA_RDEPENDS += "${@base_conditional("ONLINE_PACKAGE_MANAGEMENT", "none", "", "opkg opkg-collateral", d)}"
+
fakeroot rootfs_ipk_do_rootfs () {
set -x
@@ -21,6 +31,16 @@ fakeroot rootfs_ipk_do_rootfs () {
mkdir -p ${T}
mkdir -p ${IMAGE_ROOTFS}${libdir}/opkg/
+
+ STATUS=${IMAGE_ROOTFS}${libdir}/opkg/status
+ # prime the status file with bits that we don't want
+ for i in ${BAD_RECOMMENDATIONS}; do
+ echo "Package: $i" >> $STATUS
+ echo "Architecture: ${TARGET_ARCH}" >> $STATUS
+ echo "Status: deinstall ok not-installed" >> $STATUS
+ echo >> $STATUS
+ done
+
opkg-cl ${IPKG_ARGS} update
# Uclibc builds don't provide this stuff...
@@ -42,7 +62,10 @@ fakeroot rootfs_ipk_do_rootfs () {
export OPKG_OFFLINE_ROOT=${IPKG_OFFLINE_ROOT}
mkdir -p ${IMAGE_ROOTFS}${sysconfdir}/opkg/
- grep "^arch" ${IPKGCONF_TARGET} >${IMAGE_ROOTFS}${sysconfdir}/opkg/arch.conf
+
+ if [ "${ONLINE_PACKAGE_MANAGEMENT}" != "none" ]; then
+ grep "^arch" ${IPKGCONF_TARGET} >${IMAGE_ROOTFS}${sysconfdir}/opkg/arch.conf
+ fi
for i in ${IMAGE_ROOTFS}${libdir}/opkg/info/*.preinst; do
if [ -f $i ] && ! sh $i; then
@@ -58,11 +81,20 @@ fakeroot rootfs_ipk_do_rootfs () {
install -d ${IMAGE_ROOTFS}/${sysconfdir}
echo ${BUILDNAME} > ${IMAGE_ROOTFS}/${sysconfdir}/version
- rm -f ${IMAGE_ROOTFS}${libdir}/opkg/lists/*
+ if [ "${ONLINE_PACKAGE_MANAGEMENT}" != "none" ]; then
+ if [ "${ONLINE_PACKAGE_MANAGEMENT}" == "add" ]; then
+ rm -f ${IMAGE_ROOTFS}${libdir}/opkg/status
+ rm -f ${IMAGE_ROOTFS}${libdir}/opkg/*/*
+ else
+ rm -f ${IMAGE_ROOTFS}${libdir}/opkg/lists/*
+ fi
- # Keep these lines until package manager selection is implemented
- ln -s opkg ${IMAGE_ROOTFS}${sysconfdir}/ipkg
- ln -s opkg ${IMAGE_ROOTFS}${libdir}/ipkg
+ # Keep these lines until package manager selection is implemented
+ ln -s opkg ${IMAGE_ROOTFS}${sysconfdir}/ipkg
+ ln -s opkg ${IMAGE_ROOTFS}${libdir}/ipkg
+ else
+ rm -rf ${IMAGE_ROOTFS}${libdir}/opkg
+ fi
${ROOTFS_POSTPROCESS_COMMAND}