Create genimage.config

This commit is contained in:
Pascal Vizeli 2018-03-19 17:01:17 +01:00 committed by GitHub
parent 9670dd6ed6
commit 1afb5fc1f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,54 @@
image boot.vfat {
vfat {
files = {
"bzImage"
}
}
size = 64M
}
image overlay.ext4 {
ext4 {
label = "overlay"
}
size = 128M
}
image data.ext4 {
ext4 {
label = "data"
}
size = 128M
}
image sdcard.img {
hdimage {
}
partition boot {
partition-type = 0xC
bootable = "true"
image = "boot.vfat"
}
partition root-a {
partition-type = 0x83
image = "rootfs.squashfs"
size = 256M
}
partition root-b {
partition-type = 0x83
size = 256M
}
partition overlay {
partition-type = 0x83
image = "overlay.ext4"
}
partition data {
partition-type = 0x83
image = "data.ext4"
}
}