Added two fields that ease the kernel initialization of the preloaded images.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7503 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-05-10 16:50:20 +00:00
parent bf67cc9591
commit c2c0779e26

View File

@ -15,8 +15,12 @@ struct preloaded_image {
char *name;
elf_region text_region;
elf_region data_region;
addr_range dynamic_section; // pointer to the dynamic section
addr_range dynamic_section;
struct Elf32_Ehdr elf_header;
// these will be filled out in the kernel
area_id text;
area_id data;
};
#endif /* KERNEL_BOOT_ELF_H */