1993-08-21 22:24:24 +00:00
|
|
|
# This file tells config what files go into building a kernel,
|
|
|
|
# files marked standard are always included.
|
1993-06-12 14:58:17 +00:00
|
|
|
#
|
1999-08-28 01:08:13 +00:00
|
|
|
# $FreeBSD$
|
Mega-commit for Linux emulator update.. This has been stress tested under
netscape-2.0 for Linux running all the Java stuff. The scrollbars are now
working, at least on my machine. (whew! :-)
I'm uncomfortable with the size of this commit, but it's too
inter-dependant to easily seperate out.
The main changes:
COMPAT_LINUX is *GONE*. Most of the code has been moved out of the i386
machine dependent section into the linux emulator itself. The int 0x80
syscall code was almost identical to the lcall 7,0 code and a minor tweak
allows them to both be used with the same C code. All kernels can now
just modload the lkm and it'll DTRT without having to rebuild the kernel
first. Like IBCS2, you can statically compile it in with "options LINUX".
A pile of new syscalls implemented, including getdents(), llseek(),
readv(), writev(), msync(), personality(). The Linux-ELF libraries want
to use some of these.
linux_select() now obeys Linux semantics, ie: returns the time remaining
of the timeout value rather than leaving it the original value.
Quite a few bugs removed, including incorrect arguments being used in
syscalls.. eg: mixups between passing the sigset as an int, vs passing
it as a pointer and doing a copyin(), missing return values, unhandled
cases, SIOC* ioctls, etc.
The build for the code has changed. i386/conf/files now knows how
to build linux_genassym and generate linux_assym.h on the fly.
Supporting changes elsewhere in the kernel:
The user-mode signal trampoline has moved from the U area to immediately
below the top of the stack (below PS_STRINGS). This allows the different
binary emulations to have their own signal trampoline code (which gets rid
of the hardwired syscall 103 (sigreturn on BSD, syslog on Linux)) and so
that the emulator can provide the exact "struct sigcontext *" argument to
the program's signal handlers.
The sigstack's "ss_flags" now uses SS_DISABLE and SS_ONSTACK flags, which
have the same values as the re-used SA_DISABLE and SA_ONSTACK which are
intended for sigaction only. This enables the support of a SA_RESETHAND
flag to sigaction to implement the gross SYSV and Linux SA_ONESHOT signal
semantics where the signal handler is reset when it's triggered.
makesyscalls.sh no longer appends the struct sysentvec on the end of the
generated init_sysent.c code. It's a lot saner to have it in a seperate
file rather than trying to update the structure inside the awk script. :-)
At exec time, the dozen bytes or so of signal trampoline code are copied
to the top of the user's stack, rather than obtaining the trampoline code
the old way by getting a clone of the parent's user area. This allows
Linux and native binaries to freely exec each other without getting
trampolines mixed up.
1996-03-02 19:38:20 +00:00
|
|
|
#
|
1997-06-01 20:25:55 +00:00
|
|
|
# The long compile-with and dependency lines are required because of
|
|
|
|
# limitations in config: backslash-newline doesn't work in strings, and
|
|
|
|
# dependency lines other than the first are silently ignored.
|
|
|
|
#
|
1999-12-23 21:52:17 +00:00
|
|
|
linux_genassym.o optional compat_linux \
|
2000-01-09 08:24:27 +00:00
|
|
|
dependency "$S/i386/linux/linux_genassym.c" \
|
|
|
|
compile-with "${CC} ${CFLAGS} -c ${.IMPSRC}" \
|
Mega-commit for Linux emulator update.. This has been stress tested under
netscape-2.0 for Linux running all the Java stuff. The scrollbars are now
working, at least on my machine. (whew! :-)
I'm uncomfortable with the size of this commit, but it's too
inter-dependant to easily seperate out.
The main changes:
COMPAT_LINUX is *GONE*. Most of the code has been moved out of the i386
machine dependent section into the linux emulator itself. The int 0x80
syscall code was almost identical to the lcall 7,0 code and a minor tweak
allows them to both be used with the same C code. All kernels can now
just modload the lkm and it'll DTRT without having to rebuild the kernel
first. Like IBCS2, you can statically compile it in with "options LINUX".
A pile of new syscalls implemented, including getdents(), llseek(),
readv(), writev(), msync(), personality(). The Linux-ELF libraries want
to use some of these.
linux_select() now obeys Linux semantics, ie: returns the time remaining
of the timeout value rather than leaving it the original value.
Quite a few bugs removed, including incorrect arguments being used in
syscalls.. eg: mixups between passing the sigset as an int, vs passing
it as a pointer and doing a copyin(), missing return values, unhandled
cases, SIOC* ioctls, etc.
The build for the code has changed. i386/conf/files now knows how
to build linux_genassym and generate linux_assym.h on the fly.
Supporting changes elsewhere in the kernel:
The user-mode signal trampoline has moved from the U area to immediately
below the top of the stack (below PS_STRINGS). This allows the different
binary emulations to have their own signal trampoline code (which gets rid
of the hardwired syscall 103 (sigreturn on BSD, syslog on Linux)) and so
that the emulator can provide the exact "struct sigcontext *" argument to
the program's signal handlers.
The sigstack's "ss_flags" now uses SS_DISABLE and SS_ONSTACK flags, which
have the same values as the re-used SA_DISABLE and SA_ONSTACK which are
intended for sigaction only. This enables the support of a SA_RESETHAND
flag to sigaction to implement the gross SYSV and Linux SA_ONESHOT signal
semantics where the signal handler is reset when it's triggered.
makesyscalls.sh no longer appends the struct sysentvec on the end of the
generated init_sysent.c code. It's a lot saner to have it in a seperate
file rather than trying to update the structure inside the awk script. :-)
At exec time, the dozen bytes or so of signal trampoline code are copied
to the top of the user's stack, rather than obtaining the trampoline code
the old way by getting a clone of the parent's user area. This allows
Linux and native binaries to freely exec each other without getting
trampolines mixed up.
1996-03-02 19:38:20 +00:00
|
|
|
no-obj no-implicit-rule \
|
1999-12-23 21:52:17 +00:00
|
|
|
clean "linux_genassym.o"
|
Mega-commit for Linux emulator update.. This has been stress tested under
netscape-2.0 for Linux running all the Java stuff. The scrollbars are now
working, at least on my machine. (whew! :-)
I'm uncomfortable with the size of this commit, but it's too
inter-dependant to easily seperate out.
The main changes:
COMPAT_LINUX is *GONE*. Most of the code has been moved out of the i386
machine dependent section into the linux emulator itself. The int 0x80
syscall code was almost identical to the lcall 7,0 code and a minor tweak
allows them to both be used with the same C code. All kernels can now
just modload the lkm and it'll DTRT without having to rebuild the kernel
first. Like IBCS2, you can statically compile it in with "options LINUX".
A pile of new syscalls implemented, including getdents(), llseek(),
readv(), writev(), msync(), personality(). The Linux-ELF libraries want
to use some of these.
linux_select() now obeys Linux semantics, ie: returns the time remaining
of the timeout value rather than leaving it the original value.
Quite a few bugs removed, including incorrect arguments being used in
syscalls.. eg: mixups between passing the sigset as an int, vs passing
it as a pointer and doing a copyin(), missing return values, unhandled
cases, SIOC* ioctls, etc.
The build for the code has changed. i386/conf/files now knows how
to build linux_genassym and generate linux_assym.h on the fly.
Supporting changes elsewhere in the kernel:
The user-mode signal trampoline has moved from the U area to immediately
below the top of the stack (below PS_STRINGS). This allows the different
binary emulations to have their own signal trampoline code (which gets rid
of the hardwired syscall 103 (sigreturn on BSD, syslog on Linux)) and so
that the emulator can provide the exact "struct sigcontext *" argument to
the program's signal handlers.
The sigstack's "ss_flags" now uses SS_DISABLE and SS_ONSTACK flags, which
have the same values as the re-used SA_DISABLE and SA_ONSTACK which are
intended for sigaction only. This enables the support of a SA_RESETHAND
flag to sigaction to implement the gross SYSV and Linux SA_ONESHOT signal
semantics where the signal handler is reset when it's triggered.
makesyscalls.sh no longer appends the struct sysentvec on the end of the
generated init_sysent.c code. It's a lot saner to have it in a seperate
file rather than trying to update the structure inside the awk script. :-)
At exec time, the dozen bytes or so of signal trampoline code are copied
to the top of the user's stack, rather than obtaining the trampoline code
the old way by getting a clone of the parent's user area. This allows
Linux and native binaries to freely exec each other without getting
trampolines mixed up.
1996-03-02 19:38:20 +00:00
|
|
|
#
|
1999-12-23 21:52:17 +00:00
|
|
|
svr4_genassym.o optional compat_svr4 \
|
2000-01-09 08:24:27 +00:00
|
|
|
dependency "$S/i386/svr4/svr4_genassym.c" \
|
|
|
|
compile-with "${CC} ${CFLAGS} -c ${.IMPSRC}" \
|
1999-12-08 12:13:13 +00:00
|
|
|
no-obj no-implicit-rule \
|
1999-12-23 21:52:17 +00:00
|
|
|
clean "svr4_genassym.o"
|
1999-12-08 12:13:13 +00:00
|
|
|
#
|
1996-05-02 10:41:18 +00:00
|
|
|
linux_assym.h optional compat_linux \
|
2000-06-02 09:27:48 +00:00
|
|
|
dependency "$S/kern/genassym.sh linux_genassym.o" \
|
|
|
|
compile-with "sh $S/kern/genassym.sh linux_genassym.o > ${.TARGET}" \
|
Mega-commit for Linux emulator update.. This has been stress tested under
netscape-2.0 for Linux running all the Java stuff. The scrollbars are now
working, at least on my machine. (whew! :-)
I'm uncomfortable with the size of this commit, but it's too
inter-dependant to easily seperate out.
The main changes:
COMPAT_LINUX is *GONE*. Most of the code has been moved out of the i386
machine dependent section into the linux emulator itself. The int 0x80
syscall code was almost identical to the lcall 7,0 code and a minor tweak
allows them to both be used with the same C code. All kernels can now
just modload the lkm and it'll DTRT without having to rebuild the kernel
first. Like IBCS2, you can statically compile it in with "options LINUX".
A pile of new syscalls implemented, including getdents(), llseek(),
readv(), writev(), msync(), personality(). The Linux-ELF libraries want
to use some of these.
linux_select() now obeys Linux semantics, ie: returns the time remaining
of the timeout value rather than leaving it the original value.
Quite a few bugs removed, including incorrect arguments being used in
syscalls.. eg: mixups between passing the sigset as an int, vs passing
it as a pointer and doing a copyin(), missing return values, unhandled
cases, SIOC* ioctls, etc.
The build for the code has changed. i386/conf/files now knows how
to build linux_genassym and generate linux_assym.h on the fly.
Supporting changes elsewhere in the kernel:
The user-mode signal trampoline has moved from the U area to immediately
below the top of the stack (below PS_STRINGS). This allows the different
binary emulations to have their own signal trampoline code (which gets rid
of the hardwired syscall 103 (sigreturn on BSD, syslog on Linux)) and so
that the emulator can provide the exact "struct sigcontext *" argument to
the program's signal handlers.
The sigstack's "ss_flags" now uses SS_DISABLE and SS_ONSTACK flags, which
have the same values as the re-used SA_DISABLE and SA_ONSTACK which are
intended for sigaction only. This enables the support of a SA_RESETHAND
flag to sigaction to implement the gross SYSV and Linux SA_ONESHOT signal
semantics where the signal handler is reset when it's triggered.
makesyscalls.sh no longer appends the struct sysentvec on the end of the
generated init_sysent.c code. It's a lot saner to have it in a seperate
file rather than trying to update the structure inside the awk script. :-)
At exec time, the dozen bytes or so of signal trampoline code are copied
to the top of the user's stack, rather than obtaining the trampoline code
the old way by getting a clone of the parent's user area. This allows
Linux and native binaries to freely exec each other without getting
trampolines mixed up.
1996-03-02 19:38:20 +00:00
|
|
|
no-obj no-implicit-rule before-depend \
|
|
|
|
clean "linux_assym.h"
|
|
|
|
#
|
1999-12-08 12:13:13 +00:00
|
|
|
svr4_assym.h optional compat_svr4 \
|
2000-06-02 09:27:48 +00:00
|
|
|
dependency "$S/kern/genassym.sh svr4_genassym.o" \
|
|
|
|
compile-with "sh $S/kern/genassym.sh svr4_genassym.o > ${.TARGET}" \
|
1999-12-08 12:13:13 +00:00
|
|
|
no-obj no-implicit-rule before-depend \
|
|
|
|
clean "svr4_assym.h"
|
|
|
|
#
|
The second phase of syscons reorganization.
- Split syscons source code into manageable chunks and reorganize
some of complicated functions.
- Many static variables are moved to the softc structure.
- Added a new key function, PREV. When this key is pressed, the vty
immediately before the current vty will become foreground. Analogue
to PREV, which is usually assigned to the PrntScrn key.
PR: kern/10113
Submitted by: Christian Weisgerber <naddy@mips.rhein-neckar.de>
- Modified the kernel console input function sccngetc() so that it
handles function keys properly.
- Reorganized the screen update routine.
- VT switching code is reorganized. It now should be slightly more
robust than before.
- Added the DEVICE_RESUME function so that syscons no longer hooks the
APM resume event directly.
- New kernel configuration options: SC_NO_CUTPASTE, SC_NO_FONT_LOADING,
SC_NO_HISTORY and SC_NO_SYSMOUSE.
Various parts of syscons can be omitted so that the kernel size is
reduced.
SC_PIXEL_MODE
Made the VESA 800x600 mode an option, rather than a standard part of
syscons.
SC_DISABLE_DDBKEY
Disables the `debug' key combination.
SC_ALT_MOUSE_IMAGE
Inverse the character cell at the mouse cursor position in the text
console, rather than drawing an arrow on the screen.
Submitted by: Nick Hibma (n_hibma@FreeBSD.ORG)
SC_DFLT_FONT
makeoptions "SC_DFLT_FONT=_font_name_"
Include the named font as the default font of syscons. 16-line,
14-line and 8-line font data will be compiled in. This option replaces
the existing STD8X16FONT option, which loads 16-line font data only.
- The VGA driver is split into /sys/dev/fb/vga.c and /sys/isa/vga_isa.c.
- The video driver provides a set of ioctl commands to manipulate the
frame buffer.
- New kernel configuration option: VGA_WIDTH90
Enables 90 column modes: 90x25, 90x30, 90x43, 90x50, 90x60. These
modes are mot always supported by the video card.
PR: i386/7510
Submitted by: kbyanc@freedomnet.com and alexv@sui.gda.itesm.mx.
- The header file machine/console.h is reorganized; its contents is now
split into sys/fbio.h, sys/kbio.h (a new file) and sys/consio.h
(another new file). machine/console.h is still maintained for
compatibility reasons.
- Kernel console selection/installation routines are fixed and
slightly rebumped so that it should now be possible to switch between
the interanl kernel console (sc or vt) and a remote kernel console
(sio) again, as it was in 2.x, 3.0 and 3.1.
- Screen savers and splash screen decoders
Because of the header file reorganization described above, screen
savers and splash screen decoders are slightly modified. After this
update, /sys/modules/syscons/saver.h is no longer necessary and is
removed.
1999-06-22 14:14:06 +00:00
|
|
|
font.h optional sc_dflt_font \
|
|
|
|
compile-with "uudecode < /usr/share/syscons/fonts/${SC_DFLT_FONT}-8x16.fnt && file2c 'static u_char dflt_font_16[16*256] = {' '};' < ${SC_DFLT_FONT}-8x16 > font.h && uudecode < /usr/share/syscons/fonts/${SC_DFLT_FONT}-8x14.fnt && file2c 'static u_char dflt_font_14[14*256] = {' '};' < ${SC_DFLT_FONT}-8x14 >> font.h && uudecode < /usr/share/syscons/fonts/${SC_DFLT_FONT}-8x8.fnt && file2c 'static u_char dflt_font_8[8*256] = {' '};' < ${SC_DFLT_FONT}-8x8 >> font.h" \
|
|
|
|
no-obj no-implicit-rule before-depend \
|
2000-03-23 15:42:24 +00:00
|
|
|
clean "font.h ${SC_DFLT_FONT}-8x14 ${SC_DFLT_FONT}-8x16 ${SC_DFLT_FONT}-8x8"
|
1997-07-25 11:53:30 +00:00
|
|
|
#
|
Keyboard driver update in preparation for the USB keyboard driver.
- Refined internal interface in keyboard drivers so that:
1. the side effect of device probe is kept minimal,
2. polling mode function is added,
3. and new ioctl and configuration options are added (see below).
- Added new ioctl: KDSETREPEAT
Set keyboard typematic rate. There has existed an ioctl command,
KDSETRAD, for the same purpose. However, KDSETRAD is dependent on
the AT keyboard. KDSETREPEAT provides more generic interface.
KDSETRAD will still be supported in the atkbd driver.
- Added new configuration options:
ATKBD_DFLT_KEYMAP
Specify a keymap to be used as the default, built-in keymap.
(There has been undocumented options, DKKEYMAP, UKKEYMAP, GRKEYMAP,
SWKEYMAP, RUKEYMAP, ESKEYMAP, and ISKEYMAP to set the default keymap.
These options are now gone for good. The new option is more general.)
KBD_DISABLE_KEYMAP_LOADING
Don't allow the user to change the keymap.
1999-03-10 10:36:53 +00:00
|
|
|
atkbdmap.h optional atkbd_dflt_keymap \
|
2000-02-10 01:42:04 +00:00
|
|
|
compile-with "/usr/sbin/kbdcontrol -L ${ATKBD_DFLT_KEYMAP} | sed -e 's/^static keymap_t.* = /static keymap_t key_map = /' -e 's/^static accentmap_t.* = /static accentmap_t accent_map = /' > atkbdmap.h" \
|
Keyboard driver update in preparation for the USB keyboard driver.
- Refined internal interface in keyboard drivers so that:
1. the side effect of device probe is kept minimal,
2. polling mode function is added,
3. and new ioctl and configuration options are added (see below).
- Added new ioctl: KDSETREPEAT
Set keyboard typematic rate. There has existed an ioctl command,
KDSETRAD, for the same purpose. However, KDSETRAD is dependent on
the AT keyboard. KDSETREPEAT provides more generic interface.
KDSETRAD will still be supported in the atkbd driver.
- Added new configuration options:
ATKBD_DFLT_KEYMAP
Specify a keymap to be used as the default, built-in keymap.
(There has been undocumented options, DKKEYMAP, UKKEYMAP, GRKEYMAP,
SWKEYMAP, RUKEYMAP, ESKEYMAP, and ISKEYMAP to set the default keymap.
These options are now gone for good. The new option is more general.)
KBD_DISABLE_KEYMAP_LOADING
Don't allow the user to change the keymap.
1999-03-10 10:36:53 +00:00
|
|
|
no-obj no-implicit-rule before-depend \
|
|
|
|
clean "atkbdmap.h"
|
|
|
|
#
|
|
|
|
ukbdmap.h optional ukbd_dflt_keymap \
|
2000-02-10 01:42:04 +00:00
|
|
|
compile-with "/usr/sbin/kbdcontrol -L ${UKBD_DFLT_KEYMAP} | sed -e 's/^static keymap_t.* = /static keymap_t key_map = /' -e 's/^static accentmap_t.* = /static accentmap_t accent_map = /' > ukbdmap.h" \
|
Keyboard driver update in preparation for the USB keyboard driver.
- Refined internal interface in keyboard drivers so that:
1. the side effect of device probe is kept minimal,
2. polling mode function is added,
3. and new ioctl and configuration options are added (see below).
- Added new ioctl: KDSETREPEAT
Set keyboard typematic rate. There has existed an ioctl command,
KDSETRAD, for the same purpose. However, KDSETRAD is dependent on
the AT keyboard. KDSETREPEAT provides more generic interface.
KDSETRAD will still be supported in the atkbd driver.
- Added new configuration options:
ATKBD_DFLT_KEYMAP
Specify a keymap to be used as the default, built-in keymap.
(There has been undocumented options, DKKEYMAP, UKKEYMAP, GRKEYMAP,
SWKEYMAP, RUKEYMAP, ESKEYMAP, and ISKEYMAP to set the default keymap.
These options are now gone for good. The new option is more general.)
KBD_DISABLE_KEYMAP_LOADING
Don't allow the user to change the keymap.
1999-03-10 10:36:53 +00:00
|
|
|
no-obj no-implicit-rule before-depend \
|
|
|
|
clean "ukbdmap.h"
|
|
|
|
#
|
1999-07-26 07:43:26 +00:00
|
|
|
contrib/dev/fla/fla.c optional fla
|
|
|
|
msysosak.o optional fla \
|
|
|
|
dependency "$S/contrib/dev/fla/i386/msysosak.o.uu" \
|
|
|
|
compile-with "uudecode < $S/contrib/dev/fla/i386/msysosak.o.uu" \
|
|
|
|
no-implicit-rule
|
|
|
|
#
|
1999-07-03 19:19:34 +00:00
|
|
|
contrib/dev/oltr/if_oltr.c optional oltr
|
|
|
|
trlld.o optional oltr \
|
2000-01-09 07:50:42 +00:00
|
|
|
dependency "$S/contrib/dev/oltr/i386${FMT}.trlld.o.uu" \
|
|
|
|
compile-with "uudecode < $S/contrib/dev/oltr/i386${FMT}.trlld.o.uu" \
|
1999-06-29 16:14:20 +00:00
|
|
|
no-implicit-rule
|
1999-07-03 19:19:34 +00:00
|
|
|
contrib/dev/oltr/trlldbm.c optional oltr
|
|
|
|
contrib/dev/oltr/trlldhm.c optional oltr
|
|
|
|
contrib/dev/oltr/trlldmac.c optional oltr
|
2000-04-07 11:32:42 +00:00
|
|
|
dev/advansys/adv_isa.c optional adv isa
|
2000-03-29 14:32:34 +00:00
|
|
|
dev/aic/aic_isa.c optional aic isa
|
2000-06-10 22:13:40 +00:00
|
|
|
dev/ata/ata-all.c count ata
|
|
|
|
dev/ata/ata-disk.c count atadisk
|
|
|
|
dev/ata/ata-dma.c optional ata
|
|
|
|
dev/ata/atapi-all.c count atapicd
|
|
|
|
dev/ata/atapi-all.c count atapifd
|
|
|
|
dev/ata/atapi-all.c count atapist
|
1999-07-03 19:19:34 +00:00
|
|
|
dev/ata/atapi-cd.c optional atapicd
|
|
|
|
dev/ata/atapi-fd.c optional atapifd
|
|
|
|
dev/ata/atapi-tape.c optional atapist
|
1999-09-27 03:11:36 +00:00
|
|
|
dev/ed/if_ed.c optional ed
|
1999-10-15 03:12:48 +00:00
|
|
|
dev/ed/if_ed_isa.c optional ed isa
|
1999-10-25 02:41:58 +00:00
|
|
|
dev/ed/if_ed_pccard.c optional ed card
|
2000-06-10 22:13:40 +00:00
|
|
|
dev/eisa/eisaconf.c count eisa
|
1999-07-03 19:19:34 +00:00
|
|
|
dev/fb/fb.c optional fb
|
|
|
|
dev/fb/fb.c optional vga
|
2000-06-10 22:13:40 +00:00
|
|
|
dev/fb/splash.c count splash
|
1999-07-03 19:19:34 +00:00
|
|
|
dev/fb/vga.c optional vga
|
|
|
|
dev/kbd/atkbd.c optional atkbd
|
2000-06-10 22:13:40 +00:00
|
|
|
dev/kbd/atkbdc.c count atkbdc
|
1999-07-03 19:19:34 +00:00
|
|
|
dev/kbd/kbd.c optional atkbd
|
|
|
|
dev/kbd/kbd.c optional kbd
|
1999-12-13 13:01:00 +00:00
|
|
|
dev/kbd/kbd.c optional sc
|
1999-07-03 19:19:34 +00:00
|
|
|
dev/kbd/kbd.c optional ukbd
|
1999-12-13 13:01:00 +00:00
|
|
|
dev/kbd/kbd.c optional vt
|
2000-06-10 22:13:40 +00:00
|
|
|
dev/syscons/schistory.c count sc
|
1999-07-03 19:19:34 +00:00
|
|
|
dev/syscons/scmouse.c optional sc
|
2000-01-15 15:25:43 +00:00
|
|
|
dev/syscons/scterm.c optional sc
|
|
|
|
dev/syscons/scterm-dumb.c optional sc
|
|
|
|
dev/syscons/scterm-sc.c optional sc
|
2000-01-29 15:04:33 +00:00
|
|
|
dev/syscons/scvesactl.c optional sc vga vesa
|
|
|
|
dev/syscons/scvgarndr.c optional sc vga
|
1999-07-03 19:19:34 +00:00
|
|
|
dev/syscons/scvidctl.c optional sc
|
|
|
|
dev/syscons/scvtb.c optional sc
|
|
|
|
dev/syscons/syscons.c optional sc
|
2000-01-15 15:25:43 +00:00
|
|
|
dev/syscons/sysmouse.c optional sc
|
1999-06-29 16:14:20 +00:00
|
|
|
gnu/i386/fpemul/div_small.s optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/errors.c optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/fpu_arith.c optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/fpu_aux.c optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/fpu_entry.c optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/fpu_etc.c optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/fpu_trig.c optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/get_address.c optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/load_store.c optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/poly_2xm1.c optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/poly_atan.c optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/poly_div.s optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/poly_l2.c optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/poly_mul64.s optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/poly_sin.c optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/poly_tan.c optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/polynomial.s optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/reg_add_sub.c optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/reg_compare.c optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/reg_constant.c optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/reg_div.s optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/reg_ld_str.c optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/reg_mul.c optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/reg_norm.s optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/reg_round.s optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/reg_u_add.s optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/reg_u_div.s optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/reg_u_mul.s optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/reg_u_sub.s optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/wm_shrx.s optional gpl_math_emulate
|
|
|
|
gnu/i386/fpemul/wm_sqrt.s optional gpl_math_emulate
|
2000-06-10 22:13:40 +00:00
|
|
|
gnu/i386/isa/dgb.c count dgb
|
|
|
|
gnu/i386/isa/dgm.c count dgm
|
1999-07-03 19:19:34 +00:00
|
|
|
gnu/i386/isa/sound/awe_wave.c optional awe
|
2000-06-10 22:13:40 +00:00
|
|
|
i386/apm/apm.c count apm
|
1999-08-18 04:08:31 +00:00
|
|
|
i386/i386/atomic.c standard \
|
2000-01-09 08:24:27 +00:00
|
|
|
compile-with "${CC} -c ${CFLAGS} ${DEFINED_PROF:S/^$/-fomit-frame-pointer/} ${.IMPSRC}"
|
1999-07-03 19:19:34 +00:00
|
|
|
i386/i386/autoconf.c standard
|
1997-08-01 06:04:34 +00:00
|
|
|
i386/i386/bios.c standard
|
|
|
|
i386/i386/bioscall.s standard
|
1998-01-15 07:30:54 +00:00
|
|
|
i386/i386/busdma_machdep.c standard
|
1993-06-12 14:58:17 +00:00
|
|
|
i386/i386/db_disasm.c optional ddb
|
|
|
|
i386/i386/db_interface.c optional ddb
|
|
|
|
i386/i386/db_trace.c optional ddb
|
1998-10-09 23:08:14 +00:00
|
|
|
i386/i386/elf_machdep.c standard
|
1994-08-30 17:18:34 +00:00
|
|
|
i386/i386/exception.s standard
|
1998-04-06 15:49:35 +00:00
|
|
|
i386/i386/globals.s standard
|
|
|
|
i386/i386/i386-gdbstub.c optional ddb
|
1999-06-29 16:14:20 +00:00
|
|
|
i386/i386/i686_mem.c standard
|
1996-07-08 19:44:39 +00:00
|
|
|
i386/i386/identcpu.c standard
|
1993-06-12 14:58:17 +00:00
|
|
|
i386/i386/in_cksum.c optional inet
|
1997-03-22 18:54:54 +00:00
|
|
|
i386/i386/initcpu.c standard
|
2000-03-19 19:22:24 +00:00
|
|
|
i386/i386/k6_mem.c standard
|
1994-08-30 17:18:34 +00:00
|
|
|
# locore.s needs to be handled in Makefile to put it first. Otherwise it's
|
|
|
|
# now normal.
|
|
|
|
# i386/i386/locore.s standard
|
|
|
|
i386/i386/machdep.c standard
|
1993-08-28 13:21:48 +00:00
|
|
|
i386/i386/math_emulate.c optional math_emulate
|
1993-06-12 14:58:17 +00:00
|
|
|
i386/i386/mem.c standard
|
1999-09-20 07:52:39 +00:00
|
|
|
i386/i386/mp_clock.c optional smp
|
1997-04-26 11:46:25 +00:00
|
|
|
i386/i386/mp_machdep.c optional smp
|
|
|
|
i386/i386/mpapic.c optional smp
|
|
|
|
i386/i386/mpboot.s optional smp
|
|
|
|
i386/i386/mplock.s optional smp
|
1999-04-16 21:22:55 +00:00
|
|
|
i386/i386/nexus.c standard
|
1996-03-26 19:57:56 +00:00
|
|
|
i386/i386/perfmon.c optional perfmon
|
1999-06-29 16:14:20 +00:00
|
|
|
i386/i386/perfmon.c optional perfmon profiling-routine
|
1993-06-12 14:58:17 +00:00
|
|
|
i386/i386/pmap.c standard
|
1996-01-24 18:47:58 +00:00
|
|
|
i386/i386/procfs_machdep.c standard
|
1997-07-24 23:45:17 +00:00
|
|
|
i386/i386/simplelock.s optional smp
|
1994-08-30 17:18:34 +00:00
|
|
|
i386/i386/support.s standard
|
|
|
|
i386/i386/swtch.s standard
|
1993-06-12 14:58:17 +00:00
|
|
|
i386/i386/sys_machdep.c standard
|
|
|
|
i386/i386/trap.c standard
|
1996-09-11 19:53:45 +00:00
|
|
|
i386/i386/userconfig.c optional userconfig
|
1999-06-01 18:18:39 +00:00
|
|
|
i386/i386/vm86.c standard
|
1999-06-29 16:14:20 +00:00
|
|
|
i386/i386/vm_machdep.c standard
|
|
|
|
i386/ibcs2/ibcs2_errno.c optional ibcs2
|
|
|
|
i386/ibcs2/ibcs2_fcntl.c optional ibcs2
|
|
|
|
i386/ibcs2/ibcs2_ioctl.c optional ibcs2
|
|
|
|
i386/ibcs2/ibcs2_ipc.c optional ibcs2
|
|
|
|
i386/ibcs2/ibcs2_isc.c optional ibcs2
|
|
|
|
i386/ibcs2/ibcs2_isc_sysent.c optional ibcs2
|
|
|
|
i386/ibcs2/ibcs2_misc.c optional ibcs2
|
|
|
|
i386/ibcs2/ibcs2_msg.c optional ibcs2
|
|
|
|
i386/ibcs2/ibcs2_other.c optional ibcs2
|
|
|
|
i386/ibcs2/ibcs2_signal.c optional ibcs2
|
|
|
|
i386/ibcs2/ibcs2_socksys.c optional ibcs2
|
|
|
|
i386/ibcs2/ibcs2_stat.c optional ibcs2
|
|
|
|
i386/ibcs2/ibcs2_sysent.c optional ibcs2
|
|
|
|
i386/ibcs2/ibcs2_sysi86.c optional ibcs2
|
|
|
|
i386/ibcs2/ibcs2_sysvec.c optional ibcs2
|
|
|
|
i386/ibcs2/ibcs2_util.c optional ibcs2
|
|
|
|
i386/ibcs2/ibcs2_xenix.c optional ibcs2
|
|
|
|
i386/ibcs2/ibcs2_xenix_sysent.c optional ibcs2
|
1994-08-24 11:44:45 +00:00
|
|
|
i386/ibcs2/imgact_coff.c optional ibcs2
|
2000-06-10 22:13:40 +00:00
|
|
|
i386/isa/asc.c count asc
|
1993-06-12 14:58:17 +00:00
|
|
|
i386/isa/clock.c standard
|
1999-07-03 19:19:34 +00:00
|
|
|
i386/isa/cronyx.c optional cx
|
2000-06-10 22:13:40 +00:00
|
|
|
i386/isa/ctx.c count ctx
|
|
|
|
i386/isa/cx.c count cx
|
|
|
|
i386/isa/cy.c count cy
|
1999-07-03 19:19:34 +00:00
|
|
|
i386/isa/elink.c optional ep
|
|
|
|
i386/isa/elink.c optional ie
|
|
|
|
i386/isa/gpib.c optional gp
|
2000-06-10 22:13:40 +00:00
|
|
|
i386/isa/gsc.c count gsc
|
1999-07-03 19:19:34 +00:00
|
|
|
i386/isa/if_ar.c optional ar
|
|
|
|
i386/isa/if_cx.c optional cx
|
2000-06-10 22:13:40 +00:00
|
|
|
i386/isa/if_el.c count el
|
|
|
|
i386/isa/if_fe.c count fe
|
|
|
|
i386/isa/if_le.c count le
|
|
|
|
i386/isa/if_rdp.c count rdp
|
|
|
|
i386/isa/if_sr.c count sr
|
1999-11-25 20:45:49 +00:00
|
|
|
i386/isa/if_wi.c optional wi card
|
2000-06-10 22:13:40 +00:00
|
|
|
i386/isa/if_wl.c count wl
|
1999-10-25 02:41:58 +00:00
|
|
|
i386/isa/if_wlp.c optional wlp
|
1999-06-29 16:14:20 +00:00
|
|
|
i386/isa/intr_machdep.c standard
|
1997-06-01 20:25:55 +00:00
|
|
|
i386/isa/ipl_funcs.c standard \
|
2000-01-09 08:24:27 +00:00
|
|
|
compile-with "${CC} -c ${CFLAGS} ${DEFINED_PROF:S/^$/-fomit-frame-pointer/} ${.IMPSRC}"
|
1999-07-03 19:19:34 +00:00
|
|
|
i386/isa/isa.c optional isa
|
2000-03-20 04:47:40 +00:00
|
|
|
i386/isa/isa_compat.c optional isa compat_oldisa \
|
|
|
|
warning "Old ISA driver compatability shims present."
|
1999-07-03 19:19:34 +00:00
|
|
|
i386/isa/isa_dma.c optional isa
|
|
|
|
i386/isa/istallion.c optional stli
|
2000-06-10 22:13:40 +00:00
|
|
|
i386/isa/labpc.c count labpc
|
1999-07-03 19:19:34 +00:00
|
|
|
i386/isa/loran.c optional loran
|
2000-06-10 22:13:40 +00:00
|
|
|
i386/isa/matcd/matcd.c count matcd
|
|
|
|
i386/isa/mca_machdep.c count mca
|
|
|
|
i386/isa/mcd.c count mcd
|
1999-07-03 19:19:34 +00:00
|
|
|
i386/isa/mse.c optional mse
|
|
|
|
i386/isa/npx.c mandatory npx
|
|
|
|
i386/isa/pcaudio.c optional pca
|
|
|
|
i386/isa/pcf.c optional pcf
|
|
|
|
i386/isa/pcibus.c optional pci
|
|
|
|
i386/isa/pcvt/pcvt_drv.c optional vt
|
|
|
|
i386/isa/pcvt/pcvt_ext.c optional vt
|
|
|
|
i386/isa/pcvt/pcvt_kbd.c optional vt
|
|
|
|
i386/isa/pcvt/pcvt_out.c optional vt
|
|
|
|
i386/isa/pcvt/pcvt_sup.c optional vt
|
|
|
|
i386/isa/pcvt/pcvt_vtf.c optional vt
|
1999-06-29 16:14:20 +00:00
|
|
|
i386/isa/prof_machdep.c optional profiling-routine
|
2000-06-10 22:13:40 +00:00
|
|
|
i386/isa/rc.c count rc
|
2000-06-11 06:43:16 +00:00
|
|
|
#i386/isa/rp.c optional rp
|
2000-06-10 22:13:40 +00:00
|
|
|
i386/isa/scd.c count scd
|
1999-07-03 19:19:34 +00:00
|
|
|
i386/isa/sound/ad1848.c optional css
|
|
|
|
i386/isa/sound/ad1848.c optional gus
|
|
|
|
i386/isa/sound/ad1848.c optional gusxvi
|
|
|
|
i386/isa/sound/ad1848.c optional mss
|
|
|
|
i386/isa/sound/ad1848.c optional sscape
|
|
|
|
i386/isa/sound/ad1848.c optional sscape_mss
|
2000-03-23 19:03:26 +00:00
|
|
|
i386/isa/sound/ad1848.c optional trix
|
1999-07-03 19:19:34 +00:00
|
|
|
i386/isa/sound/adlib_card.c optional opl
|
|
|
|
i386/isa/sound/adlib_card.c optional trix
|
2000-01-18 08:31:40 +00:00
|
|
|
i386/isa/sound/audio.c optional snd \
|
|
|
|
warning "The snd drivers are deprecated. Please see pcm/sbc/etc."
|
1999-07-03 19:19:34 +00:00
|
|
|
i386/isa/sound/cs4232.c optional css
|
|
|
|
i386/isa/sound/dev_table.c optional snd
|
|
|
|
i386/isa/sound/dmabuf.c optional snd
|
|
|
|
i386/isa/sound/gus_card.c optional gus
|
|
|
|
i386/isa/sound/gus_midi.c optional gus
|
|
|
|
i386/isa/sound/gus_vol.c optional gus
|
|
|
|
i386/isa/sound/gus_wave.c optional gus
|
|
|
|
i386/isa/sound/ics2101.c optional gus
|
|
|
|
i386/isa/sound/midi_synth.c optional css
|
|
|
|
i386/isa/sound/midi_synth.c optional gus
|
|
|
|
i386/isa/sound/midi_synth.c optional mpu
|
|
|
|
i386/isa/sound/midi_synth.c optional mss
|
|
|
|
i386/isa/sound/midi_synth.c optional pas
|
|
|
|
i386/isa/sound/midi_synth.c optional sb
|
|
|
|
i386/isa/sound/midi_synth.c optional sscape
|
|
|
|
i386/isa/sound/midi_synth.c optional uart
|
|
|
|
i386/isa/sound/midibuf.c optional css
|
|
|
|
i386/isa/sound/midibuf.c optional gus
|
|
|
|
i386/isa/sound/midibuf.c optional mpu
|
|
|
|
i386/isa/sound/midibuf.c optional mss
|
|
|
|
i386/isa/sound/midibuf.c optional pas
|
|
|
|
i386/isa/sound/midibuf.c optional sb
|
|
|
|
i386/isa/sound/midibuf.c optional sscape
|
|
|
|
i386/isa/sound/midibuf.c optional uart
|
|
|
|
i386/isa/sound/mpu401.c optional mpu
|
|
|
|
i386/isa/sound/mpu401.c optional sscape
|
|
|
|
i386/isa/sound/opl3.c optional opl
|
|
|
|
i386/isa/sound/opl3.c optional trix
|
|
|
|
i386/isa/sound/pas2_card.c optional pas
|
|
|
|
i386/isa/sound/pas2_midi.c optional pas
|
|
|
|
i386/isa/sound/pas2_mixer.c optional pas
|
|
|
|
i386/isa/sound/pas2_pcm.c optional pas
|
|
|
|
i386/isa/sound/patmgr.c optional snd
|
|
|
|
i386/isa/sound/sb16_dsp.c optional sbxvi
|
|
|
|
i386/isa/sound/sb16_midi.c optional sbmidi
|
|
|
|
i386/isa/sound/sb_card.c optional sb
|
|
|
|
i386/isa/sound/sb_dsp.c optional sb
|
|
|
|
i386/isa/sound/sb_midi.c optional sb
|
|
|
|
i386/isa/sound/sb_mixer.c optional sb
|
|
|
|
i386/isa/sound/sequencer.c optional snd
|
|
|
|
i386/isa/sound/sound_switch.c optional snd
|
|
|
|
i386/isa/sound/sound_timer.c optional css
|
|
|
|
i386/isa/sound/sound_timer.c optional gus
|
|
|
|
i386/isa/sound/sound_timer.c optional mss
|
|
|
|
i386/isa/sound/sound_timer.c optional mss
|
|
|
|
i386/isa/sound/sound_timer.c optional sscape
|
|
|
|
i386/isa/sound/sound_timer.c optional trix
|
|
|
|
i386/isa/sound/soundcard.c optional snd
|
|
|
|
i386/isa/sound/sscape.c optional sscape
|
|
|
|
i386/isa/sound/sys_timer.c optional snd
|
|
|
|
i386/isa/sound/trix.c optional trix
|
|
|
|
i386/isa/sound/uart6850.c optional uart
|
2000-06-10 22:13:40 +00:00
|
|
|
i386/isa/spigot.c count spigot
|
1999-07-03 19:19:34 +00:00
|
|
|
i386/isa/spkr.c optional speaker
|
|
|
|
i386/isa/stallion.c optional stl
|
2000-06-10 22:13:40 +00:00
|
|
|
i386/isa/tw.c count tw
|
2000-01-29 15:04:33 +00:00
|
|
|
i386/isa/vesa.c optional vga vesa
|
2000-06-10 22:13:40 +00:00
|
|
|
i386/isa/wt.c count wt
|
1996-05-02 10:41:18 +00:00
|
|
|
i386/linux/imgact_linux.c optional compat_linux
|
|
|
|
i386/linux/linux_dummy.c optional compat_linux
|
|
|
|
i386/linux/linux_file.c optional compat_linux
|
|
|
|
i386/linux/linux_ioctl.c optional compat_linux
|
|
|
|
i386/linux/linux_ipc.c optional compat_linux
|
1997-06-01 20:25:55 +00:00
|
|
|
i386/linux/linux_locore.s optional compat_linux \
|
1996-03-15 07:49:02 +00:00
|
|
|
dependency "linux_assym.h"
|
1999-08-27 19:47:41 +00:00
|
|
|
i386/linux/linux_mib.c optional compat_linux
|
1996-05-02 10:41:18 +00:00
|
|
|
i386/linux/linux_misc.c optional compat_linux
|
|
|
|
i386/linux/linux_signal.c optional compat_linux
|
|
|
|
i386/linux/linux_socket.c optional compat_linux
|
|
|
|
i386/linux/linux_stats.c optional compat_linux
|
|
|
|
i386/linux/linux_sysent.c optional compat_linux
|
|
|
|
i386/linux/linux_sysvec.c optional compat_linux
|
|
|
|
i386/linux/linux_util.c optional compat_linux
|
1999-12-08 12:13:13 +00:00
|
|
|
i386/svr4/svr4_locore.s optional compat_svr4 \
|
|
|
|
dependency "svr4_assym.h"
|
|
|
|
i386/svr4/svr4_machdep.c optional compat_svr4
|
1999-08-07 12:19:41 +00:00
|
|
|
i4b/layer1/i4b_asuscom_ipac.c optional isic
|
|
|
|
i4b/layer1/i4b_avm_a1.c optional isic
|
|
|
|
i4b/layer1/i4b_avm_fritz_pci.c optional isic
|
1999-12-14 20:52:41 +00:00
|
|
|
#i4b/layer1/i4b_avm_fritz_pcmcia.c optional isic
|
|
|
|
#i4b/layer1/i4b_avm_fritz_pnp.c optional isic
|
1999-08-07 12:19:41 +00:00
|
|
|
i4b/layer1/i4b_bchan.c optional isic
|
|
|
|
i4b/layer1/i4b_ctx_s0P.c optional isic
|
|
|
|
i4b/layer1/i4b_drn_ngo.c optional isic
|
1999-12-14 20:52:41 +00:00
|
|
|
#i4b/layer1/i4b_dynalink.c optional isic
|
2000-03-23 19:03:26 +00:00
|
|
|
i4b/layer1/i4b_elsa_pcc16.c optional isic
|
1999-08-07 12:19:41 +00:00
|
|
|
i4b/layer1/i4b_elsa_qs1i.c optional isic
|
|
|
|
i4b/layer1/i4b_elsa_qs1p.c optional isic
|
|
|
|
i4b/layer1/i4b_hscx.c optional isic
|
|
|
|
i4b/layer1/i4b_isac.c optional isic
|
2000-06-10 22:13:40 +00:00
|
|
|
i4b/layer1/i4b_isic.c count isic
|
1999-08-07 12:19:41 +00:00
|
|
|
i4b/layer1/i4b_isic_isa.c optional isic
|
1999-12-14 20:52:41 +00:00
|
|
|
#i4b/layer1/i4b_isic_pcmcia.c optional isic
|
1999-08-07 12:19:41 +00:00
|
|
|
i4b/layer1/i4b_isic_pnp.c optional isic
|
1999-12-14 20:52:41 +00:00
|
|
|
#i4b/layer1/i4b_itk_ix1.c optional isic
|
1999-08-07 12:19:41 +00:00
|
|
|
i4b/layer1/i4b_l1.c optional isic
|
|
|
|
i4b/layer1/i4b_l1fsm.c optional isic
|
|
|
|
i4b/layer1/i4b_siemens_isurf.c optional isic
|
|
|
|
i4b/layer1/i4b_sws.c optional isic
|
|
|
|
i4b/layer1/i4b_tel_s016.c optional isic
|
|
|
|
i4b/layer1/i4b_tel_s0163.c optional isic
|
|
|
|
i4b/layer1/i4b_tel_s08.c optional isic
|
2000-02-21 02:10:10 +00:00
|
|
|
i4b/layer1/i4b_usr_sti.c optional isic
|
1999-07-03 19:19:34 +00:00
|
|
|
isa/atkbd_isa.c optional atkbd
|
|
|
|
isa/atkbdc_isa.c optional atkbdc
|
2000-06-10 22:13:40 +00:00
|
|
|
isa/fd.c optional fdc
|
2000-01-25 22:25:52 +00:00
|
|
|
isa/ppc.c optional ppc
|
1999-07-03 19:19:34 +00:00
|
|
|
isa/psm.c optional psm
|
2000-06-10 22:13:40 +00:00
|
|
|
isa/sio.c count sio
|
1999-07-03 19:19:34 +00:00
|
|
|
isa/syscons_isa.c optional sc
|
|
|
|
isa/vga_isa.c optional vga
|
1999-08-29 09:12:54 +00:00
|
|
|
kern/subr_diskmbr.c standard
|
1995-12-26 13:58:31 +00:00
|
|
|
libkern/divdi3.c standard
|
|
|
|
libkern/moddi3.c standard
|
|
|
|
libkern/qdivrem.c standard
|
|
|
|
libkern/udivdi3.c standard
|
|
|
|
libkern/umoddi3.c standard
|
2000-03-23 19:03:26 +00:00
|
|
|
svr4/imgact_svr4.c optional compat_svr4
|
|
|
|
svr4/svr4_fcntl.c optional compat_svr4
|
|
|
|
svr4/svr4_filio.c optional compat_svr4
|
|
|
|
svr4/svr4_ioctl.c optional compat_svr4
|
|
|
|
svr4/svr4_ipc.c optional compat_svr4
|
|
|
|
svr4/svr4_misc.c optional compat_svr4
|
|
|
|
svr4/svr4_resource.c optional compat_svr4
|
|
|
|
svr4/svr4_signal.c optional compat_svr4
|
|
|
|
svr4/svr4_socket.c optional compat_svr4
|
|
|
|
svr4/svr4_sockio.c optional compat_svr4
|
|
|
|
svr4/svr4_stat.c optional compat_svr4
|
|
|
|
svr4/svr4_stream.c optional compat_svr4
|
|
|
|
svr4/svr4_syscallnames.c optional compat_svr4
|
|
|
|
svr4/svr4_sysent.c optional compat_svr4
|
|
|
|
svr4/svr4_sysvec.c optional compat_svr4
|
|
|
|
svr4/svr4_termios.c optional compat_svr4
|
|
|
|
svr4/svr4_ttold.c optional compat_svr4
|