board/lego/ev3/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:
parent
26b1b9a7ed
commit
b2279c32c7
@ -5,8 +5,8 @@
|
|||||||
# The Flash image
|
# The Flash image
|
||||||
|
|
||||||
flash nor-16M-256 {
|
flash nor-16M-256 {
|
||||||
pebsize = 4096
|
pebsize = 4K
|
||||||
numpebs = 4096
|
numpebs = 4K
|
||||||
minimum-io-unit-size = 256
|
minimum-io-unit-size = 256
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -14,24 +14,28 @@ image flash.bin {
|
|||||||
flash {
|
flash {
|
||||||
}
|
}
|
||||||
flashtype = "nor-16M-256"
|
flashtype = "nor-16M-256"
|
||||||
|
|
||||||
partition uboot {
|
partition uboot {
|
||||||
image = "u-boot.bin"
|
image = "u-boot.bin"
|
||||||
size = 256K
|
size = 256K
|
||||||
}
|
}
|
||||||
|
|
||||||
partition dtb {
|
partition dtb {
|
||||||
image = "da850-lego-ev3.dtb"
|
image = "da850-lego-ev3.dtb"
|
||||||
|
offset = 256K
|
||||||
size = 64K
|
size = 64K
|
||||||
offset = 0x40000
|
|
||||||
}
|
}
|
||||||
|
|
||||||
partition uimage {
|
partition uimage {
|
||||||
image = "uImage"
|
image = "uImage"
|
||||||
|
offset = 320K
|
||||||
size = 4M
|
size = 4M
|
||||||
offset = 0x50000
|
|
||||||
}
|
}
|
||||||
|
|
||||||
partition rootfs {
|
partition rootfs {
|
||||||
image = "rootfs.squashfs"
|
image = "rootfs.squashfs"
|
||||||
|
offset = 4416K # 4M + 320KB
|
||||||
size = 10M
|
size = 10M
|
||||||
offset = 0x450000
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -42,22 +46,26 @@ image boot.vfat {
|
|||||||
file uImage {
|
file uImage {
|
||||||
image = "uImage"
|
image = "uImage"
|
||||||
}
|
}
|
||||||
|
|
||||||
file da850-lego-ev3.dtb {
|
file da850-lego-ev3.dtb {
|
||||||
image = "da850-lego-ev3.dtb"
|
image = "da850-lego-ev3.dtb"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
size = 16M
|
size = 16M
|
||||||
}
|
}
|
||||||
|
|
||||||
image sdcard.img {
|
image sdcard.img {
|
||||||
hdimage {
|
hdimage {
|
||||||
}
|
}
|
||||||
|
|
||||||
partition boot {
|
partition boot {
|
||||||
partition-type = 0xC
|
partition-type = 0xC
|
||||||
bootable = "true"
|
bootable = "true"
|
||||||
image = "boot.vfat"
|
image = "boot.vfat"
|
||||||
offset = 4M
|
offset = 4M
|
||||||
}
|
}
|
||||||
|
|
||||||
partition rootfs {
|
partition rootfs {
|
||||||
partition-type = 0x83
|
partition-type = 0x83
|
||||||
image = "rootfs.ext2"
|
image = "rootfs.ext2"
|
||||||
|
Loading…
Reference in New Issue
Block a user