- Fix small syntax error in reset16.lds

- small bug fixes to the elf bootloader
- factor the elf bootloader into focused smal subroutines that are easier to comprehend
  and maintain
- Implement support for PT_NOTE headers and parsing ELF notes if we need special functionality
  An ELF Image should never need an ELF loader to interpret an ELF to work correctly, making
  interpretation of all ELF notes optional.
- Implement support for notes giving PROGRAM_NAME, PROGRAM_VERSION, and PROGRAM_CHECKSUM
This commit is contained in:
Eric W. Biederman 2002-01-22 17:51:31 +00:00
commit bf85f95212
7 changed files with 450 additions and 184 deletions

View file

@ -6,7 +6,7 @@
SECTIONS {
_ROMTOP = (_ROMBASE >= 0xffff0000)? 0xfffffff0 : 0xffff0;
. = _ROMTOP;
.reset (.): {
.reset . : {
*(.reset)
. = 15 ;
BYTE(0x00);