diff options
author | netchild <netchild@FreeBSD.org> | 2006-08-15 12:54:30 +0000 |
---|---|---|
committer | netchild <netchild@FreeBSD.org> | 2006-08-15 12:54:30 +0000 |
commit | ec2ba5d85d7c127eef674f77e45cc0bea81d8850 (patch) | |
tree | eefd61a061ceacbae59d210a958f6ea28f9d2b34 /sys/conf/files.i386 | |
parent | e8cb5b55782d998cb82d772021c355c69edfaf5e (diff) | |
download | FreeBSD-src-ec2ba5d85d7c127eef674f77e45cc0bea81d8850.zip FreeBSD-src-ec2ba5d85d7c127eef674f77e45cc0bea81d8850.tar.gz |
Add the linux 2.6.x stuff (not used by default!):
- TLS - complete
- pid/tid mangling - complete
- thread area - complete
- futexes - complete with issues
- clone() extension - complete with some possible minor issues
- mq*/timer*/clock* stuff - complete but untested and the mq* stuff is
disabled when not build as part of the kernel with native FreeBSD mq*
support (module support for this will come later)
Tested with:
- linux-firefox - works, tested
- linux-opera - works, tested
- linux-realplay - doesnt work, issue with futexes
- linux-skype - doesnt work, issue with futexes
- linux-rt2-demo - works, tested
- linux-acroread - doesnt work, unknown reason (coredump) and sometimes
issue with futexes
- various unix utilities in linux-base-gentoo3 and linux-base-fc4:
everything tried worked
On amd64 not everything is supported like on i386, the catchup is planned for
later when the remaining bugs in the new functions are fixed.
To test this new stuff, you have to run
sysctl compat.linux.osrelease=2.6.16
to switch back use
sysctl compat.linux.osrelease=2.4.2
Don't switch while running a linux program, strange things may or may not
happen.
Sponsored by: Google SoC 2006
Submitted by: rdivacky
Some suggestions/help by: jhb, kib, manu@NetBSD.org, netchild
Diffstat (limited to 'sys/conf/files.i386')
-rw-r--r-- | sys/conf/files.i386 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/conf/files.i386 b/sys/conf/files.i386 index eba426e..bd569bd 100644 --- a/sys/conf/files.i386 +++ b/sys/conf/files.i386 @@ -85,7 +85,9 @@ rr232x_lib.o optional rr232x \ # compat/linprocfs/linprocfs.c optional linprocfs compat/linsysfs/linsysfs.c optional linsysfs +compat/linux/linux_emul.c optional compat_linux compat/linux/linux_file.c optional compat_linux +compat/linux/linux_futex.c optional compat_linux compat/linux/linux_getcwd.c optional compat_linux compat/linux/linux_ioctl.c optional compat_linux compat/linux/linux_ipc.c optional compat_linux @@ -95,6 +97,7 @@ compat/linux/linux_signal.c optional compat_linux compat/linux/linux_socket.c optional compat_linux compat/linux/linux_stats.c optional compat_linux compat/linux/linux_sysctl.c optional compat_linux +compat/linux/linux_time.c optional compat_linux compat/linux/linux_uid16.c optional compat_linux compat/linux/linux_util.c optional compat_linux compat/ndis/kern_ndis.c optional ndisapi pci |