This email list is read-only. Emails sent to this list will be discarded
----------------------------------
meta/classes/image.bbclass | 7 +++++++
meta/classes/rootfs_ipk.bbclass | 14 ++++++++++++++
2 files changed, 21 insertions(+), 0 deletions(-)
New commits:
commit 13ee3030f337631f738379c9347279b6f42fda99
Author: Richard Purdie <[EMAIL PROTECTED]>
Date: Mon Nov 10 21:47:49 2008 +0000
image.bbclass: Fix typo
commit 793dc948e6d564ae65c71ab93999d928187eb2bc
Author: Richard Purdie <[EMAIL PROTECTED]>
Date: Mon Nov 10 21:39:34 2008 +0000
image.bbclass: Add function to write out an image manifest
Diff in this email is a maximum of 400 lines.
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index 3678459..e3bb748 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -199,6 +199,13 @@ make_zimage_symlink_relative () {
fi
}
+write_image_manifest () {
+ rootfs_${IMAGE_PKGTYPE}_write_manifest
+
+ rm -f ${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.manifest
+ ln -s ${IMAGE_NAME}.rootfs.manifest
${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.manifest
+}
+
# Make login manager(s) enable automatic login.
# Useful for devices where we do not want to log in at all (e.g. phones)
set_image_autologin () {
diff --git a/meta/classes/rootfs_ipk.bbclass b/meta/classes/rootfs_ipk.bbclass
index 07f418a..66d3712 100644
--- a/meta/classes/rootfs_ipk.bbclass
+++ b/meta/classes/rootfs_ipk.bbclass
@@ -98,6 +98,20 @@ rootfs_ipk_log_check() {
true
}
+rootfs_ipk_write_manifest() {
+ manifest=${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.manifest
+ cp ${IMAGE_ROOTFS}/usr/lib/opkg/status $manifest
+
+ sed '/Depends/d' -i $manifest
+ sed '/Status/d' -i $manifest
+ sed '/Architecture/d' -i $manifest
+ sed '/Installed-Time/d' -i $manifest
+ sed '/Auto-Installed/d' -i $manifest
+ sed '/Recommends/d' -i $manifest
+ sed '/Provides/d' -i $manifest
+ sed '/Conflicts/d' -i $manifest
+}
+
remove_packaging_data_files() {
rm -rf ${IMAGE_ROOTFS}/usr/lib/opkg/
}
_______________________________________________
Commits mailing list
[email protected]
https://lists.moblin.org/mailman/listinfo/commits