diff options
| author | Peter Wemm <peter@FreeBSD.org> | 2002-08-29 02:02:28 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 2002-08-29 02:02:28 +0000 |
| commit | e581f644a4848cbb2fdcaa51833e39d7c9532e81 (patch) | |
| tree | c010a8baa5d6092d00ac00a8db1a49569921c34b /sys/boot | |
| parent | 0654f7911f4f467c96085a61eeab1a362281e233 (diff) | |
Notes
Diffstat (limited to 'sys/boot')
| -rw-r--r-- | sys/boot/common/Makefile.inc | 4 | ||||
| -rw-r--r-- | sys/boot/i386/libi386/Makefile | 2 | ||||
| -rw-r--r-- | sys/boot/i386/loader/Makefile | 3 | ||||
| -rw-r--r-- | sys/boot/i386/loader/conf.c | 2 | ||||
| -rw-r--r-- | sys/boot/pc98/libpc98/Makefile | 2 | ||||
| -rw-r--r-- | sys/boot/pc98/loader/Makefile | 3 |
6 files changed, 2 insertions, 14 deletions
diff --git a/sys/boot/common/Makefile.inc b/sys/boot/common/Makefile.inc index bf76992f52a75..3f6c910781289 100644 --- a/sys/boot/common/Makefile.inc +++ b/sys/boot/common/Makefile.inc @@ -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 diff --git a/sys/boot/i386/libi386/Makefile b/sys/boot/i386/libi386/Makefile index 1268e02eb5ad7..19fa0bf364717 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 0ad12764afe48..68b6e21eaef63 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 9e31735cf401a..bd703759f4360 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 }; diff --git a/sys/boot/pc98/libpc98/Makefile b/sys/boot/pc98/libpc98/Makefile index a09d0b7cdb3a4..e2991a1afe7eb 100644 --- a/sys/boot/pc98/libpc98/Makefile +++ b/sys/boot/pc98/libpc98/Makefile @@ -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 diff --git a/sys/boot/pc98/loader/Makefile b/sys/boot/pc98/loader/Makefile index eff2fece6f581..1e05ec581d709 100644 --- a/sys/boot/pc98/loader/Makefile +++ b/sys/boot/pc98/loader/Makefile @@ -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 |
