9a51a07a91
Add support for the LicheePi Nano with mainline components: - U-Boot 2023.04 - Linux 6.5.9 Board homepage and more usable WiKi: - https://wiki.sipeed.com/hardware/en/lichee/Nano/Nano.html - https://linux-sunxi.org/LicheePi_Nano linux.fragment is required to disable some features in order to keep the kernel size small, otherwise the board does not boot due to limited memory. See note in readme.txt. Signed-off-by: Francois Dugast <francois.dugast.foss@gmail.com> [yann.morin.1998@free.fr: - use fixed kernel version - use manufacturer directory ] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
34 lines
440 B
INI
34 lines
440 B
INI
flash w25q128 {
|
|
pebsize = 65536
|
|
numpebs = 256
|
|
minimum-io-unit-size = 1
|
|
sub-page-size = 1
|
|
vid-header-offset = 64
|
|
}
|
|
|
|
image flash.bin {
|
|
flash {}
|
|
flashtype = w25q128
|
|
|
|
partition uboot {
|
|
image = "u-boot-sunxi-with-spl.bin"
|
|
size = 512K
|
|
}
|
|
|
|
partition dtb {
|
|
image = "suniv-f1c100s-licheepi-nano.dtb"
|
|
size = 64K
|
|
}
|
|
|
|
partition zimage {
|
|
image = "zImage"
|
|
size = 5M
|
|
}
|
|
|
|
partition rootfs {
|
|
image = "rootfs.jffs2"
|
|
size = 0
|
|
}
|
|
}
|
|
|