diff options
author | Maciej Borzecki <maciej.borzecki@open-rnd.pl> | 2014-09-22 13:35:20 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-09-23 20:35:56 +0100 |
commit | 7291691d3fc71d0ccd3021bfbf482f006aee9477 (patch) | |
tree | 066c4082920c5071a70bd66c71786780f68316c7 /scripts/lib/image | |
parent | 6b03fc214f8d5cd9a811b611fe680b7f762582d3 (diff) | |
download | poky-7291691d3fc71d0ccd3021bfbf482f006aee9477.tar.gz |
wic: add sdimage-bootpart kickstart file
Add kickstart for generating a SD card image that should cover most use
case scenarios. The layout is as follows:
- 16MB vfat partition that IMAGE_BOOT_FILES will be copied to, 4k
alignment
- ext4 rootfs, 4k alignment
(From OE-Core rev: bb01a6be7b32aa675f5003a6012a60a081212e8c)
Signed-off-by: Maciej Borzecki <maciej.borzecki@open-rnd.pl>
Signed-off-by: Maciek Borzecki <maciek.borzecki@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/image')
-rw-r--r-- | scripts/lib/image/canned-wks/sdimage-bootpart.wks | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/lib/image/canned-wks/sdimage-bootpart.wks b/scripts/lib/image/canned-wks/sdimage-bootpart.wks new file mode 100644 index 0000000000..7ffd632f4a --- /dev/null +++ b/scripts/lib/image/canned-wks/sdimage-bootpart.wks | |||
@@ -0,0 +1,6 @@ | |||
1 | # short-description: Create SD card image with a boot partition | ||
2 | # long-description: Creates a partitioned SD card image. Boot files | ||
3 | # are located in the first vfat partition. | ||
4 | |||
5 | part /boot --source bootimg-partition --ondisk mmcblk --fstype=vfat --label boot --active --align 4 --size 16 | ||
6 | part / --source rootfs --ondisk mmcblk --fstype=ext4 --label root --align 4 | ||