kumquat-buildroot/board/technologic/ts4800/genimage.cfg
Patrick Keroulas 1cda15f494 configs: add defconfig for TS-4800
The TS-4800 is supported by mainline Linux as of 4.5 and by U-boot
as of v2016-07.

The package requires the custom ts4800-mbrboot routine.

A post-image script is provided to generate an image that can be
directly written to an SD card.

More details on the board here:
  http://wiki.embeddedarm.com/wiki/TS-4800

Signed-off-by: Damien Riegel <damien.riegel@savoirfairelinux.com>
Signed-off-by: Patrick Keroulas <patrick.keroulas@savoirfairelinux.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2016-07-20 13:45:09 +02:00

38 lines
773 B
INI

image boot.vfat {
vfat {
files = {
"zImage",
"imx51-ts4800.dtb"
}
}
size = 8M
}
image sdcard.img {
hdimage {
}
partition mbrboot {
in-partition-table = "no"
image = "mbrboot.bin"
offset = 0
}
partition uboot {
partition-type = 0xda
image = "u-boot.bin"
size = 256k
}
partition kernel {
partition-type = 0xC
image = "boot.vfat"
}
partition rootfs {
partition-type = 0x83
image = "rootfs.ext4"
size = 256M
}
}