summaryrefslogtreecommitdiffstats
path: root/sys/modules/linux
Commit message (Collapse)AuthorAgeFilesLines
* o Remove @- from the ln and change it to a -sf. This was bogus, andimp2003-11-191-1/+1
| | | | | | | | | | | | regocnized as such at the time. Now that the other bogons in the tree have been fixed, we can remove this ugly kludge. o Remove stale/bogus opt_foo.h files. These are left over from by-gone resources. And they point to the need, yet again, to improve the build system so meta information is only in one place. Submitted by: ru Reviewed by: bde Approved by: re@ (jhb)
* Add IPv6 support for Linuxlator.ume2003-02-031-2/+5
| | | | | Reviewed by: dwmalone MFC after: 10 days
* opt_kstack_pages.h is not needed anymore. It would have been a Bad Thingpeter2002-09-081-2/+1
| | | | if it had been different to the running kernel.
* Unbreak the modules build:tmm2002-09-071-1/+2
| | | | | | | | | - add dependencies on opt_cpu.h and opt_kstack_pages.h to the linux module Makefile in the i386 case. The latter is needed by an i386-only file, the former by the i386 implementation of linux_sysvec.c (opt_cpu.h is used for architecture-dependent options, so I added it only for i386, although this file is also generated for the alpha). - add a dependency on opt_kstack_pages.h to the pecoff module Makefile.
* Introduce support for Mandatory Access Control and extensiblerwatson2002-08-011-1/+2
| | | | | | | | | | | | kernel access control. Invoke appropriate MAC entry points for a number of VFS-related operations in the Linux ABI module. In particular, handle uselib in a manner similar to open() (more work is probably needed here), as well as handle statfs(), and linux readdir()-like calls. Obtained from: TrustedBSD Project Sponsored by: DARPA, NAI Labs
* Hook up the new linux_ptrace implementation.marcel2002-05-191-1/+1
| | | | | PR: 33299 Submitted by: Alexander N. Kabaev <ak03@gte.com>
* (Belatedly) add the required EXPORT_SYMS. I'm not sure the list is complete,des2002-02-221-0/+8
| | | | | but at least linprocfs works (I haven't had the opportunity to test other stuff that depends on the linux module, like aac or tdfx)
* genassym depends on the presence of common variables, disable the usemsmith2002-01-101-1/+1
| | | | of -fno-common in this case.
* Pass maintainership over to emulation@FreeBSD.org. It has been fun,marcel2001-11-181-1/+1
| | | | | | | | but time and other interests is making it hard. Open the door for new blood and fresh tactics now that the Linuxulator has had its facelift. Thanks to all who contributed during my tour of duty!
* Round of cleanups and enhancements. These include (in random order):marcel2001-09-081-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | o Introduce private types for use in linux syscalls for two reasons: 1. establish type independence for ease in porting and, 2. provide a visual queue as to which syscalls have proper prototypes to further cleanup the i386/alpha split. Linuxulator types are prefixed by 'l_'. void and char have not been "virtualized". o Provide dummy functions for all syscalls and remove dummy functions or implementations of truely obsolete syscalls. o Sanitize the shm*, sem* and msg* syscalls. o Make a first attempt to implement the linux_sysctl syscall. At this time it only returns one MIB (KERN_VERSION), but most importantly, it tells us when we need to add additional sysctls :-) o Bump the kenel version up to 2.4.2 (this is not the same as the KERN_VERSION MIB, BTW). o Implement new syscalls, of which most are specific to i386. Our syscall table is now up to date with Linux 2.4.2. Some highlights: - Implement the 32-bit uid_t and gid_t bases syscalls. - Implement a couple of 64-bit file size/offset bases syscalls. o Fix or improve numerous syscalls and prototypes. o Reduce style(9) violations while I'm here. Especially indentation inconsistencies within the same file are addressed. Re-indenting did not obfuscate actual changes to the extend that it could not be combined. NOTE: I spend some time testing these changes and found that if there were regressions, they were not caused by these changes AFAICT. It was observed that installing a RH 7.1 runtime environment did make matters worse. Hangs and/or reboots have been observed with and without these changes, so when it failed to make life better in cases it doesn't look like it made it worse.
* Fix linux_getcwd() so that if the cwd isn't cached (__getcwd() fails),gallatin2001-08-291-2/+2
| | | | | | | | | | the cwd is looked up inside the kernel. The native getcwd() in libc handles this in userland if __getcwd() fails. Obtained from: NetBSD via OpenBSD Tested by: Chris Casey <chriss@phys.ksu.edu>, Markus Holmberg <markush@acc.umu.se> Reviewed by: Darrell Anderson <anderson@cs.duke.edu> PR: kern/24315
* Zap obsolete (died with LKM) EXPORT_SYMS variablepeter2001-02-041-1/+0
|
* It is unlikely that we'll be supporting old-style ZMAGIC linux a.outpeter2001-01-071-1/+1
| | | | | | binaries on anything but i386.. (ia64, sparc64, etc) Invert the .if so that it is inclusive of i386 platforms rather than excluding just the alpha.
* Use a consistent style and one much closer to the rest of /usr/srcobrien2001-01-061-10/+10
|
* Don't auto-generate the syscalls.marcel2000-12-031-16/+2
|
* Fix dependency for auto-generated files. This commit ismarcel2000-12-021-1/+1
| | | | | | | | for archiving purposes only; auto-generation is going to be reverted. requested by: obrien submitted: gallatin
* Fix breakage for parallel builds.marcel2000-11-051-0/+1
|
* Retire linux(8). Using shell scripts to load kernel loadable modules issheldonh2000-11-023-74/+0
| | | | | | | | | | | | | | out of fashion. This particular case, unlike joy(8) and friends which are just plain silly, did more than just load a kernel loadable module. However, /etc/rc and the linux_base port were adjusted a while back to cope with the absence of this script. The only outstanding reason to hang on to it would have been for the linux(8) manual page, which clued folks into the existence of the Linuxulator. A new linux(4) was introduced a while back. It does a much better job. This script just isn't useful any more.
* Support for the linux ipc syscalls on the alpha, where each one hasgallatin2000-11-011-2/+2
| | | | | its own syscall rather than going through a demux function like linux_ipc() on i386
* Allow the building of the syscall bits at compile time.obrien2000-11-011-1/+14
|
* Don't install manpages.obrien2000-10-081-3/+0
| | | | They are being moved elsewhere, and they are causing problems being here.
* Only install secondary components if the destination directory exists.obrien2000-10-041-0/+4
| | | | This may be a WIP, but `make release' needs it sooner than later.
* Since AlphaLinux is the weirdest Linux of all, probably best to do theobrien2000-09-061-1/+1
| | | | logic this way.
* Two sys/compat/linux sources aren't applicable on the Alpha at this time.obrien2000-09-061-2/+6
|
* Connect the new sources in /sys/compat/linux and the new filemarcel2000-08-221-4/+3
| | | | in /sys/i386/linux.
* Use the genassym script here too. The linux and svr4 modules were broken.bde2000-06-031-1/+4
|
* Use .include <bsd.kmod.mk> to get to ../../*/conf/kmod.mk instead ofpeter2000-05-271-1/+1
| | | | encoding the relative path.
* Pull in sys/conf/kmod.mk, rather than /usr/share/mk/bsd.kmod.mk.peter2000-05-041-1/+1
| | | | | | | This means that the kernel can be totally self contained now and is not dependent on the last buildworld to update /usr/share/mk. This might also make it easier to build 5.x kernels on 4.0 boxes etc, assuming gensetdefs and config(8) are updated.
* Compile linux_genassym.c with ordinary ${CFLAGS}. The (small) need forbde2000-01-091-3/+3
| | | | | | | | | | -U_KERNEL became negative when all all the genassym.c's were converted to be cross-built. Use "genassym ... > ${.TARGET}", not "genassym -o $@ ...", so that genassym(1) doesn't need to support -o. Removed duplicate -D_KERNEL from flags for compiling linux_locore.s.
* Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL"peter1999-12-291-2/+2
| | | | | | is an application space macro and the applications are supposed to be free to use it as they please (but cannot). This is consistant with the other BSD's who made this change quite some time ago. More commits to come.
* Use genassym(1) and <sys/assym.h> to generate assembler symbols.marcel1999-12-231-8/+3
|
* Add a run of Linux ldconfig.cracauer1999-12-131-1/+10
|
* Removed special rules for building and cleaning device interface filesbde1999-11-281-5/+1
| | | | | and empty options files. The rules are now generated automatically in bsd.kmod.mk. Cleaned up related things ($S and ${CLEANFILES}).
* Replace 'i386' with '${MACHINE_ARCH}' in preparation of the developmentmarcel1999-11-121-1/+1
| | | | of a linuxulator for Alpha.
* Install linux.sh in /usr/sbin and not in /usr/bin.marcel1999-09-031-1/+1
| | | | | PR: 13545 Submitted by: Jose M. Alcaide <jose@we.lc.ehu.es>
* Add MAINTAINER and remove the unused COMPAT_LINUX and VM_STACK defines.marcel1999-08-281-1/+4
|
* $Id$ -> $FreeBSD$peter1999-08-283-3/+3
|
* Add sysctl variables for the Linuxulator. These reside under `compat.linux' asmarcel1999-08-271-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | discussed on current. The following variables are defined (for now): osname (defaults to "Linux") Allow users to change the name of the OS as returned by uname(2), specially added for all those Linux Netscape users and statistics maniacs :-) We now have what we all wanted! osrelease (defaults to "2.2.5") Allow users to change the version of the OS as returned by uname(2). Since -current supports glibc2.1 now, change the default to 2.2.5 (was 2.0.36). oss_version (defaults to 198144 [0x030600]) This one will be used by the OSS_GETVERSION ioctl (PR 12917) which I can commit now that we have the MIB. The default version number is the lowest version possible with the current 'encoding'. A note about imprisoned processes (see jail(2)): These variables are copy-on-write (as suggested by phk). This means that imprisoned processes will use the system wide value unless it is written/set by the process. From that moment on, a copy local to the prison will be used. A note about the implementation: I choose to add a single pointer to struct prison, because I didn't like the idea of changing struct prison every time I come up with a new variable. As a side effect, the extra storage is only needed when a variable is set from within the prison. This also minimizes kernel bloat when the Linuxulator is not used; both compiled in or as a module. Reviewed by: bde (first version only) and phk
* Sort xrefs.mpp1999-08-191-3/+3
| | | | Submitted by: Alexey Zelkin <phantom@cris.net>
* "Linux emulator" -> "Linux image activator"nik1999-08-041-4/+4
| | | | | PR: docs/12882 Submitted by: des
* Reference kld(4).ghelmer1999-04-231-2/+2
| | | | Submitted by: Nathan Ahlstrom <nrahlstr@winternet.com>
* Update for the man page. 4.0 is using KLD's not LKM's.n_hibma1999-02-221-5/+7
|
* Compile the linux module with the same flags as the kernel.julian1999-01-261-2/+2
| | | | | | (oops). Submitted by: "Richard Seaman, Jr." <dick@tar.com>
* Install scripts without .sh suffix.jkh1998-11-121-2/+2
|
* Rename joy,ibcs2,linux to joy.sh,ibcs2.sh,linux.sh (via repo copy).peter1998-11-112-14/+2
|
* We need to install the linux shell script or the lkm version willjkh1998-11-101-4/+4
| | | | still be in place.
* Build linux_genassym static, this should help aout-to-elf buildspeter1998-11-051-2/+2
|
* Do not overwrite the lkm versions of the install scripts for now. linuxpeter1998-11-051-4/+4
| | | | works but ibcs2 has a load failure and joy doesn't look like it'll work.
* Update to use kldload, no temporary files!peter1998-11-052-10/+14
|
* Sample initial set of kld-ified modules. Not all have been completelypeter1998-10-162-92/+5
| | | | | | | converted yet. These are more of a starting point. This is NOT connected to the parent Makefile. OK'ed by jkh (who is ever so patiently waiting)
OpenPOWER on IntegriCloud