summaryrefslogtreecommitdiffstats
path: root/sys/boot/i386
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2002-08-29 02:02:28 +0000
committerpeter <peter@FreeBSD.org>2002-08-29 02:02:28 +0000
commitd9c1d583948d87d54f5cc3d56497e04cb8474253 (patch)
treec010a8baa5d6092d00ac00a8db1a49569921c34b /sys/boot/i386
parent970672f6302174cb51c142fb6510accf86efc636 (diff)
downloadFreeBSD-src-d9c1d583948d87d54f5cc3d56497e04cb8474253.zip
FreeBSD-src-d9c1d583948d87d54f5cc3d56497e04cb8474253.tar.gz
Initiate deorbit burn of i386 a.out kld "support" in loader. Note that
this was quite broken, it never was updated for metadata support. The a.out kld file support was never really used, as it wasn't necessary. You could always load elf kld's, even in an a.out kernel.
Diffstat (limited to 'sys/boot/i386')
-rw-r--r--sys/boot/i386/libi386/Makefile2
-rw-r--r--sys/boot/i386/loader/Makefile3
-rw-r--r--sys/boot/i386/loader/conf.c2
3 files changed, 1 insertions, 6 deletions
diff --git a/sys/boot/i386/libi386/Makefile b/sys/boot/i386/libi386/Makefile
index 1268e02..19fa0bf 100644
--- a/sys/boot/i386/libi386/Makefile
+++ b/sys/boot/i386/libi386/Makefile
@@ -3,7 +3,7 @@
LIB= i386
INTERNALLIB= true
-SRCS= aout_freebsd.c biosacpi.c bioscd.c biosdisk.c biosmem.c biospnp.c \
+SRCS= biosacpi.c bioscd.c biosdisk.c biosmem.c biospnp.c \
biospci.c bootinfo.c comconsole.c devicename.c elf_freebsd.c gatea20.c \
i386_copy.c i386_module.c nullconsole.c pxe.c pxetramp.s \
time.c vidconsole.c
diff --git a/sys/boot/i386/loader/Makefile b/sys/boot/i386/loader/Makefile
index 0ad1276..68b6e21 100644
--- a/sys/boot/i386/loader/Makefile
+++ b/sys/boot/i386/loader/Makefile
@@ -6,9 +6,6 @@ STRIP=
NEWVERSWHAT= "bootstrap loader" i386
BINDIR?= /boot
INSTALLFLAGS= -b
-.if !defined(LOADER_NO_AOUT_SUPPORT)
-LOADER_AOUT_SUPPORT= yes
-.endif
# architecture-specific loader code
SRCS= main.c conf.c
diff --git a/sys/boot/i386/loader/conf.c b/sys/boot/i386/loader/conf.c
index 9e31735..bd70375 100644
--- a/sys/boot/i386/loader/conf.c
+++ b/sys/boot/i386/loader/conf.c
@@ -81,12 +81,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 file_format i386_aout;
extern struct file_format i386_elf;
struct file_format *file_formats[] = {
&i386_elf,
- &i386_aout,
NULL
};
OpenPOWER on IntegriCloud