1
0
mirror of https://git.yoctoproject.org/meta-arm synced 2026-05-07 04:58:57 +00:00

arm-bsp: corstone1000: Make ESP partition available to Corstone-1000

The SystemReady IR ACS test suite require that there is a valid ESP
partition available to the system.  This change creates a new image that
only contains a ESP partition and ensures it's mounted on the second MMC
card so it's available when the SystemReady tests run.
The diagnostic level of the 2 MMC cards have also been lowered to
improve the ACS test duration.
Corrected a spelling mistake in the corstone1000-flash-firmware-image.bb
file.

Signed-off-by: Drew Reed <Drew.Reed@arm.com>
Signed-off-by: Jon Mason <jon.mason@arm.com>
This commit is contained in:
Drew Reed
2024-04-30 17:29:55 +01:00
committed by Jon Mason
parent 1fd614e545
commit eed6bc24d1
6 changed files with 43 additions and 6 deletions
@@ -0,0 +1,9 @@
# short-description: Create an EFI disk image with only an ESP partition
# long-description: Creates a partitioned EFI disk image that the user
# can directly dd to boot media. This image only contains an ESP
# partition that can be used by the SystemReady ACS test to store
# EFI data and process capsule updates.
part /boot --source bootimg-efi --sourceparams="loader=${EFI_PROVIDER}" --label boot --active --align 1024 --use-uuid --part-name="ESP" --part-type=C12A7328-F81F-11D2-BA4B-00A0C93EC93B --fixed-size 256M
bootloader --ptable gpt --timeout=1 --append="${GRUB_LINUX_APPEND}"
+2 -2
View File
@@ -3,8 +3,8 @@
# can directly dd to boot media. This image will not contain a swap
# partition but will contain custom machine specific grub arguments.
part /boot --source bootimg-efi --sourceparams="loader=${EFI_PROVIDER}" --label boot --active --align 1024 --use-uuid
part /boot --source bootimg-efi --sourceparams="loader=${EFI_PROVIDER}" --label boot --active --align 1024 --use-uuid --part-name="ESP" --part-type=C12A7328-F81F-11D2-BA4B-00A0C93EC93B --fixed-size 256M
part / --source rootfs --fstype=ext4 --label root --align 1024 --use-uuid
part / --source rootfs --fstype=ext4 --label root --align 1024 --use-uuid --exclude-path boot/
bootloader --ptable gpt --timeout=1 --append="${GRUB_LINUX_APPEND}"