ff5ea2f636
The ODROID-C2 is a 64-bit quad-core single board computer(SBC) that is one of the most cost-effective 64bit development boards available in the ARM world. http://www.hardkernel.com/main/products/prdt_info.php?g_code=G145457216438 [Peter: fix typos, drop neon/C++ settings, use git hash for Linux/U-Boot] Signed-off-by: Brian Kim <brian.kim@hardkernel.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
28 lines
320 B
INI
28 lines
320 B
INI
image boot.vfat {
|
|
vfat {
|
|
files = {
|
|
"boot.ini",
|
|
"Image",
|
|
"meson64_odroidc2.dtb"
|
|
}
|
|
}
|
|
size = 32M
|
|
}
|
|
|
|
image sdcard.img {
|
|
hdimage {
|
|
}
|
|
|
|
partition vfat {
|
|
partition-type = 0xC
|
|
image = "boot.vfat"
|
|
offset = 1048576
|
|
}
|
|
|
|
partition rootfs {
|
|
partition-type = 0x83
|
|
image = "rootfs.ext4"
|
|
size = 512M
|
|
}
|
|
}
|