c05f27c8ae
This patch adds support for the NXP i.MX 93 11x11 EVK board [1]. [1] https://www.nxp.com/design/development-boards/i-mx-evaluation-and-development-boards/i-mx-93-evaluation-kit:i.MX93EVK Reviewed-by: Julien Olivain <ju.o@free.fr> Tested-by: Julien Olivain <ju.o@free.fr> [Julien: tested on NXP board i.MX93EVK, cpu rev A1, board rev B] Reviewed-by: Gary Bisson <bisson.gary@gmail.com> Reviewed-by: Giulio Benetti <giulio.benetti@benettiengineering.com> Signed-off-by: Sébastien Szymanski <sebastien.szymanski@armadeus.com> [Arnout: - Fix shellcheck errors. - Add hash files for ATF, linux, U-Boot. ] Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
43 lines
769 B
Plaintext
43 lines
769 B
Plaintext
# Minimal SD card image for the NXP i.MX9 boards
|
|
#
|
|
# We mimic the .sdcard NXP's image format:
|
|
# * the SD card must have 32 kB free space at the beginning,
|
|
# * U-Boot is integrated into imx9-boot-sd.bin and is dumped as is,
|
|
# * a FAT partition at offset 8MB is containing Image and DTB files
|
|
# * a single root filesystem partition is required (ext2, ext3 or ext4)
|
|
#
|
|
|
|
image boot.vfat {
|
|
vfat {
|
|
label = "boot"
|
|
files = {
|
|
%FILES%
|
|
}
|
|
}
|
|
|
|
size = 64M
|
|
}
|
|
|
|
image sdcard.img {
|
|
hdimage {
|
|
}
|
|
|
|
partition imx-boot {
|
|
in-partition-table = "no"
|
|
image = "imx9-boot-sd.bin"
|
|
offset = %IMXOFFSET%
|
|
}
|
|
|
|
partition boot {
|
|
partition-type = 0xC
|
|
bootable = "true"
|
|
image = "boot.vfat"
|
|
offset = 8M
|
|
}
|
|
|
|
partition rootfs {
|
|
partition-type = 0x83
|
|
image = "rootfs.ext2"
|
|
}
|
|
}
|