@@ -12,4 +12,9 @@ IMAGE_CMD:ubi_ubifs() {
# we need to produce output (with extension .ubi-ubifs),
# so just create a symlink
ln -sf ${IMAGE_FULLNAME}.ubi ${DEPLOY_DIR_IMAGE}/${IMAGE_FULLNAME}.ubi-ubifs
+
+ bbwarn "ubi-ubifs-img image type is deprecated, please use built-in image"\
+ "classes instead:\n"\
+ "IMAGE_TYPEDEP:ubi += \"ubifs fit\"\n"\
+ "IMAGE_FSTYPES ?= \"ubi ubifs\""
}
@@ -350,3 +350,9 @@ def deb_list_beautify(d, varname):
if stripped:
var_list.append(stripped)
return ', '.join(var_list)
+
+# Deprecation checking
+python do_unpack:prepend:imx6-sabrelite() {
+ if d.getVar('MACHINE') == 'imx6-sabrelite':
+ bb.warn("Target imx6-sabrelite is deprecated and will be removed soon")
+}
SABRE Lite i.MX6 Development Board was originally added to demonstrate UBI/UBIFS support, which is currently covered by phyBOARD-Mira target. Also mark custom ubi-ubifs-img.bbclass as deprecated because it was only a compatibility hack for imx6-sabrelite. Signed-off-by: Anton Mikanovich <amikan@ilbers.de> --- meta-isar/classes/ubi-ubifs-img.bbclass | 5 +++++ meta/classes/base.bbclass | 6 ++++++ 2 files changed, 11 insertions(+)