diff options
author | Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp> | 2024-10-01 01:37:37 +0900 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2024-10-09 14:03:15 +0000 |
commit | 15a0ea3eff12f2b0a2d673127644a51cb4302c0d (patch) | |
tree | 432d575c305dd3c15386e60e323561a07cfbc704 | |
parent | 31342aa9c1ad3bd2e1e6605629b7c4015745cfbd (diff) |
Reduce wic size in case of small container integration demo
Existing wks file has two reserved blank partition. It cause long dd write time.
This change removes two reserved blank partition to reduce dd write time.
Bug-AGL: SPEC-5162
Change-Id: Iecf3785a52c5b5fc0c7b21f031bb10a128a4a123
Signed-off-by: Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>
3 files changed, 1 insertions, 6 deletions
diff --git a/meta-agl-ic-container/wic/agl-ic-container-bootpart-uuid.wks b/meta-agl-ic-container/wic/agl-ic-container-bootpart-uuid.wks index 94e88a8d..feaf2979 100644 --- a/meta-agl-ic-container/wic/agl-ic-container-bootpart-uuid.wks +++ b/meta-agl-ic-container/wic/agl-ic-container-bootpart-uuid.wks @@ -6,5 +6,4 @@ part /boot --source bootimg-partition --fstype=vfat --label boot --use-uuid --ac part / --source rootfs --fstype=ext4 --label host --align 4096 --size 1024 part --source rawcopy --sourceparams="file=guest-image-cluster-demo.ext4" part --source rawcopy --sourceparams="file=guest-image-ivi-demo.ext4" -part --fstype=ext4 --label agl-qt-ivi --align 4096 --size 3072 -part --fstype=ext4 --label agl-flutter-ivi --align 4096 --size 3072 +part --fstype=ext4 --label blabk --align 4096 --size 128 diff --git a/meta-agl-ic-container/wic/agl-ic-container-noloader.wks b/meta-agl-ic-container/wic/agl-ic-container-noloader.wks index d299ae66..e2fc8394 100644 --- a/meta-agl-ic-container/wic/agl-ic-container-noloader.wks +++ b/meta-agl-ic-container/wic/agl-ic-container-noloader.wks @@ -6,5 +6,3 @@ bootloader --ptable gpt part / --source rootfs --fstype=ext4 --label host --align 4096 --size 1024 part --source rawcopy --sourceparams="file=guest-image-cluster-demo.ext4" part --source rawcopy --sourceparams="file=guest-image-ivi-demo.ext4" -part --fstype=ext4 --label agl-qt-ivi --align 4096 --size 3072 -part --fstype=ext4 --label agl-flutter-ivi --align 4096 --size 3072 diff --git a/meta-agl-ic-container/wic/agl-ic-container-rockchip.wks b/meta-agl-ic-container/wic/agl-ic-container-rockchip.wks index 5e7fe73e..1441fb24 100644 --- a/meta-agl-ic-container/wic/agl-ic-container-rockchip.wks +++ b/meta-agl-ic-container/wic/agl-ic-container-rockchip.wks @@ -9,5 +9,3 @@ part --source rawcopy --sourceparams="file=boot.img" --part-name boot part / --source rootfs --fstype=ext4 --label host --align 4096 --size 1024 part --source rawcopy --sourceparams="file=guest-image-cluster-demo.ext4" part --source rawcopy --sourceparams="file=guest-image-ivi-demo.ext4" -part --fstype=ext4 --label agl-qt-ivi --align 4096 --size 3072 -part --fstype=ext4 --label agl-flutter-ivi --align 4096 --size 3072 |