[OE-core][scarthgap][PATCH v1] wic/partition.py: Set hash_seed for empty ext partition

2024-06-25 Thread Adithya Balakumar
From: Adithya Balakumar Although setting hash_seed is handled for the rootfs plugin case, but this is missed when deploying an empty ext partition. Signed-off-by: Adithya Balakumar --- scripts/lib/wic/partition.py | 37 ++-- 1 file changed, 23 insertions(+), 14

[OE-Core][PATCH v1] wic/partition.py: Set hash_seed for empty ext partition

2024-06-13 Thread Adithya Balakumar
From: Adithya Balakumar Although setting hash_seed is handled for the rootfs plugin case, but this is missed when deploying an empty ext partition. Signed-off-by: Adithya Balakumar --- scripts/lib/wic/partition.py | 37 ++-- 1 file changed, 23 insertions(+), 14

[OE-Core][PATCH v1] wic: implement reproducible Disk GUID

2024-01-22 Thread Adithya Balakumar
From: Adithya Balakumar GPT based disks have a disk guid apart from the 32-bit disk identifier. This commit implements reproducible disk guid by using SOURCE_DATE_EPOCH (if available) value as a random seed Signed-off-by: Adithya Balakumar --- scripts/lib/wic/plugins/imager/direct.py | 16

[OE-core] Ability to set a Disk GUID for wic image

2024-01-16 Thread adithya . balakumar
I am trying to generate reproducible wic images. I see that the Disk GUID is changing between builds. On seeing the wic imager source file (direct.py), i noticed that the disk identifier is set based on the "SOURCE_DATE_EPOCH" environment variable