diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2009-01-17 20:07:09 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2009-01-17 20:07:09 -0500 |
commit | df2c19ab31b5b9e52f30452d82f0bdd9b89db111 (patch) | |
tree | 2779c468f3411412b0df0381c9494904c08616ba /src/config.h | |
parent | f5d025a7e139c865f322c8565008187a553ec1a6 (diff) | |
download | seabios-hppa-df2c19ab31b5b9e52f30452d82f0bdd9b89db111.zip seabios-hppa-df2c19ab31b5b9e52f30452d82f0bdd9b89db111.tar.gz seabios-hppa-df2c19ab31b5b9e52f30452d82f0bdd9b89db111.tar.bz2 |
Reserve space for buffers in f-segment; don't allocate from freespace.
Define the e820list as a regular array.
Define a buffer for run-time built bios tables.
Reserving the space in advance should help prevent run-time errors
when space becomes tight.
Diffstat (limited to 'src/config.h')
-rw-r--r-- | src/config.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h index d573726..044e110 100644 --- a/src/config.h +++ b/src/config.h @@ -76,6 +76,8 @@ #define CONFIG_VGAHOOKS 0 // Maximum number of map entries in the e820 map #define CONFIG_MAX_E820 32 +// Space to reserve in f-segment for run-time built bios tables. +#define CONFIG_MAX_BIOSTABLE 512 /* define it if the (emulated) hardware supports SMM mode */ #define CONFIG_USE_SMM 1 |