summaryrefslogtreecommitdiff
path: root/classes/image_type_tezi.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'classes/image_type_tezi.bbclass')
-rw-r--r--classes/image_type_tezi.bbclass3
1 files changed, 2 insertions, 1 deletions
diff --git a/classes/image_type_tezi.bbclass b/classes/image_type_tezi.bbclass
index ebcc380..9c85bd5 100644
--- a/classes/image_type_tezi.bbclass
+++ b/classes/image_type_tezi.bbclass
@@ -162,13 +162,14 @@ python rootfs_tezi_json() {
deploydir = d.getVar('DEPLOY_DIR_IMAGE', True)
release_date = datetime.strptime(d.getVar('DATE', True), '%Y%m%d').date().isoformat()
- data = OrderedDict({ "config_format": 1, "autoinstall": False })
+ data = OrderedDict({ "config_format": 2, "autoinstall": False })
# Use image recipes SUMMARY/DESCRIPTION/PV...
data["name"] = d.getVar('SUMMARY', True)
data["description"] = d.getVar('DESCRIPTION', True)
data["version"] = d.getVar('PV', True)
data["release_date"] = release_date
+ data["u_boot_env"] = d.getVar('UBOOT_ENV_TEZI', True)
if os.path.exists(os.path.join(deploydir, "prepare.sh")):
data["prepare_script"] = "prepare.sh"
if os.path.exists(os.path.join(deploydir, "wrapup.sh")):