summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--classes/image_type_tezi.bbclass8
1 files changed, 7 insertions, 1 deletions
diff --git a/classes/image_type_tezi.bbclass b/classes/image_type_tezi.bbclass
index c91ea7d..95fe03c 100644
--- a/classes/image_type_tezi.bbclass
+++ b/classes/image_type_tezi.bbclass
@@ -164,6 +164,7 @@ def rootfs_tezi_emmc(d, distro=False):
}),
OrderedDict({
"name": "mmcblk0boot0",
+ "erase": True,
"content": {
"filesystem_type": "raw",
"rawfiles": bootpart_rawfiles
@@ -194,6 +195,11 @@ def rootfs_tezi_rawnand(d, distro=False):
}
}
})
+ env = OrderedDict({
+ "name": "u-boot-env",
+ "erase": True,
+ "content": {}
+ })
rootfs = {
"name": "rootfs",
@@ -256,7 +262,7 @@ def rootfs_tezi_rawnand(d, distro=False):
"ubivolumes": ubivolumes
})
- return [uboot1, uboot2, ubi]
+ return [uboot1, uboot2, env, ubi]
def rootfs_tezi_json(d, flash_type, flash_data, json_file, uenv_file):
import json