diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2009-06-10 21:56:01 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2009-06-10 21:56:01 -0400 |
commit | c0693941fdb5118164a8161316fdf8e9ebb499d2 (patch) | |
tree | 4c2ed73a666bed4a8742453262c5899f77f7bfde /src/pnpbios.c | |
parent | 0b04b78972939b8bf00c6b075b3592ea6b7dd643 (diff) | |
download | seabios-hppa-c0693941fdb5118164a8161316fdf8e9ebb499d2.zip seabios-hppa-c0693941fdb5118164a8161316fdf8e9ebb499d2.tar.gz seabios-hppa-c0693941fdb5118164a8161316fdf8e9ebb499d2.tar.bz2 |
Do garbage collection of unused sections.
Implement -ffunction-sections and -fdata-sections in both 32bit and
16bit code.
Make sure all sections have unique names (even asm and discarded
sections).
Enhance tools/layoutrom.py script to find all sections reachable from
exported 16bit code - prune all other sections.
Mark sections with "export" if they can be visible outside of code -
these sections wont be dropped when pruning unused sections.
Diffstat (limited to 'src/pnpbios.c')
-rw-r--r-- | src/pnpbios.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pnpbios.c b/src/pnpbios.c index b07b585..cf78f00 100644 --- a/src/pnpbios.c +++ b/src/pnpbios.c @@ -28,7 +28,7 @@ extern struct pnpheader PNPHEADER; extern char pnp_string[]; #if CONFIG_PNPBIOS -struct pnpheader PNPHEADER __aligned(16) VAR16_32 = { +struct pnpheader PNPHEADER __aligned(16) VAR16EXPORT = { .signature = PNP_SIGNATURE, .version = 0x10, .length = sizeof(PNPHEADER), |