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.
This commit is contained in:
Peter Wemm 2002-08-29 02:02:28 +00:00
parent 0654f7911f
commit e581f644a4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=102556
6 changed files with 2 additions and 14 deletions

View file

@ -4,10 +4,6 @@ SRCS+= bcache.c boot.c commands.c console.c devopen.c interp.c
SRCS+= interp_backslash.c interp_parse.c load_elf.c ls.c misc.c
SRCS+= module.c panic.c
.if defined(LOADER_AOUT_SUPPORT)
SRCS+= load_aout.c
.endif
.if defined(LOADER_NET_SUPPORT)
SRCS+= dev_net.c
.endif

View file

@ -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

View file

@ -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

View file

@ -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
};

View file

@ -5,7 +5,7 @@ INTERNALLIB= true
.PATH: ${.CURDIR}/../../i386/libi386
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

View file

@ -6,9 +6,6 @@ STRIP=
NEWVERSWHAT= "bootstrap loader" pc98
BINDIR?= /boot
INSTALLFLAGS= -b
.if !defined(LOADER_NO_AOUT_SUPPORT)
LOADER_AOUT_SUPPORT= yes
.endif
CFLAGS+= -ffreestanding
CFLAGS+= -DPC98