a855cd8a71
A defconfig for the friendlyarm nanopi-m4 was added in493c3979a4
, but then removed ina24bd8936f
because an ARM32 compiler was needed to build ATF, and this was not supported back then. Now, since package/arm-gnu-a-toolchain/ has been added, this defconfig can be re-introduced. Following new changes are introduced in comparision with the older changeset: - readme updated - GPT partition layout - update defconfig to build ATF - bump u-boot to 2020.07 - bump linux to 5.8.2 Signed-off-by: Suniel Mahesh <sunil@amarulasolutions.com> Reviewed-by: Jagan Teki <jagan@amarulasolutions.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> [Arnout: fixate U-Boot version; remove blind BR2_TARGET_UBOOT_NEEDS_PYTHON]
40 lines
464 B
INI
40 lines
464 B
INI
image boot.vfat {
|
|
vfat {
|
|
files = {
|
|
"Image",
|
|
"rk3399-nanopi-m4.dtb",
|
|
"extlinux"
|
|
}
|
|
}
|
|
size = 64M
|
|
}
|
|
|
|
image sdcard.img {
|
|
|
|
hdimage {
|
|
gpt = true
|
|
}
|
|
|
|
partition loader1 {
|
|
image = "idbloader.img"
|
|
offset = 32K
|
|
}
|
|
|
|
partition loader2 {
|
|
image = "u-boot.itb"
|
|
offset = 8M
|
|
}
|
|
|
|
partition boot {
|
|
partition-type = 0xC
|
|
bootable = "true"
|
|
image = "boot.vfat"
|
|
offset = 16M
|
|
}
|
|
|
|
partition rootfs {
|
|
partition-type = 0x83
|
|
image = "rootfs.ext4"
|
|
}
|
|
}
|