31 lines
656 B
Plaintext
31 lines
656 B
Plaintext
|
# Minimal SD card image for the Freescale boards Template for SPL Boot
|
||
|
#
|
||
|
# We mimic the .sdcard Freescale's image format:
|
||
|
# * the SD card must have 1 kB free space at the beginning,
|
||
|
# * SPL is at the offset expected by ROM,
|
||
|
# * U-Boot is at the offset expected by SPL,
|
||
|
# * The first partition is expected to be an ext2 and have a /boot directory.
|
||
|
#
|
||
|
|
||
|
image sdcard.img {
|
||
|
hdimage {
|
||
|
}
|
||
|
|
||
|
partition spl {
|
||
|
in-partition-table = "no"
|
||
|
image = "SPL"
|
||
|
offset = 1024
|
||
|
}
|
||
|
|
||
|
partition u-boot-img {
|
||
|
in-partition-table = "no"
|
||
|
image = "u-boot.img"
|
||
|
offset = 69K
|
||
|
}
|
||
|
|
||
|
partition rootfs {
|
||
|
partition-type = 0x83
|
||
|
image = "rootfs.ext2"
|
||
|
}
|
||
|
}
|