board/grinn/liteboard/genimage.cfg: beautify file

Beatify this genimage .cfg file to have consistency with all genimage .cfg
files in Buildroot.

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2021.11.x
Giulio Benetti 2021-11-07 03:07:55 +01:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent e49df28cc4
commit 0ef71d5665
1 changed files with 30 additions and 29 deletions

View File

@ -9,40 +9,41 @@
#
image boot.vfat {
vfat {
files = {
"imx6ul-liteboard.dtb",
"zImage"
}
}
size = 16M
vfat {
files = {
"imx6ul-liteboard.dtb",
"zImage"
}
}
size = 16M
}
image sdcard.img {
hdimage {
}
hdimage {
}
partition SPL {
in-partition-table = "no"
image = "SPL"
offset = 1K
}
partition SPL {
in-partition-table = "no"
image = "SPL"
offset = 1K
}
partition u-boot {
in-partition-table = "no"
image = "u-boot.img"
offset = 69K
}
partition u-boot {
in-partition-table = "no"
image = "u-boot.img"
offset = 69K
}
partition boot {
partition-type = 0xC
bootable = "true"
image = "boot.vfat"
offset = 8M
}
partition boot {
partition-type = 0xC
bootable = "true"
image = "boot.vfat"
offset = 8M
}
partition rootfs {
partition-type = 0x83
image = "rootfs.ext4"
}
partition rootfs {
partition-type = 0x83
image = "rootfs.ext4"
}
}