diff options
author | Vyacheslav Yurkov <uvv.mail@gmail.com> | 2021-12-10 14:01:40 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-12-12 11:27:24 +0000 |
commit | 822adf5c9f84062867988c903170156d94ee3729 (patch) | |
tree | e315461d01e6479e3efe640f9376c6922737e3ec /meta-selftest | |
parent | 167bc05b7f2a0450f0caa48d9dead13381f7168b (diff) | |
download | poky-822adf5c9f84062867988c903170156d94ee3729.tar.gz |
wic: image for overlayfs-etc tests
Introduce wic image for overlayfs-etc tests with a dedicated /data
partition and configurable kernel parameters
(From OE-Core rev: f9a2b08c07ff1270d5b3e8d72d17b6d5fde5bf96)
Signed-off-by: Vyacheslav Yurkov <uvv.mail@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-selftest')
-rw-r--r-- | meta-selftest/wic/overlayfs_etc.wks.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta-selftest/wic/overlayfs_etc.wks.in b/meta-selftest/wic/overlayfs_etc.wks.in new file mode 100644 index 0000000000..1e1e5836e7 --- /dev/null +++ b/meta-selftest/wic/overlayfs_etc.wks.in | |||
@@ -0,0 +1,4 @@ | |||
1 | part /boot --active --source bootimg-biosplusefi --ondisk sda --sourceparams="loader=grub-efi" --align 1024 | ||
2 | part / --source rootfs --ondisk sda --fstype=ext4 --use-uuid --align 1024 | ||
3 | part --ondisk sda --fstype=ext4 --size=5 --align 1024 | ||
4 | bootloader --ptable gpt --timeout=1 --append="rootfstype=ext4 console=ttyS0,115200 console=tty0 ${OVERLAYFS_INIT_OPTION}" | ||