diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2020-12-02 19:29:50 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2020-12-04 13:39:34 +0000 |
commit | 5b2405a308f735014627a676d921bdfbbc335f4e (patch) | |
tree | a147bad1d4862c7433a767c47a16cb8d9ea3ec3e /src | |
parent | a4819cd0b30b64fe76002843371d2f8b44b7271a (diff) |
mb/amd/mandolin: use more readable size formats in FMAP files
Since the FMD file isn't parsed any more by a shell script in the SoC's
Makefile.inc, we can use better human-readable numbers for the section
sizes.
TEST=Timeless build results in identical image.
Change-Id: I2117064a694f67767284f6fd4ac3604b254a2734
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/48245
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/amd/mandolin/variants/cereme/board.fmd | 6 | ||||
-rw-r--r-- | src/mainboard/amd/mandolin/variants/mandolin/board.fmd | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/mainboard/amd/mandolin/variants/cereme/board.fmd b/src/mainboard/amd/mandolin/variants/cereme/board.fmd index b55b8b506a..442d80f341 100644 --- a/src/mainboard/amd/mandolin/variants/cereme/board.fmd +++ b/src/mainboard/amd/mandolin/variants/cereme/board.fmd @@ -1,8 +1,8 @@ FLASH@0xFF000000 16M { BIOS { - EC 0x20000 - RW_MRC_CACHE 0x10000 - FMAP 0x1000 + EC 128K + RW_MRC_CACHE 64K + FMAP 4K COREBOOT(CBFS) } } diff --git a/src/mainboard/amd/mandolin/variants/mandolin/board.fmd b/src/mainboard/amd/mandolin/variants/mandolin/board.fmd index 2845e640e5..33b281d37f 100644 --- a/src/mainboard/amd/mandolin/variants/mandolin/board.fmd +++ b/src/mainboard/amd/mandolin/variants/mandolin/board.fmd @@ -1,8 +1,8 @@ FLASH@0xFF800000 8M { BIOS { - EC 0x20000 + EC 128K RW_MRC_CACHE 64K - FMAP 0x1000 + FMAP 4K COREBOOT(CBFS) } } |