2015-07-13 20:50:45 +02:00
|
|
|
# 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.
|
2016-09-12 00:31:42 +02:00
|
|
|
# A single root filesystem partition is required (Ext4 in this case).
|
2015-07-13 20:50:45 +02:00
|
|
|
#
|
|
|
|
# For details about the layout, see:
|
|
|
|
# http://wiki.wandboard.org/index.php/Boot-process
|
|
|
|
|
|
|
|
image sdcard.img {
|
|
|
|
hdimage {
|
|
|
|
}
|
|
|
|
|
2015-10-03 17:40:02 +02:00
|
|
|
partition spl {
|
2015-07-13 20:50:45 +02:00
|
|
|
in-partition-table = "no"
|
2015-10-03 17:40:02 +02:00
|
|
|
image = "SPL"
|
2015-07-13 20:50:45 +02:00
|
|
|
offset = 1024
|
|
|
|
}
|
|
|
|
|
2015-10-03 17:40:02 +02:00
|
|
|
partition u-boot {
|
|
|
|
in-partition-table = "no"
|
|
|
|
image = "u-boot.img"
|
|
|
|
offset = 70656
|
|
|
|
}
|
|
|
|
|
2015-07-13 20:50:45 +02:00
|
|
|
partition rootfs {
|
|
|
|
partition-type = 0x83
|
2016-09-12 00:31:42 +02:00
|
|
|
image = "rootfs.ext4"
|
2017-09-21 15:59:38 +02:00
|
|
|
offset = 1M
|
2015-07-13 20:50:45 +02:00
|
|
|
size = 512M
|
|
|
|
}
|
|
|
|
}
|