#
6d715e95 |
| 11-Jun-1996 |
Paul Traina <pst@FreeBSD.org> |
Put clock calibration #defines in opt_clock.h to ease reconfiguration
|
#
d03b4017 |
| 11-May-1996 |
Bruce Evans <bde@FreeBSD.org> |
Hide options for emulators and static file systems in opt_dontuse.h. These options only apply at config time. Using them at compile time would break the corresponding lkms.
|
#
7c243b9a |
| 01-May-1996 |
Bruce Evans <bde@FreeBSD.org> |
Removed nonexistent option "LINUX" (what's that :-).
|
#
03475c25 |
| 26-Apr-1996 |
Søren Schmidt <sos@FreeBSD.org> |
Removed options MAXCONS & HARDFONT, they are no longer in use (and havn't been for long, sigh)
|
#
803dda17 |
| 13-Apr-1996 |
Bruce Evans <bde@FreeBSD.org> |
Fixed `PCVT_FREEBSD=210'.
|
#
3745f80a |
| 11-Apr-1996 |
Bruce Evans <bde@FreeBSD.org> |
Moved AUTO_EOI_[12] and most sio and pcvt options out of the makefile.
|
#
d69e8502 |
| 26-Mar-1996 |
Garrett Wollman <wollman@FreeBSD.org> |
Add support for Pentium and Pentium Pro performance counters. (This code is as yet untested; to come after man page is written.) This also adds inlines to cpufunc.h for the RDTSC, RDMSR, WRMSR, and R
Add support for Pentium and Pentium Pro performance counters. (This code is as yet untested; to come after man page is written.) This also adds inlines to cpufunc.h for the RDTSC, RDMSR, WRMSR, and RDPMC instructions. The user-mode interface is via a subdevice of mem.c; there is also a kernel-size interface which might be used to aid profiling.
show more ...
|
#
226fd441 |
| 15-Mar-1996 |
Peter Wemm <peter@FreeBSD.org> |
Delete recognition for COMPAT_LINUX - it's *gone* now.. :-)
|
#
d66a5066 |
| 02-Mar-1996 |
Peter Wemm <peter@FreeBSD.org> |
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
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.
show more ...
|
#
4bd49128 |
| 02-Mar-1996 |
Peter Wemm <peter@FreeBSD.org> |
Add more options into the conf/options and i386/conf/options.i386 files and the #include hooks so that 'make depend' is more useful. This covers most of the options I regularly use (but not all) and
Add more options into the conf/options and i386/conf/options.i386 files and the #include hooks so that 'make depend' is more useful. This covers most of the options I regularly use (but not all) and some other easy ones.
show more ...
|
#
d9256606 |
| 07-Jan-1996 |
Peter Wemm <peter@FreeBSD.org> |
Choose a different name to hold the option definition.. The original one was overlapping with another file, and making some undesirable behavior a little worse - it's triggering a bug in config that
Choose a different name to hold the option definition.. The original one was overlapping with another file, and making some undesirable behavior a little worse - it's triggering a bug in config that appears to have been there for some time (before the options files, anyway.)
show more ...
|
#
8890984d |
| 05-Jan-1996 |
Garrett Wollman <wollman@FreeBSD.org> |
Convert BOUNCE_BUFFERS and BOUNCEPAGES to new option scheme.
|
#
a73af3a2 |
| 04-Jan-1996 |
Garrett Wollman <wollman@FreeBSD.org> |
convert the math emulation to use the new-style options.
|
#
db6a20e2 |
| 03-Jan-1996 |
Garrett Wollman <wollman@FreeBSD.org> |
Converted two options over to the new scheme: USER_LDT and KTRACE.
|