diff options
| author | Cédric Le Goater <clg@kaod.org> | 2020-10-02 11:14:40 +0200 |
|---|---|---|
| committer | David Gibson <david@gibson.dropbear.id.au> | 2020-10-09 10:15:06 +1100 |
| commit | 83fa6e2a9fb4359208ed1a2ac74589ef0271627a (patch) | |
| tree | 1e329f2203f7d5e5616d681465b19162d31acc0a | |
| parent | 35dce34fbc1cfa6a26f95b83f3a8949a4150412f (diff) | |
| download | focaccia-qemu-83fa6e2a9fb4359208ed1a2ac74589ef0271627a.tar.gz focaccia-qemu-83fa6e2a9fb4359208ed1a2ac74589ef0271627a.zip | |
ppc/pnv: Increase max firmware size
Builds enabling GCOV can be bigger than 4MB and the limit on FSP systems is 16MB. Signed-off-by: Cédric Le Goater <clg@kaod.org> Message-Id: <20201002091440.1349326-1-clg@kaod.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
| -rw-r--r-- | hw/ppc/pnv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ppc/pnv.c b/hw/ppc/pnv.c index 6670967e26..d9e52873ea 100644 --- a/hw/ppc/pnv.c +++ b/hw/ppc/pnv.c @@ -61,7 +61,7 @@ #define FW_FILE_NAME "skiboot.lid" #define FW_LOAD_ADDR 0x0 -#define FW_MAX_SIZE (4 * MiB) +#define FW_MAX_SIZE (16 * MiB) #define KERNEL_LOAD_ADDR 0x20000000 #define KERNEL_MAX_SIZE (256 * MiB) |