9af33ec869
Make explicit that a ext4 rootfs is used. As explained by Thomas Petazzoni: "the ext4 filesystem is already used. Indeed, the ext4 image is a symlink to the ext2 image, and the ext2 image is in fact an ext4 image: -rw-r--r-- 1 thomas thomas 3763200 sept. 11 21:54 rootfs.ext2 lrwxrwxrwx 1 thomas thomas 11 sept. 11 21:54 rootfs.ext4 -> rootfs.ext2" Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
32 lines
633 B
INI
32 lines
633 B
INI
# Minimal SD card image for the Wandboard
|
|
#
|
|
# The SD card must have at least 1 MB free at the beginning.
|
|
# U-Boot and its environment are dumped as is.
|
|
# A single root filesystem partition is required (Ext4 in this case).
|
|
#
|
|
# For details about the layout, see:
|
|
# http://wiki.wandboard.org/index.php/Boot-process
|
|
|
|
image sdcard.img {
|
|
hdimage {
|
|
}
|
|
|
|
partition spl {
|
|
in-partition-table = "no"
|
|
image = "SPL"
|
|
offset = 1024
|
|
}
|
|
|
|
partition u-boot {
|
|
in-partition-table = "no"
|
|
image = "u-boot.img"
|
|
offset = 70656
|
|
}
|
|
|
|
partition rootfs {
|
|
partition-type = 0x83
|
|
image = "rootfs.ext4"
|
|
size = 512M
|
|
}
|
|
}
|