Bao Zheng has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/45780 )
Change subject: amdfwtool: Remove the assumption of ROM_SIZE ......................................................................
amdfwtool: Remove the assumption of ROM_SIZE
Every platform passes (and need to) the --flashsize to the command parameter, So we remove the macro definition.
Change-Id: I894e833ed23a7da38b36986b624e7dcdf1f4090c Signed-off-by: fishbaozi@gmail.com --- M util/amdfwtool/amdfwtool.c 1 file changed, 1 insertion(+), 7 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/80/45780/1
diff --git a/util/amdfwtool/amdfwtool.c b/util/amdfwtool/amdfwtool.c index 30ef90b..8fd0f15 100644 --- a/util/amdfwtool/amdfwtool.c +++ b/util/amdfwtool/amdfwtool.c @@ -57,10 +57,6 @@ #include <stdlib.h> #include <getopt.h>
-#ifndef CONFIG_ROM_SIZE -#define CONFIG_ROM_SIZE 0x400000 -#endif - #define AMD_ROMSIG_OFFSET 0x20000 #define MIN_ROM_KB 256
@@ -1330,9 +1326,7 @@ int fuse_defined = 0; int targetfd; char *output = NULL; - context ctx = { - .rom_size = CONFIG_ROM_SIZE, - }; + context ctx = { 0 }; /* Values cleared after each firmware or parameter, regardless if N/A */ uint8_t sub = 0, instance = 0; int abl_image = 0;