1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 17:19:20 +00:00

rootfs_ipk.bbclass: switched to opkg

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4026 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Marcin Juszkiewicz
2008-03-17 13:18:21 +00:00
parent 15f1fd7c4a
commit 346dec3686
+12 -12
View File
@@ -5,7 +5,7 @@
# See image.bbclass for a usage of this. # See image.bbclass for a usage of this.
# #
do_rootfs[depends] += "ipkg-native:do_populate_staging ipkg-utils-native:do_populate_staging" do_rootfs[depends] += "opkg-native:do_populate_staging ipkg-utils-native:do_populate_staging"
do_rootfs[recrdeptask] += "do_package_write_ipk" do_rootfs[recrdeptask] += "do_package_write_ipk"
IPKG_ARGS = "-f ${IPKGCONF_TARGET} -o ${IMAGE_ROOTFS}" IPKG_ARGS = "-f ${IPKGCONF_TARGET} -o ${IMAGE_ROOTFS}"
@@ -18,35 +18,35 @@ fakeroot rootfs_ipk_do_rootfs () {
mkdir -p ${T} mkdir -p ${T}
ipkg-cl ${IPKG_ARGS} update opkg-cl ${IPKG_ARGS} update
# Uclibc builds don't provide this stuff... # Uclibc builds don't provide this stuff...
if [ x${TARGET_OS} = "xlinux" ] || [ x${TARGET_OS} = "xlinux-gnueabi" ] ; then if [ x${TARGET_OS} = "xlinux" ] || [ x${TARGET_OS} = "xlinux-gnueabi" ] ; then
if [ ! -z "${LINGUAS_INSTALL}" ]; then if [ ! -z "${LINGUAS_INSTALL}" ]; then
ipkg-cl ${IPKG_ARGS} install glibc-localedata-i18n opkg-cl ${IPKG_ARGS} install glibc-localedata-i18n
for i in ${LINGUAS_INSTALL}; do for i in ${LINGUAS_INSTALL}; do
ipkg-cl ${IPKG_ARGS} install $i opkg-cl ${IPKG_ARGS} install $i
done done
fi fi
fi fi
if [ ! -z "${PACKAGE_INSTALL}" ]; then if [ ! -z "${PACKAGE_INSTALL}" ]; then
ipkg-cl ${IPKG_ARGS} install ${PACKAGE_INSTALL} opkg-cl ${IPKG_ARGS} install ${PACKAGE_INSTALL}
fi fi
export D=${IMAGE_ROOTFS} export D=${IMAGE_ROOTFS}
export OFFLINE_ROOT=${IMAGE_ROOTFS} export OFFLINE_ROOT=${IMAGE_ROOTFS}
export IPKG_OFFLINE_ROOT=${IMAGE_ROOTFS} export IPKG_OFFLINE_ROOT=${IMAGE_ROOTFS}
mkdir -p ${IMAGE_ROOTFS}/etc/ipkg/ mkdir -p ${IMAGE_ROOTFS}/etc/opkg/
grep "^arch" ${IPKGCONF_TARGET} >${IMAGE_ROOTFS}/etc/ipkg/arch.conf grep "^arch" ${IPKGCONF_TARGET} >${IMAGE_ROOTFS}/etc/opkg/arch.conf
for i in ${IMAGE_ROOTFS}${libdir}/ipkg/info/*.preinst; do for i in ${IMAGE_ROOTFS}${libdir}/opkg/info/*.preinst; do
if [ -f $i ] && ! sh $i; then if [ -f $i ] && ! sh $i; then
ipkg-cl ${IPKG_ARGS} flag unpacked `basename $i .preinst` opkg-cl ${IPKG_ARGS} flag unpacked `basename $i .preinst`
fi fi
done done
for i in ${IMAGE_ROOTFS}${libdir}/ipkg/info/*.postinst; do for i in ${IMAGE_ROOTFS}${libdir}/opkg/info/*.postinst; do
if [ -f $i ] && ! sh $i configure; then if [ -f $i ] && ! sh $i configure; then
ipkg-cl ${IPKG_ARGS} flag unpacked `basename $i .postinst` opkg-cl ${IPKG_ARGS} flag unpacked `basename $i .postinst`
fi fi
done done
@@ -79,5 +79,5 @@ rootfs_ipk_log_check() {
} }
remove_packaging_data_files() { remove_packaging_data_files() {
rm -rf ${IMAGE_ROOTFS}/usr/lib/ipkg/ rm -rf ${IMAGE_ROOTFS}/usr/lib/opkg/
} }