board/ci20/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>
This commit is contained in:
Giulio Benetti 2021-11-07 03:05:03 +01:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent 827cb07b2d
commit 1812ef5667

View File

@ -1,28 +1,28 @@
image sdcard.img { image sdcard.img {
hdimage { hdimage {
} }
partition uboot-spl { partition uboot-spl {
in-partition-table = "no" in-partition-table = "no"
image = "u-boot-spl.bin" image = "u-boot-spl.bin"
offset = 512 offset = 512
} }
partition uboot { partition uboot {
in-partition-table = "no" in-partition-table = "no"
image = "u-boot.img" image = "u-boot.img"
offset = 14k offset = 14K
} }
partition uboot-env { partition uboot-env {
in-partition-table = "no" in-partition-table = "no"
image = "uboot-env.bin" image = "uboot-env.bin"
offset = 526k offset = 526K
} }
partition rootfs { partition rootfs {
partition-type = 0x83 partition-type = 0x83
image = "rootfs.ext4" image = "rootfs.ext4"
offset = 2M offset = 2M
} }
} }