diff options
author | Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp> | 2023-05-05 11:10:46 +0900 |
---|---|---|
committer | Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp> | 2023-05-09 08:13:10 +0900 |
commit | 5409f17b5ec13f7b41c60845ad902159f7d03ab6 (patch) | |
tree | 99647923dbce5669324a4c5d675edd57234ac934 /meta-agl-ic-container/wic | |
parent | 84a2fd1c5363b66ae898c1377db0b5ad17c59fcf (diff) |
Update raspberrypi4 support for AGL IC container integration
The raspberrypi4 and R-CarH3-refhw board is main supporting
board for AGL IC container integration. The raspberrypi4 is
require few patches.
This patch update raspberrypi4 support for AGL IC container
integration.
Bug-AGL: SPEC-4777
Change-Id: I719e01aa8d603eced73e99fc54652b89d2d612b9
Signed-off-by: Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>
Diffstat (limited to 'meta-agl-ic-container/wic')
-rw-r--r-- | meta-agl-ic-container/wic/agl-ic-container-bootpart-uuid.wks | 11 |
1 files changed, 11 insertions, 0 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 new file mode 100644 index 00000000..b56e80e4 --- /dev/null +++ b/meta-agl-ic-container/wic/agl-ic-container-bootpart-uuid.wks @@ -0,0 +1,11 @@ +# short-description: Create SD card image with a boot partition +# long-description: Creates a partitioned SD card image. Boot files +# are located in the first vfat partition. + +part /boot --source bootimg-partition --fstype=vfat --label boot --use-uuid --active --align 4 --size 16 +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 agl-html5-ivi --align 4096 --size 3072 |