diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-01-27 11:26:33 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-03 14:53:50 +0000 |
commit | 44212390de5e21b865ca9a987161da0d557c77c4 (patch) | |
tree | f1640cd6cbcd54a7dd2dbfca8d40c9ef1f9bbeb3 /meta/classes/image.bbclass | |
parent | 3f739a86a9c15c7378cab86859142db16812195a (diff) | |
download | poky-44212390de5e21b865ca9a987161da0d557c77c4.tar.gz |
classes/image: drop unused default of MACHINE_POSTPROCESS_COMMAND
In the daisy (1.6) timeframe, when we rewrote the image construction in
Python, we neglected to reimplement the support for the little used and
undocumented variable MACHINE_POSTPROCESS_COMMAND, and apparently nobody
noticed. We have a better method for implementing machine-specific image
formats that is in wider use (i.e. add a custom class which implements
the new image type, add the class to IMAGE_CLASSES and the type to
IMAGE_FSTYPES), and we now also have wic. Thus it makes more sense to
just call this variable unsupported now and drop the sole remaining
reference to it.
(From OE-Core rev: 46fef857d6c4ac25d89b71b542b019d0ed068c19)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image.bbclass')
-rw-r--r-- | meta/classes/image.bbclass | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 677c81acaf..a8f3ceea7f 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass | |||
@@ -158,7 +158,6 @@ IMAGE_CLASSES += "image_types" | |||
158 | inherit ${IMAGE_CLASSES} | 158 | inherit ${IMAGE_CLASSES} |
159 | 159 | ||
160 | IMAGE_POSTPROCESS_COMMAND ?= "" | 160 | IMAGE_POSTPROCESS_COMMAND ?= "" |
161 | MACHINE_POSTPROCESS_COMMAND ?= "" | ||
162 | # Allow dropbear/openssh to accept logins from accounts with an empty password string if debug-tweaks is enabled | 161 | # Allow dropbear/openssh to accept logins from accounts with an empty password string if debug-tweaks is enabled |
163 | ROOTFS_POSTPROCESS_COMMAND += '${@bb.utils.contains("IMAGE_FEATURES", "debug-tweaks", "ssh_allow_empty_password; ", "",d)}' | 162 | ROOTFS_POSTPROCESS_COMMAND += '${@bb.utils.contains("IMAGE_FEATURES", "debug-tweaks", "ssh_allow_empty_password; ", "",d)}' |
164 | # Enable postinst logging if debug-tweaks is enabled | 163 | # Enable postinst logging if debug-tweaks is enabled |