0d71ab4172
Bump U-boot version to 2015.07 from the mainline repository. Since there is SPL support for the wandboard in the U-boot 2015.07, it is now possible to boot the same U-boot image for all wandboard variants (solo/dual/quad). Bump kernel version to 3.14.28_1.0.0 from the wandboard git repository. Tested on Wandboard Solo, Wandboard Dual and Wandboard Quad. Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com> Tested-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
39 lines
757 B
INI
39 lines
757 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 (Ext2 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 u-boot-env {
|
|
in-partition-table = "no"
|
|
image = "uboot-env.bin"
|
|
offset = 393216
|
|
size = 8192
|
|
}
|
|
|
|
partition rootfs {
|
|
partition-type = 0x83
|
|
image = "rootfs.ext2"
|
|
size = 512M
|
|
}
|
|
}
|