summaryrefslogtreecommitdiffstats
path: root/ObsoleteFiles.inc
Commit message (Collapse)AuthorAgeFilesLines
* Use umtx to implement process sharable semaphore, to make this work,davidxu2010-01-051-0/+2
| | | | | | | | | | | | | | | | | | | | | | now type sema_t is a structure which can be put in a shared memory area, and multiple processes can operate it concurrently. User can either use mmap(MAP_SHARED) + sem_init(pshared=1) or use sem_open() to initialize a shared semaphore. Named semaphore uses file system and is located in /tmp directory, and its file name is prefixed with 'SEMD', so now it is chroot or jail friendly. In simplist cases, both for named and un-named semaphore, userland code does not have to enter kernel to reduce/increase semaphore's count. The semaphore is designed to be crash-safe, it means even if an application is crashed in the middle of operating semaphore, the semaphore state is still safely recovered by later use, there is no waiter counter maintained by userland code. The main semaphore code is in libc and libthr only has some necessary stubs, this makes it possible that a non-threaded application can use semaphore without linking to thread library. Old semaphore implementation is kept libc to maintain binary compatibility. The kernel ksem API is no longer used in the new implemenation. Discussed on: threads@
* Complete ntptrace(8) removal:antoine2010-01-031-0/+3
| | | | | | | - do not install man page - update ObsoleteFiles.inc Approved by: roberto@
* Remove examples for pppd and SLIP-related stuff.trasz2009-12-291-0/+23
|
* Add more obsolete files.antoine2009-12-051-0/+3
|
* Unify rc.firewall and rc.firewall6, and obsolete rc.firewall6ume2009-12-021-0/+3
| | | | | | | and rc.d/ip6fw. Reviewed by: dougb, jhb MFC after: 1 month
* rc.early(8) was removed as of 20090530 so remove manual page referencedelphij2009-11-181-0/+2
| | | | | | to it. MFC after: 1 week
* Move pselect(3) man page to section 2.kib2009-10-281-0/+2
| | | | | Noted by: jhb MFC after: 1 month
* Add more obsolete man pages.antoine2009-10-241-0/+46
|
* We haven't installed usbdevs for many moons now, and it doesn't work anymarkm2009-10-121-0/+2
| | | | more anyway. Add it to the "obsolete" list.
* Add entries for moved files during vesa/dpms promotion.delphij2009-09-101-0/+3
|
* Do the first step in removing lukemftpd from the base system. Disconnectremko2009-09-031-0/+5
| | | | | | | | | | | | | | | it from the build. If you are using the FTP daemon, please consider using the port ftp/tnftpd which is the same FTP server, but newer and might have more/better functionality. This results in us providing only one ftp daemon by default. Reviewed by: bz Approved by: imp (mentor, implicit) MFC after: 3 days Silence from: obrien
* Remove BSD.{local,x11,x11-4}.dist mtree files as they're either obsolete orflz2009-09-021-0/+4
| | | | they've moved to ports.
* ObsoleteFiles.inc:antoine2009-08-231-2/+0
| | | | kthread_create(9) was resurrected as a mlink to kproc(9)
* Merge the remainder of kern_vimage.c and vimage.h into vnet.c andrwatson2009-08-011-0/+2
| | | | | | | | | | vnet.h, we now use jails (rather than vimages) as the abstraction for virtualization management, and what remained was specific to virtual network stacks. Minor cleanups are done in the process, and comments updated to reflect these changes. Reviewed by: bz Approved by: re (vimage blanket)
* Update ObsoleteFiles.incantoine2009-07-201-3/+5
| | | | | | | - Remove some USB headers that were resurrected recently - Add new obsolete files (2 man pages and libvgl.so.5) Approved by: re (kib)
* Bump the version of all non-symbol-versioned shared libraries inkensmith2009-07-191-0/+208
| | | | | | | | preparation for 8.0-RELEASE. Add the previous version of those libraries to ObsoleteFiles.inc and bump __FreeBSD_Version. Reviewed by: kib Approved by: re (rwatson)
* Add an entry for etc/pam.d/gdm as this file is no longer required.marcus2009-07-181-0/+2
| | | | Approved by: re (kib)
* Build on Jeff Roberson's linker-set based dynamic per-CPU allocatorrwatson2009-07-141-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (DPCPU), as suggested by Peter Wemm, and implement a new per-virtual network stack memory allocator. Modify vnet to use the allocator instead of monolithic global container structures (vinet, ...). This change solves many binary compatibility problems associated with VIMAGE, and restores ELF symbols for virtualized global variables. Each virtualized global variable exists as a "reference copy", and also once per virtual network stack. Virtualized global variables are tagged at compile-time, placing the in a special linker set, which is loaded into a contiguous region of kernel memory. Virtualized global variables in the base kernel are linked as normal, but those in modules are copied and relocated to a reserved portion of the kernel's vnet region with the help of a the kernel linker. Virtualized global variables exist in per-vnet memory set up when the network stack instance is created, and are initialized statically from the reference copy. Run-time access occurs via an accessor macro, which converts from the current vnet and requested symbol to a per-vnet address. When "options VIMAGE" is not compiled into the kernel, normal global ELF symbols will be used instead and indirection is avoided. This change restores static initialization for network stack global variables, restores support for non-global symbols and types, eliminates the need for many subsystem constructors, eliminates large per-subsystem structures that caused many binary compatibility issues both for monitoring applications (netstat) and kernel modules, removes the per-function INIT_VNET_*() macros throughout the stack, eliminates the need for vnet_symmap ksym(2) munging, and eliminates duplicate definitions of virtualized globals under VIMAGE_GLOBALS. Bump __FreeBSD_version and update UPDATING. Portions submitted by: bz Reviewed by: bz, zec Discussed with: gnn, jamie, jeff, jhb, julian, sam Suggested by: peter Approved by: re (kensmith)
* Move msg{snd,recv,get,ctl} manual pages from section 3 to 2.trasz2009-07-131-0/+5
| | | | Approved by: re (kib)
* Add usr/include/nfs/rpcv2.hdfr2009-07-011-0/+2
| | | | | Submitted by: pluknet at gmail dot com Approved by: re
* Update ObsoleteFiles.inc:antoine2009-06-271-47/+62
| | | | | | | | | - correct a few paths - some USB headers were removed - devclass_add_driver(9) is no longer public - bind 9.6.1rc1 was imported Approved by: re (kib)
* Move programming info from usb(4) to usbdi(9) and update for the usb stackthompsa2009-06-241-0/+47
| | | | changeover. Needs much more content still.
* Remove clists from the kernel.ed2009-06-051-0/+2
| | | | | | | | | | | | | | | Clists were originally used by the TTY layer as a text buffer interface. The advantage of clists were that it would allocate a small set of additional buffers that could be shared between TTYs when needed. In the modern days we can just allocate some more KBs of memory to keep the TTYs satisfied. The global cfreelist also requires synchronisation, which may not be useful when trying to improve scalability. The MPSAFE TTY layer uses its own text buffers (ttyinq and ttyoutq). We had a small amount of drivers in the tree that still uses clists, like the old USB stack and some keyboard drivers. With the old USB stack gone and the keyboard drivers changed to use a circular buffer, we can safely remove clists from the kernel.
* Remove window(1) from the base system.ed2009-06-021-0/+3
| | | | | | | | | | | | | | | Some time ago Tom Rhodes sent me an email that he was willing to perform various cleanups to the window(1) source code. After some discussion, we both decided the best thing to do, was to move window(1) to the ports tree. The application isn't used a lot nowadays, mainly because it has been superseeded by screen, tmux, etc. A couple of hours ago Tom committed window(1) to ports (misc/window), so I'm removing it from the tree. I don't think people will really miss it, but I'm describing the change in UPDATING anyway. Discussed with: trhodes, pav, kib Approved by: re
* Removal of early.shdougb2009-05-301-0/+2
|
* Rename the queue macros I introduced last year.ed2009-05-271-0/+3
| | | | | | | | | | | | | | | | Last year I added SLIST_REMOVE_NEXT and STAILQ_REMOVE_NEXT, to remove entries behind an element in the list, using O(1) time. I recently discovered NetBSD also has a similar macro, called SLIST_REMOVE_AFTER. In my opinion this approach is a lot better: - It doesn't have the unused first argument of the list pointer. I added this, mainly because OpenBSD also had it. - The _AFTER suffix makes a lot more sense, because it is related to SLIST_INSERT_AFTER. _NEXT is only used to iterate through the list. The reason why I want to rename this now, is to make sure we don't release a major version with the badly named macros.
* Note the removal of makekey(8)dougb2009-05-271-0/+3
| | | | Requested by: bz
* Delete the old USB stack. The new stack has settled in and has all thethompsa2009-05-271-0/+33
| | | | drivers/functionality and then some.
* Add more obsolete files, old NFSv4 client and legacy USB related.antoine2009-05-231-0/+4
|
* Add University of Michigan removed files to ObsoleteFiles.inc.rwatson2009-05-221-0/+5
| | | | Submitted by: Pawel Worach <pawel.worach at gmail.com>
* usbdevs(8) is not obsoleted, just temporarily disconnected from the buildantoine2009-04-181-2/+0
| | | | Noticed by: ru@
* Add more obsolete files, usb related.antoine2009-04-181-0/+22
|
* o Reflect ar(4), ray(4), sr(4), raycontrol(8) removal.maxim2009-04-161-0/+6
|
* - fix my previous commit (added missing .gz)danger2009-04-101-1/+1
| | | | Submitted by: brueffer
* - VOP_LEASE.9 has been removeddanger2009-04-101-0/+2
| | | | Approved by: rwatson
* Removed more vestiges of if_sl(4).ru2009-04-091-2/+5
|
* - Added libpcap.so.5 to OLD_LIBS.ru2009-04-061-0/+14
| | | | | - Added 32-bit versions of libusb20* to OLD_{LIBS,FILES}. - Added 32-bit version of libmp.so.6 to OLD_LIBS.
* Remove if_ppp(4) and if_sl(4).ed2009-04-051-0/+20
| | | | | | | | | | | | | Not only did these two drivers depend on IFF_NEEDSGIANT, they were broken 7 months ago during the MPSAFE TTY import. if_ppp(4) has been replaced by ppp(8). There is no replacement for if_sl(4). If we see regressions in for example the ports tree, we should just use __FreeBSD_version 800045 to check whether if_ppp(4) and if_sl(4) are present. Version 800045 is used to denote the import of MPSAFE TTY. Discussed with: rwatson, but also rwatson's IFF_NEEDSGIANT emails on the lists.
* Use the real removal date for fla(4), put the entry withtrhodes2009-04-011-2/+2
| | | | other 2004* entries.
* Add an entry for fla.4.trhodes2009-04-011-0/+2
|
* Remove the uscanner(4) driver, this follows the removal of the kernel scannerthompsa2009-03-191-0/+2
| | | | | | | driver in Linux 2.6. uscanner was just a simple wrapper around a fifo and contained no logic, the default interface is now libusb (supported by sane). Reviewed by: HPS
* k8temp(4) has been renamed to amdtemp(4).brueffer2009-03-181-0/+2
|
* Fix up the entries for libusb, it seems it existed back in 2002 so it wasthompsa2009-03-091-3/+3
| | | | | | getting removed again. Reported by: Steve Kargl
* Install libusb20.so.1 as libusb.so.1, there will be a followup commit to thethompsa2009-03-091-0/+3
| | | | | | | | | ports tree so that programs use libusb from the base by default. Thanks to Stanislav Sedov for sorting out the ports build. Bump __FreeBSD_version to 800069 Help and testing by: stas
* Rename all symbols in libmp(3) to mp_*, just like Solaris.ed2009-02-261-0/+2
| | | | | | | | | | | | The function pow() in libmp(3) clashes with pow(3) in libm. We could rename this single function, but we can just take the same approach as the Solaris folks did, which is to prefix all function names with mp_. libmp(3) isn't really popular nowadays. I suspect not a single application in ports depends on it. There's still a chance, so I've increased the SHLIB_MAJOR and __FreeBSD_version. Reviewed by: deischen, rdivacky
* delete-old does not recursively delete dirs so list all its contents too.thompsa2009-02-241-0/+14
| | | | Spotted by: naddy
* Add ObsoleteFiles entries for the USB changeover.thompsa2009-02-231-0/+43
|
* Initial gdbserver support for PowerPC.raj2009-02-231-1/+1
| | | | Obtained from: Juniper Networks, Semihalf
* Add the pccard header files to ObsoleteFiles.inc.ed2009-02-151-0/+4
| | | | Reviewed by: imp
* Don't remove gdbserver on ARM. It's not obsolete. In fact,marcel2009-02-151-1/+1
| | | | it's quite nouveau...
OpenPOWER on IntegriCloud