c08ec9191f
Add initial support for Nanopi R1 board with below features: - U-Boot 2019.01 - Linux 5.0 - Default packages from buildroot Configuration files taken from Armbian: https://github.com/armbian/build/blob/master/patch Signed-off-by: Davide Viti <zinosat@gmail.com> [Thomas: move U-Boot config and DT to board/friendlyarm/nanopi-r1/uboot/] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
37 lines
504 B
INI
37 lines
504 B
INI
# Minimal SD card image for the NanoPi M1
|
|
#
|
|
image boot.vfat {
|
|
vfat {
|
|
files = {
|
|
"zImage",
|
|
"sun8i-h3-nanopi-r1.dtb",
|
|
"boot.scr"
|
|
}
|
|
}
|
|
size = 10M
|
|
}
|
|
|
|
image sdcard.img {
|
|
hdimage {
|
|
}
|
|
|
|
partition u-boot {
|
|
in-partition-table = "no"
|
|
image = "u-boot-sunxi-with-spl.bin"
|
|
offset = 8192
|
|
size = 1040384 # 1MB - 8192
|
|
}
|
|
|
|
partition boot {
|
|
partition-type = 0xC
|
|
bootable = "true"
|
|
image = "boot.vfat"
|
|
}
|
|
|
|
partition rootfs {
|
|
partition-type = 0x83
|
|
image = "rootfs.ext4"
|
|
size = 512M
|
|
}
|
|
}
|