summaryrefslogtreecommitdiffstats
path: root/sys/boot/i386/loader/conf.c
diff options
context:
space:
mode:
authorbp <bp@FreeBSD.org>2000-05-01 17:41:25 +0000
committerbp <bp@FreeBSD.org>2000-05-01 17:41:25 +0000
commit816e92565a65b81ec26724758fea6f694964d18f (patch)
tree1dc1dbf863d6b27d97804bdaca0c1d05f196c481 /sys/boot/i386/loader/conf.c
parent222439bc50eba6251adfdfbf06fc7474d33911ad (diff)
downloadFreeBSD-src-816e92565a65b81ec26724758fea6f694964d18f.zip
FreeBSD-src-816e92565a65b81ec26724758fea6f694964d18f.tar.gz
Update loader logic to distinguish modules vs. files.
Add support for module metadata. The old way of dependancy handling will be supported for a while. Reviewed by: peter
Diffstat (limited to 'sys/boot/i386/loader/conf.c')
-rw-r--r--sys/boot/i386/loader/conf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/boot/i386/loader/conf.c b/sys/boot/i386/loader/conf.c
index dfdcc2c..b9398a7 100644
--- a/sys/boot/i386/loader/conf.c
+++ b/sys/boot/i386/loader/conf.c
@@ -73,10 +73,10 @@ struct fs_ops *file_system[] = {
* Sort formats so that those that can detect based on arguments
* rather than reading the file go first.
*/
-extern struct module_format i386_aout;
-extern struct module_format i386_elf;
+extern struct file_format i386_aout;
+extern struct file_format i386_elf;
-struct module_format *module_formats[] = {
+struct file_format *file_formats[] = {
&i386_elf,
&i386_aout,
NULL
OpenPOWER on IntegriCloud