From bb01a6be7b32aa675f5003a6012a60a081212e8c Mon Sep 17 00:00:00 2001 From: Maciej Borzecki Date: Mon, 22 Sep 2014 13:35:20 +0200 Subject: 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 Signed-off-by: Maciej Borzecki Signed-off-by: Maciek Borzecki Signed-off-by: Richard Purdie --- scripts/lib/image/canned-wks/sdimage-bootpart.wks | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 scripts/lib/image/canned-wks/sdimage-bootpart.wks (limited to 'scripts') 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 @@ +# 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 --ondisk mmcblk --fstype=vfat --label boot --active --align 4 --size 16 +part / --source rootfs --ondisk mmcblk --fstype=ext4 --label root --align 4 -- cgit 1.2.3-korg