summaryrefslogtreecommitdiffstats
path: root/ObsoleteFiles.inc
Commit message (Collapse)AuthorAgeFilesLines
* Reflect adding_user.8 -> adding_user.7 renamegabor2009-02-031-0/+2
| | | | Reminded by: kib
* Add obsolete files after tzdata2009a and file 4.26 importsantoine2009-01-251-0/+5
|
* Add an obsolete file.antoine2009-01-031-0/+2
|
* Remove long unused netinet/ipprotosw.h (basically since r82884).bz2008-12-231-0/+2
| | | | | Discussed with: rwatson MFC after: 4 weeks
* Add more obsolete files.antoine2008-11-301-0/+5
|
* Several documentation fixups related to device minor/major numbers:ed2008-09-281-0/+6
| | | | | | | | | | | | | - Document the minor(3), major(3) and makedev(3) macro's. They also apply to umajor() and uminor() in the kernel, but hopefully we'll sort that out one day. - Briefly dev2unit() inside the make_dev(9) manual page, since this is now the preferred macro to obtain character device unit numbers inside the kernel. - Remove the device_ids(9) manual page. It contains highly inaccurate information, such as a description of the nonexistent major().
* Correct suser(9) entry.antoine2008-09-211-1/+2
|
* Remove the suser(9) interface from the kernel. It has been replaced fromattilio2008-09-171-0/+2
| | | | | | | | | | | | | | | | | years by the priv_check(9) interface and just very few places are left. Note that compatibility stub with older FreeBSD version (all above the 8 limit though) are left in order to reduce diffs against old versions. It is responsibility of the maintainers for any module, if they think it is the case, to axe out such cases. This patch breaks KPI so __FreeBSD_version will be bumped into a later commit. This patch needs to be credited 50-50 with rwatson@ as he found time to explain me how the priv_check() works in detail and to review patches. Tested by: Giovanni Trematerra <giovanni dot trematerra at gmail dot com> Reviewed by: rwatson
* Add an obsolete file: pax removed from rescue.antoine2008-09-141-0/+2
|
* Add files to remove when WITHOUT_HESIOD is set.antoine2008-09-131-5/+0
| | | | | | | This fixes "make check-old" when WITH_HESIOD is set. PR: 122406 MFC after: 1 month
* Resurrect the sbni(4) driver. Someone finally tested the MPSAFE patches andjhb2008-09-101-5/+0
| | | | | | the driver worked ok with them. Tested by: friends of yar
* Add more obsolete files.antoine2008-08-311-0/+18
|
* Remove the now unneeded pt_chown utility.ed2008-08-241-0/+2
| | | | | | | | | | | | | | | | | | | | | | | Before we had a posix_openpt() that allocated PTY's with proper permissions in place, we used this set-uid utility to change the ownership of PTY slave devices to the real user ID of the process. This utility was used to implement grantpt(). In my first designs of the MPSAFE TTY layer, I replaced this by adding an ioctl() called TIOCGRANTPT, which was used to change the ownership. I left the pt_chown utility, because older C libraries needed it to work properly. After some discussions back in June I changed the PTY code to set permissions properly upon creation. Fortunately the previous grantpt() implementation changed permissions by hand when pt_chown is not installed, which always succeeds. This means grantpt() still works properly, even though the set-uid utility is missing. I've done tests with FreeBSD 5.2.1, FreeBSD 6.3 and FreeBSD 7.0 jails. All of them still work if I remove pt_chown. Reviewed by: philip (ex-mentor)
* Integrate the new MPSAFE TTY layer to the FreeBSD operating system.ed2008-08-201-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The last half year I've been working on a replacement TTY layer for the FreeBSD kernel. The new TTY layer was designed to improve the following: - Improved driver model: The old TTY layer has a driver model that is not abstract enough to make it friendly to use. A good example is the output path, where the device drivers directly access the output buffers. This means that an in-kernel PPP implementation must always convert network buffers into TTY buffers. If a PPP implementation would be built on top of the new TTY layer (still needs a hooks layer, though), it would allow the PPP implementation to directly hand the data to the TTY driver. - Improved hotplugging: With the old TTY layer, it isn't entirely safe to destroy TTY's from the system. This implementation has a two-step destructing design, where the driver first abandons the TTY. After all threads have left the TTY, the TTY layer calls a routine in the driver, which can be used to free resources (unit numbers, etc). The pts(4) driver also implements this feature, which means posix_openpt() will now return PTY's that are created on the fly. - Improved performance: One of the major improvements is the per-TTY mutex, which is expected to improve scalability when compared to the old Giant locking. Another change is the unbuffered copying to userspace, which is both used on TTY device nodes and PTY masters. Upgrading should be quite straightforward. Unlike previous versions, existing kernel configuration files do not need to be changed, except when they reference device drivers that are listed in UPDATING. Obtained from: //depot/projects/mpsafetty/... Approved by: philip (ex-mentor) Discussed: on the lists, at BSDCan, at the DevSummit Sponsored by: Snow B.V., the Netherlands dcons(4) fixed by: kan
* Remove <sgtty.h> now it has no practical usage.ed2008-07-251-0/+2
| | | | | | | | | | When I turned sgtty into a binary-only interface (last month), I added this explicit #error to the header file, to make sure nobody forgot to remove the header file after updating world. I think it is now a good moment to remove this header file. Approved by: philip (mentor)
* Remove sade(8) on the following platforms:marcel2008-07-191-0/+6
| | | | | o arm, mips & powerpc: libdisk is non-functional. o ia64: libdisk is insufficient.
* Add an obsolete header after pecoff removal.antoine2008-07-131-0/+4
| | | | Approved by: rwatson (mentor)
* Obsolete bsdlabel(8) on powerpc. Use gpart(8) instead.marcel2008-07-061-0/+5
|
* Remove the sbsh(4) driver. No one responded to requests for testing thejhb2008-07-041-0/+3
| | | | | | | MPSAFE patches on current@ and stable@. This driver also has a fundamental issue in that it sleeps when sending commands to the card including in the if_init/if_start routines (which can be called from interrupt context). As such, the driver shouldn't be working reliably even on 4.x.
* Remove the sbni(4) driver. No one responded to calls to test it onjhb2008-07-041-0/+8
| | | | current@ and stable@.
* Remove the oltr(4) driver. No one responded to calls for testing onjhb2008-07-041-1/+6
| | | | | | | | current@ and stable@ for the locking patches. The driver can always be revived if someone tests it. This driver also sleeps in its if_init routine, so it likely doesn't really work at all anyway in modern releases.
* Remove the arl(4) driver. It is reported to not work on 6.x or laterjhb2008-07-041-0/+6
| | | | | even though the driver hasn't changed since 4.x (last known working release).
* sunlabel(8) is specific to sparc64. Remove from other platforms.marcel2008-07-041-0/+5
| | | | use gpart(8) on all platforms.
* bsdlabel and fdisk are obsoleted on ia64.marcel2008-07-031-0/+8
| | | | | While here, make sure to remove any remnants of the disklabel manpage.
* The example wpa_supplicant.conf file has been moved to share/examples/etc/,danger2008-07-011-0/+3
| | | | | | | see r180158 for references Approved by: brooks MFC after: 3 days
* Turn sgtty into a binary-only compatibility interface.ed2008-06-141-0/+5
| | | | | | | | | | | | | | | | sgtty was the original interface to configure terminal attributes on my UNIX-like operating systems. It has been deprecated by the POSIX termios interface, which is implemented in almost any modern system. An advantage of turning this into a binary compatibility interface, is that we can now eventually remove the COMPAT_43TTY switch from kernel configurations. This removes many ioctl()'s from the TTY layer. While there, increase the __FreeBSD_version, which may be useful for the people working on the Ports tree. Reviewed by: kib Approved by: philip (mentor)
* Removal of gpt(8) and manpage.marcel2008-06-091-0/+3
|
* To both the (formerly) 'temporarily disconnected' netatm and I4B modulesbz2008-05-271-2/+2
| | | | | add a comment "(removed 20080525)" to make clear that it is no longer temporary.
* Add more obsolete files.antoine2008-05-271-0/+20
| | | | Approved by: rwatson (mentor)
* Remove ISDN4BSD (I4B) from HEAD as it is not MPSAFE andbz2008-05-261-0/+114
| | | | | | | | | | | | | | | | | | parts relied on the now removed NET_NEEDS_GIANT. Most of I4B has been disconnected from the build since July 2007 in HEAD/RELENG_7. This is what was removed: - configuration in /etc/isdn - examples - man pages - kernel configuration - sys/i4b (drivers, layers, include files) - user space tools - i4b support from ppp - further documentation Discussed with: rwatson, re
* Add more obsolete files.antoine2008-05-101-0/+9
| | | | Approved by: rwatson (mentor)
* Add recent obsolete files.antoine2008-04-201-0/+16
| | | | Approved by: rwatson (mentor)
* Add pkg_check and pkg_sign to ObsoleteFiles.incflz2008-04-011-0/+5
| | | | | Reminded by: Pawel Worach MFC after: 1 week
* Remove options MK_LIBKSE and DEFAULT_THREAD_LIB now that we no longerru2008-03-291-2/+0
| | | | build libkse. This should fix WITHOUT_LIBTHR builds as a side effect.
* Document the removal data for usbdevs.h and usbdevs_data.h,remko2008-03-261-2/+3
| | | | | | | | | sort the entry into it's correct place (behind 200407XX before 200406XX because we have an explicit date here). PR: misc/122098 Submitted by: "John Hein" <jhein@timing.com> MFC after: 3 days
* Add an include file from the removed XRPU driver.brueffer2008-03-131-0/+2
| | | | | | PR: 121654 Submitted by: pluknet <pluknet@gmail.com> Approved by: rwatson (mentor)
* Add some obsolete usr/lib32 libraries.antoine2008-03-081-0/+50
| | | | | | | PR: 117189 Submitted by: Scot Hetzel Approved by: rwatson (mentor) MFC after: 1 month
* geom_lvm(4) is now known as geom_linux_lvm(4).thompsa2008-02-201-0/+2
|
* Revert rev. 1.128, we have a hard link generated from newdelphij2008-02-061-2/+0
| | | | | | | hptrr(4) to rr232x. Pointed out by: bruffer Pointy hat to: delphij
* The man page of ofwdump(8) is installed as usr/share/man/man8/ofwdump.8.gzmarcel2008-02-061-0/+2
| | | | | again on powerpc and sparc64. Un-obsolete it for these two so that we don't remove it right after installing it.
* Reflect rr232x(4) manpage removaldelphij2008-02-061-0/+2
|
* OLDCARD is long gone, so finally remove the oldcard.4 manpage.brueffer2008-01-261-0/+3
| | | | Confirmed by: imp
* Reflect BUF_REFCNT(9) removal.attilio2008-01-221-0/+2
| | | | Pointed out by: brueffer
* Add entries for manpages for pmc_x86_get_msr(3), kthread_create(9),jhb2008-01-111-0/+7
| | | | shm_open(3), and shm_unlink(3).
* Combine the fortunes-o.real and the fortunes2-o file, as was donedougb2007-12-071-0/+3
| | | | | | | | | | | | | | | with fortunes and fortunes2 2 years and 2 days ago. The fortunes2-o file was brought in with the original import of the 4.4 Lite games directory, but has always consisted in large part of fortunes duplicated from other files. The combined size of the two files is still only 631K, or less than 1/3rd of the size of the fortunes file. Combining them has the added benefit of making the fortunes from fortunes2-o visibile to fortune(6)'s -m option. This change should probably not be MFC'ed beyond RELENG_7.
* To reduce the impact of possible removal of the syscalls required bybrooks2007-11-291-0/+6
| | | | | | | | | | libkse in FreeBSD 8.0, do not build or install static versions of libkse (i.e. libkse*.a) in the default case. Static versions will be built and installed if libthr is not built or if libkse is the default threading library. Discussed on: freebsd-arch MFC after: 3 days
* Remove an OpenSolaris compatibility header that is no longer referenced.jb2007-11-281-0/+2
|
* Add usr/lib/libgssapi_krb5.so.8 to the list of old libs from thebrix2007-11-271-1/+2
| | | | | | | | | | 20071120 shared library version bump. Update the date in the comments to match the date of the actual commit. Approved by: bz, erwin (mentor) MFC after: 3 days
* Correct a path for obsolete liblwres.so.10.ru2007-11-211-1/+1
| | | | Reported by: Alexey Shuvaev on -current
* Mark old shared library versions as obsolete.delphij2007-11-201-0/+14
|
OpenPOWER on IntegriCloud