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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=136890

View File

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