mirror of
https://git.yoctoproject.org/poky
synced 2026-04-30 03:32:12 +02:00
rootfs_rpm.bbclass: use more efficient way to copy packages
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5386 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
@@ -37,6 +37,8 @@ basearch=arm
|
||||
EOF
|
||||
|
||||
#priority=1
|
||||
mkdir -p ${IMAGE_ROOTFS}${DEPLOY_DIR_RPM}
|
||||
|
||||
for arch in ${PACKAGE_ARCHS}; do
|
||||
if [ ! -d ${DEPLOY_DIR_RPM}/$arch ]; then
|
||||
continue;
|
||||
@@ -49,13 +51,13 @@ EOF
|
||||
echo "gpgcheck=0" >> ${YUMCONF}
|
||||
echo "" >> ${YUMCONF}
|
||||
#priority=$(expr $priority + 5)
|
||||
|
||||
# Copy the packages into the target image
|
||||
# Ugly ugly ugly but rpm is braindead and can't see outside the chroot
|
||||
# when installing :(
|
||||
cp -r ${DEPLOY_DIR_RPM}/$arch ${IMAGE_ROOTFS}${DEPLOY_DIR_RPM}/
|
||||
done
|
||||
|
||||
# Copy the packages into the target image
|
||||
# Ugly ugly ugly but rpm is braindead and can't see outside the chroot
|
||||
# when installing :(
|
||||
mkdir -p ${IMAGE_ROOTFS}${DEPLOY_DIR_RPM}
|
||||
cp -r ${DEPLOY_DIR_RPM}/* ${IMAGE_ROOTFS}${DEPLOY_DIR_RPM}/
|
||||
|
||||
#mkdir -p ${IMAGE_ROOTFS}/var/lib/rpm
|
||||
#rpm --root ${IMAGE_ROOTFS} --initdb
|
||||
|
||||
Reference in New Issue
Block a user