ccmp1: add wks file to generate a bootable sdcard
This wks file creates the required GPT and partition layout to have a bootable SD card with the following partitions: - fsbl1 - fsbl2 - metadata1 - metadata2 - fip-a - fip-b - u-boot-env - linux - rootfs - data Signed-off-by: Hector Palacios <hector.palacios@digi.com> https://onedigi.atlassian.net/browse/DEL-8120
This commit is contained in:
parent
7cf314ba80
commit
415caa2b66
|
|
@ -48,6 +48,9 @@ IMAGE_FSTYPES:remove = "ext4 tar.xz"
|
||||||
# List of supported boot devices
|
# List of supported boot devices
|
||||||
BOOTDEVICE_LABELS ?= "sdcard"
|
BOOTDEVICE_LABELS ?= "sdcard"
|
||||||
|
|
||||||
|
# Wic files
|
||||||
|
WKS_FILE += "ccmp1.wks.in"
|
||||||
|
|
||||||
# Default secure console configuration
|
# Default secure console configuration
|
||||||
TRUSTFENCE_CONSOLE_DISABLE ?= "0"
|
TRUSTFENCE_CONSOLE_DISABLE ?= "0"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,37 @@
|
||||||
|
# short-description: Create SD card image with a boot partition (1GB)
|
||||||
|
# long-description: Creates a partitioned SD card image (1GB)
|
||||||
|
#
|
||||||
|
# - -------- ------------- ------ ------ ------------ -------- --------- --------
|
||||||
|
# | | TFA(2) | Metadata(2) | FIPA | FIPB | U-BOOT ENV | linux | rootfs | data |
|
||||||
|
# - -------- ------------- ------ ------ ------------ -------- --------- --------
|
||||||
|
# ^ ^ ^ ^ ^ ^ ^ ^ ^ ^
|
||||||
|
# | | | | | | | | | |
|
||||||
|
# 0 17kB 542kB 1.06MB 5.26MB 9.45MB 9.97MB 77.1MB 898MB 1032MB
|
||||||
|
#
|
||||||
|
# Warning: the first stage of boot (here fsbl1, fsbl2, metadata1, metadata2, fipa, fipb) MUST be on GPT partition to be detected.
|
||||||
|
#
|
||||||
|
|
||||||
|
# FSBL partitions aka TF-A BL2
|
||||||
|
part fsbl1 --source rawcopy --fstype=ext4 --fsoptions "noauto" --part-name=fsbl1 --sourceparams="file=${DEPLOY_DIR_IMAGE}/arm-trusted-firmware/tf-a-${MACHINE}-sdcard.stm32" --ondisk mmcblk --part-type 0x8301 --fixed-size 256K --align 17
|
||||||
|
part fsbl2 --source rawcopy --fstype=ext4 --fsoptions "noauto" --part-name=fsbl2 --sourceparams="file=${DEPLOY_DIR_IMAGE}/arm-trusted-firmware/tf-a-${MACHINE}-sdcard.stm32" --ondisk mmcblk --part-type 0x8301 --fixed-size 256K
|
||||||
|
|
||||||
|
# Metadata partitions
|
||||||
|
part metadata1 --source rawcopy --fstype=ext4 --fsoptions "noauto" --part-name=metadata1 --sourceparams="file=${DEPLOY_DIR_IMAGE}/arm-trusted-firmware/metadata.bin" --ondisk mmcblk --part-type 0x8301 --fixed-size 256K
|
||||||
|
part metadata2 --source rawcopy --fstype=ext4 --fsoptions "noauto" --part-name=metadata2 --sourceparams="file=${DEPLOY_DIR_IMAGE}/arm-trusted-firmware/metadata.bin" --ondisk mmcblk --part-type 0x8301 --fixed-size 256K
|
||||||
|
|
||||||
|
# Fip partitions
|
||||||
|
part fip-a --source rawcopy --fstype=ext4 --fsoptions "noauto" --part-name=fip-a --sourceparams="file=${DEPLOY_DIR_IMAGE}/fip/fip-${MACHINE}-optee.bin" --ondisk mmcblk --part-type 19d5df83-11b0-457b-be2c-7559c13142a5 --fixed-size 4096K --uuid 4fd84c93-54ef-463f-a7ef-ae25ff887087
|
||||||
|
part fip-b --source rawcopy --fstype=ext4 --fsoptions "noauto" --part-name=fip-b --sourceparams="file=${DEPLOY_DIR_IMAGE}/fip/fip-${MACHINE}-optee.bin" --ondisk mmcblk --part-type 19d5df83-11b0-457b-be2c-7559c13142a5 --fixed-size 4096K --uuid 09c54952-d5bf-45af-acee-335303766fb3
|
||||||
|
|
||||||
|
# U-BOOT env
|
||||||
|
part u-boot-env --source empty --part-name=uboot-env --ondisk mmcblk --part-type 0x8301 --fixed-size 512K
|
||||||
|
|
||||||
|
# linux
|
||||||
|
part --source rawcopy --sourceparams="file=${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.boot.vfat" --ondisk mmcblk --fstype=vfat --part-name=linux --active --fixed-size 64M
|
||||||
|
|
||||||
|
# Rootfs
|
||||||
|
part / --source rootfs --ondisk mmcblk --fstype=ext4 --label rootfs --fixed-size 783M --uuid e91c4e10-16e6-4c0e-bd0e-77becf4a3582 --part-name=rootfs
|
||||||
|
# data
|
||||||
|
part data --ondisk mmcblk --fstype=ext4 --label data --fixed-size 128M --part-name=data
|
||||||
|
|
||||||
|
bootloader --ptable gpt
|
||||||
Loading…
Reference in New Issue