aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorPaul Spooren <mail@aparcar.org>2020-12-13 14:36:17 -1000
committerPaul Spooren <mail@aparcar.org>2020-12-13 22:07:52 -1000
commitbc0ffff36a0bd8043e958913f574cb8d2a79e93d (patch)
tree30b8ebb61f20bab5daf73e532a489785d49bbd64 /scripts
parentcdc8d4b46f0811292fffc6094acd81e854b5f4a5 (diff)
downloadupstream-bc0ffff36a0bd8043e958913f574cb8d2a79e93d.tar.gz
upstream-bc0ffff36a0bd8043e958913f574cb8d2a79e93d.tar.bz2
upstream-bc0ffff36a0bd8043e958913f574cb8d2a79e93d.zip
build/json: add filesystem information
Some images are created using different filesystems, most popular squashfs and ext4. To allow downstream projects to distinguesh between those, add the `filesystem` information to created json files. Signed-off-by: Paul Spooren <mail@aparcar.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/json_add_image_info.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/json_add_image_info.py b/scripts/json_add_image_info.py
index ac907c777c..d394cf4d1f 100755
--- a/scripts/json_add_image_info.py
+++ b/scripts/json_add_image_info.py
@@ -51,6 +51,7 @@ image_info = {
"images": [
{
"type": getenv("IMAGE_TYPE"),
+ "filesystem": getenv("IMAGE_FILESYSTEM"),
"name": getenv("IMAGE_NAME"),
"sha256": image_hash,
}