summaryrefslogtreecommitdiff
path: root/classes/image_ipk.oeclass
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-09-18 06:08:29 +0000
committerChris Larson <clarson@kergoth.com>2004-09-18 06:08:29 +0000
commitbeaa7c6e54b18ec0c5a8f17a729b9675c9a65cb6 (patch)
tree2c24127f4e4aebf9301b35d02bc728abf20578ba /classes/image_ipk.oeclass
parent5a9545e6268740bb50937a724df7bbe6902aa779 (diff)
* Move IMAGE_POSTPROCESS_COMMAND to truly be what its name implies -- it now
occurs after oeimage is called. * Add ROOTFS_POSTPROCESS_COMMAND, which occurs after rootfs population but before oeimage. * Pass -n option to oeimage, this ensures that the IMAGE_NAME variable used in our metadata expansion in oemake is the same as that used by oeimage (it parses its own metadata, and would become desynced if IMAGE_NAME contained ${DATETIME} or similar). Note that this is a new option; ensure that your 'oe' trees are up to date. BKrev: 414bd0ddJb2EgJAkAD_JloxA0CdB1w
Diffstat (limited to 'classes/image_ipk.oeclass')
-rw-r--r--classes/image_ipk.oeclass5
1 files changed, 4 insertions, 1 deletions
diff --git a/classes/image_ipk.oeclass b/classes/image_ipk.oeclass
index a377ecf02c..6d6a2b22e2 100644
--- a/classes/image_ipk.oeclass
+++ b/classes/image_ipk.oeclass
@@ -16,6 +16,7 @@ def get_image_deps(d):
DEPENDS += "${@get_image_deps(d)}"
IMAGE_DEVICE_TABLE = "${@oe.which(oe.data.getVar('OEPATH', d, 1), 'files/device_table-minimal.txt')}"
+IMAGE_POSTPROCESS_COMMAND ?= ""
# Must call real_do_rootfs() from inside here, rather than as a separate
# task, so that we have a single fakeroot context for the whole process.
@@ -36,7 +37,9 @@ fakeroot do_rootfs () {
if test -z "$FAKEROOTKEY"; then
fakeroot -i ${TMPDIR}/fakedb.image oeimage -t $type -e ${FILE}
else
- oeimage -t $type -e ${FILE}
+ oeimage -n "${IMAGE_NAME}" -t "$type" -e "${FILE}"
fi
done
+
+ ${IMAGE_POSTPROCESS_COMMAND}
}