mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-19 21:22:10 +00:00
41 lines
570 B
INI
41 lines
570 B
INI
#
|
|
# This config reproduces the OpenBMC flash layout defined in Linux :
|
|
#
|
|
# arch/arm/boot/dts/openbmc-flash-layout.dtsi
|
|
#
|
|
# and included by aspeed-ast2500-evb.dts
|
|
#
|
|
flash nor-32M-256 {
|
|
pebsize = 4K
|
|
numpebs = 8K
|
|
minimum-io-unit-size = 256
|
|
}
|
|
|
|
image flash.img {
|
|
flash {
|
|
}
|
|
flashtype = "nor-32M-256"
|
|
|
|
partition uboot {
|
|
image = "u-boot.bin"
|
|
size = 384K
|
|
}
|
|
|
|
partition ubootenv {
|
|
/* TODO */
|
|
offset = 384K
|
|
size = 128K
|
|
}
|
|
|
|
partition fitimage {
|
|
image = "image.itb"
|
|
offset = 512K
|
|
size = 7000K
|
|
}
|
|
|
|
partition spare {
|
|
offset = 7512K
|
|
size = 25256K
|
|
}
|
|
}
|