diff options
author | Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp> | 2024-09-20 00:18:39 +0900 |
---|---|---|
committer | Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp> | 2024-09-20 00:42:00 +0900 |
commit | 659668d51f1c358527f4f289739dced6fb96feb9 (patch) | |
tree | 6fde9b1331fccd6e1b9d5891871c6a6d362788c6 /meta-agl-ic-container/wic | |
parent | 11a48992beee0dbb8e1f85d7a795a76e4b7b4638 (diff) |
Add Rockchip board support to IC container integration
AGL got new board support that based on Rockchip SoC.
Initial patch support AGL demo IVI only.
This patch add Rockchip board support to IC container integration.
Bug-AGL: SPEC-5246
Change-Id: I6203bb9e2b7cd3cad7604da45c744e88a21d1454
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-rockchip-demo.wks | 13 | ||||
-rw-r--r-- | meta-agl-ic-container/wic/agl-ic-container-rockchip.wks | 13 |
2 files changed, 26 insertions, 0 deletions
diff --git a/meta-agl-ic-container/wic/agl-ic-container-rockchip-demo.wks b/meta-agl-ic-container/wic/agl-ic-container-rockchip-demo.wks new file mode 100644 index 00000000..6339a876 --- /dev/null +++ b/meta-agl-ic-container/wic/agl-ic-container-rockchip-demo.wks @@ -0,0 +1,13 @@ +# short-description: Single partition rootfs with UUID and no bootloader +# long-description: Creates a partitioned image with a single partition in +# use and does not contain a bootloader. + +bootloader --ptable gpt +part --source rawcopy --sourceparams="file=idblock.img" --align 32 --no-table +part --source rawcopy --sourceparams="file=uboot.img" --part-name uboot --align 8192 +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 --source rawcopy --sourceparams="file=agl-ivi-demo-qt.ext4" +part --source rawcopy --sourceparams="file=agl-ivi-demo-flutter.ext4" diff --git a/meta-agl-ic-container/wic/agl-ic-container-rockchip.wks b/meta-agl-ic-container/wic/agl-ic-container-rockchip.wks new file mode 100644 index 00000000..5e7fe73e --- /dev/null +++ b/meta-agl-ic-container/wic/agl-ic-container-rockchip.wks @@ -0,0 +1,13 @@ +# short-description: Single partition rootfs with UUID and no bootloader +# long-description: Creates a partitioned image with a single partition in +# use and does not contain a bootloader. + +bootloader --ptable gpt +part --source rawcopy --sourceparams="file=idblock.img" --align 32 --no-table +part --source rawcopy --sourceparams="file=uboot.img" --part-name uboot --align 8192 +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 |