diff options
author | Chris Larson <clarson@kergoth.com> | 2004-09-18 06:08:29 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-09-18 06:08:29 +0000 |
commit | beaa7c6e54b18ec0c5a8f17a729b9675c9a65cb6 (patch) | |
tree | 2c24127f4e4aebf9301b35d02bc728abf20578ba /classes/rootfs_ipk.oeclass | |
parent | 5a9545e6268740bb50937a724df7bbe6902aa779 (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/rootfs_ipk.oeclass')
-rw-r--r-- | classes/rootfs_ipk.oeclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/rootfs_ipk.oeclass b/classes/rootfs_ipk.oeclass index e67f9fdd71..96f060449b 100644 --- a/classes/rootfs_ipk.oeclass +++ b/classes/rootfs_ipk.oeclass @@ -15,7 +15,7 @@ do_rootfs[dirs] = ${TOPDIR} IPKG_ARGS = "-f ${T}/ipkg.conf -o ${IMAGE_ROOTFS}" -IMAGE_POSTPROCESS_COMMAND ?= "" +ROOTFS_POSTPROCESS_COMMAND ?= "" # some default locales IMAGE_LINGUAS ?= "de-de fr-fr en-gb" @@ -71,7 +71,7 @@ EOF install -d ${IMAGE_ROOTFS}/${sysconfdir} echo ${BUILDNAME} > ${IMAGE_ROOTFS}/${sysconfdir}/version - ${IMAGE_POSTPROCESS_COMMAND} + ${ROOTFS_POSTPROCESS_COMMAND} } fakeroot do_rootfs () { |