summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMing Liu <ming.liu@toradex.com>2021-04-19 18:58:49 +0200
committerMing Liu <ming.liu@toradex.com>2021-04-19 18:58:49 +0200
commitb960cee9fba7f3f9a6603cd5464fcfa45df3bceb (patch)
tree354d172851444ac208a4815828101a759e47b63e
parent9e9859a9d3cb5a6daa2a8a7e0c98d5830021b644 (diff)
image_type_tezi.bbclass: fix a typo
A typo was introduced by commit 9e9859a9: [ image_type_tezi.bbclass: introduce TEZI_AUTO_INSTALL ] TEZI_USE_BOOTFILES should be TEZI_AUTO_INSTALL. Related-to: TEI-773 Signed-off-by: Ming Liu <ming.liu@toradex.com>
-rw-r--r--classes/image_type_tezi.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/image_type_tezi.bbclass b/classes/image_type_tezi.bbclass
index bc744a5..93911a8 100644
--- a/classes/image_type_tezi.bbclass
+++ b/classes/image_type_tezi.bbclass
@@ -275,7 +275,7 @@ def rootfs_tezi_json(d, flash_type, flash_data, json_file, uenv_file):
from datetime import datetime
deploydir = d.getVar('DEPLOY_DIR_IMAGE')
- data = OrderedDict({ "config_format": d.getVar('TEZI_CONFIG_FORMAT'), "autoinstall": oe.types.boolean(d.getVar('TEZI_USE_BOOTFILES')) })
+ data = OrderedDict({ "config_format": d.getVar('TEZI_CONFIG_FORMAT'), "autoinstall": oe.types.boolean(d.getVar('TEZI_AUTO_INSTALL')) })
# Use image recipes SUMMARY/DESCRIPTION...
data["name"] = d.getVar('SUMMARY')