b8aebcfd82
The kernel now has support for dma, ethernet, i2c, mmc, pinctrl, regulator, so enable drivers for those, change to a ext4 rootfs and enable DHCP on eth0. Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
46 lines
626 B
INI
46 lines
626 B
INI
# Minimal SD card image for the Roseapple Pi
|
|
#
|
|
image boot.vfat {
|
|
vfat {
|
|
files = {
|
|
"uEnv.txt",
|
|
"uImage"
|
|
}
|
|
|
|
file kernel.dtb {
|
|
image = "owl-s500-roseapplepi.dtb"
|
|
}
|
|
}
|
|
|
|
size = 128M
|
|
}
|
|
|
|
image sdcard.img {
|
|
hdimage {
|
|
}
|
|
|
|
partition s500-bootloader {
|
|
in-partition-table = "no"
|
|
image = "s500-bootloader.bin"
|
|
offset = 0x200200 # 2MB + 512B
|
|
}
|
|
|
|
partition u-boot {
|
|
in-partition-table = "no"
|
|
image = "u-boot-dtb.img"
|
|
offset = 3M
|
|
}
|
|
|
|
partition boot {
|
|
partition-type = 0xC
|
|
bootable = "true"
|
|
image = "boot.vfat"
|
|
}
|
|
|
|
partition rootfs {
|
|
partition-type = 0x83
|
|
image = "rootfs.ext4"
|
|
size = 512M
|
|
}
|
|
}
|