diff options
author | Dit Kozmaj <dit.kozmaj@kynetics.com> | 2023-04-06 10:44:16 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-04-13 11:56:07 +0100 |
commit | a60925d00aefd144c25f5a6d86949d42d802f181 (patch) | |
tree | 4ef976e53e8570aa4bbf5ada5cc33aadbc16740b /meta-selftest | |
parent | 18b04f9c3fd6d4268da538c7622875f02ff59d64 (diff) | |
download | poky-a60925d00aefd144c25f5a6d86949d42d802f181.tar.gz |
selftest: wic: Add test for --part-name argument
Add test for wic --part-name argument in .wks file.
Test three different cases:
- Set only the --part-name argument.
- Set only the --label argument. In this case the GPT partition label
is set to the value of --label for compatibility reasons.
- Set both. In this case the code has been changed to set the GPT
partition label to the --part-name value.
The test uses a test_gpt_partition_name.wks file created for this
purpose.
(From OE-Core rev: 06af6795cf6f079362303bddb39a14459e228e72)
Signed-off-by: Dit Kozmaj <dit.kozmaj@kynetics.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-selftest')
-rw-r--r-- | meta-selftest/wic/test_gpt_partition_name.wks | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meta-selftest/wic/test_gpt_partition_name.wks b/meta-selftest/wic/test_gpt_partition_name.wks new file mode 100644 index 0000000000..7db6da9aee --- /dev/null +++ b/meta-selftest/wic/test_gpt_partition_name.wks | |||
@@ -0,0 +1,7 @@ | |||
1 | # short-description: image to test part-name in GPT partitions | ||
2 | |||
3 | part --fstype=ext4 --part-name boot-A --label boot --size 1M --align 1024 | ||
4 | part / --source rootfs --fstype=ext4 --part-name root-A --align 1024 | ||
5 | part --fstype=ext4 --label ext-space --size 1M --align 1024 | ||
6 | |||
7 | bootloader --ptable gpt | ||