MFi386: Add support for preloading ELF relocatable object format modules.

This commit is contained in:
Yoshihiro Takahashi 2004-10-24 12:14:05 +00:00
parent e1dd8f11d1
commit 8c3c8ed197

View File

@ -83,9 +83,11 @@ struct fs_ops *file_system[] = {
* rather than reading the file go first. * rather than reading the file go first.
*/ */
extern struct file_format i386_elf; extern struct file_format i386_elf;
extern struct file_format i386_elf_obj;
struct file_format *file_formats[] = { struct file_format *file_formats[] = {
&i386_elf, &i386_elf,
&i386_elf_obj,
NULL NULL
}; };