diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-03-28 00:49:14 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-03-28 00:49:14 +0000 |
commit | 58d3179258bacbf670c6109272a1441e9802e70e (patch) | |
tree | 482d6d68699068fbc0427ac9b9fd0a66e397279a /sys/arch/i386/conf | |
parent | fadb80427f4372e43bf4afde3acf20b21a6a5045 (diff) |
Add a sysctl to option USER_LDT, to control its behaviour, which will be
disabled by default.
Enable with sysctl -w machdep.userldt=1
This will allow people to use the few ports that require this functionality
to work without requiring the user to recompile a kernel.
The option USER_LDT remains in order to not increase size on the
installation media. It is now enabled in GENERIC.
Per espie@'s idea, but my diff was much simpler than his; ok deraadt@
Diffstat (limited to 'sys/arch/i386/conf')
-rw-r--r-- | sys/arch/i386/conf/GENERIC | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/conf/GENERIC b/sys/arch/i386/conf/GENERIC index 591351f0207..5eb63404036 100644 --- a/sys/arch/i386/conf/GENERIC +++ b/sys/arch/i386/conf/GENERIC @@ -1,4 +1,4 @@ -# $OpenBSD: GENERIC,v 1.331 2003/03/09 01:54:20 tedu Exp $ +# $OpenBSD: GENERIC,v 1.332 2003/03/28 00:49:13 miod Exp $ # $NetBSD: GENERIC,v 1.48 1996/05/20 18:17:23 mrg Exp $ # # GENERIC -- everything that's currently supported @@ -17,7 +17,7 @@ option GPL_MATH_EMULATE # floating point emulation. option USER_PCICONF # user-space PCI configuration #option VM86 # Virtual 8086 emulation -#option USER_LDT # user-settable LDT; see i386_set_ldt(2) +option USER_LDT # user-settable LDT; see i386_set_ldt(2) option APERTURE # in-kernel aperture driver for XFree86 #option KGDB # Remote debugger support; exclusive of DDB |