16fc95d5a1
And drop the manual sdcard generation description from the readme. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
27 lines
293 B
INI
27 lines
293 B
INI
image boot.vfat {
|
|
vfat {
|
|
files = {
|
|
"MLO",
|
|
"u-boot.img"
|
|
}
|
|
}
|
|
size = 8M
|
|
}
|
|
|
|
image sdcard.img {
|
|
hdimage {
|
|
}
|
|
|
|
partition boot {
|
|
partition-type = 0xC
|
|
bootable = "true"
|
|
image = "boot.vfat"
|
|
}
|
|
|
|
partition rootfs {
|
|
partition-type = 0x83
|
|
image = "rootfs.ext4"
|
|
size = 512M
|
|
}
|
|
}
|