summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuka Pivk <luka.pivk@toradex.com>2020-03-02 17:17:41 +0100
committerMax Krummenacher <max.krummenacher@toradex.com>2020-03-18 20:26:12 +0100
commit48416df0a09fd213e301332831df3e15b23430ac (patch)
tree63524d018765aa1122dfb535c9478529542bb252
parentb1b000a591963ed7103be0cbe468a1b0c5549f9f (diff)
image: make sure u-boot enviroment is erased
Make sure u-boot enviroment is erased when installing new Toradex Easy Installer image Related-to: TEI-130 Signed-off-by: Luka Pivk <luka.pivk@toradex.com> (cherry picked from commit 25711572bcb5a40057b53323b8b34a28f74d9b0f)
-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 0ef1427..8c03ae1 100644
--- a/classes/image_type_tezi.bbclass
+++ b/classes/image_type_tezi.bbclass
@@ -163,6 +163,7 @@ def rootfs_tezi_emmc(d, distro=False):
}),
OrderedDict({
"name": "mmcblk0boot0",
+ "erase": True,
"content": {
"filesystem_type": "raw",
"rawfiles": bootpart_rawfiles
@@ -193,6 +194,11 @@ def rootfs_tezi_rawnand(d, distro=False):
}
}
})
+ env = OrderedDict({
+ "name": "u-boot-env",
+ "erase": True,
+ "content": {}
+ })
rootfs = {
"name": "rootfs",
@@ -255,7 +261,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