aboutsummaryrefslogtreecommitdiff
path: root/ObsoleteFiles.inc
Commit message (Collapse)AuthorAgeFilesLines
...
* Belatedly remove stale debug symbols after r339270.Jung-uk Kim2019-10-231-0/+10
| | | | | | | | Reported by: danfe MFC after: 3 days Notes: svn path=/head/; revision=353907
* Do not remove /usr/share/mk/bsd.compat.mk. It was reintroduced by r353659.Jung-uk Kim2019-10-181-2/+0
| | | | Notes: svn path=/head/; revision=353743
* Remove the aarch64 libclang_rt.profile library from llvm 8.0.1.John Baldwin2019-10-141-0/+1
| | | | | | | Reported by: np Notes: svn path=/head/; revision=353499
* Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmpDimitry Andric2019-10-091-2/+161
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9.0.0 final release r372316. Release notes for llvm, clang, lld and libc++ 9.0.0 are available here: https://releases.llvm.org/9.0.0/docs/ReleaseNotes.html https://releases.llvm.org/9.0.0/tools/clang/docs/ReleaseNotes.html https://releases.llvm.org/9.0.0/tools/lld/docs/ReleaseNotes.html https://releases.llvm.org/9.0.0/projects/libcxx/docs/ReleaseNotes.html PR: 240629 MFC after: 1 month Notes: svn path=/head/; revision=353358
| * Prepare for merging back to head:Dimitry Andric2019-10-081-2/+2
| | | | | | | | | | | | | | | | | | | | | | * Set tentative merge date * Add UPDATING entry * Bump __FreeBSD_version * Bump FREEBSD_CC_VERSION * Bump LLD_REVISION Notes: svn path=/projects/clang900-import/; revision=353318
| * Merge ^/head r352764 through r353315.Dimitry Andric2019-10-081-0/+4
| |\ | |/ |/| | | Notes: svn path=/projects/clang900-import/; revision=353316
| * Merge ^/head r352587 through r352763.Dimitry Andric2019-09-261-0/+3
| |\ | | | | | | | | | Notes: svn path=/projects/clang900-import/; revision=352764
| * | Also add /usr/lib32/libc++fs.a to ObsoleteFiles.Dimitry Andric2019-09-191-0/+1
| | | | | | | | | | | | Notes: svn path=/projects/clang900-import/; revision=352533
| * | Merge ^/head r352105 through r352307.Dimitry Andric2019-09-131-0/+5
| |\ \ | | | | | | | | | | | | Notes: svn path=/projects/clang900-import/; revision=352308
| * \ \ Merge ^/head r351732 through r352104.Dimitry Andric2019-09-091-0/+82
| |\ \ \ | | | | | | | | | | | | | | | Notes: svn path=/projects/clang900-import/; revision=352105
| * | | | Update ObsoleteFiles.inc (with exact dates to be filled in later).Dimitry Andric2019-09-061-3/+150
| | | | | | | | | | | | | | | | | | | | Notes: svn path=/projects/clang900-import/; revision=351956
| * | | | Merge ^/head r351317 through r351731.Dimitry Andric2019-09-031-2/+5
| |\ \ \ \ | | | | | | | | | | | | | | | | | | Notes: svn path=/projects/clang900-import/; revision=351732
| * | | | | Update build glue for building libc++.Dimitry Andric2019-08-281-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | Notes: svn path=/projects/clang900-import/; revision=351578
* | | | | | ZFS: fix several of the "zpool create" testsAlan Somers2019-10-051-0/+4
| |_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Remove zpool_create_013_neg. FreeBSD doesn't have an equivalent of Solaris's metadevices. GEOM would be the equivalent, but since all geoms are the same from ZFS's perspective, this test would be redundant with zpool_create_012_neg * Remove zpool_create_014_neg. FreeBSD does not support swapping to regular files. * Remove zpool_create_016_pos. This test is redundant with literally every other test that creates a disk-backed pool. * s:/etc/vfstab:/etc/fstab in zpool_create_011_neg * Delete the VTOC-related portion of zpool_create_008_pos. FreeBSD doesn't use VTOC. * Replace dumpadm with dumpon and swap with swapon in multiple tests. * In zpool_create_015_neg, don't require "zpool create -n" to fail. It's reasonable for that variant to succeed, because it doesn't actually open the zvol. * Greatly simplify zpool_create_012_neg. Make it safer, too, but not interfering with the system's regular swap devices. * Expect zpool_create_011_neg to fail (PR 241070) * Delete some redundant cleanup steps in various tests * Remove some unneeeded ATF timeout specifications. The default is fine. PR: 241070 MFC after: 2 weeks Sponsored by: Axcient Notes: svn path=/head/; revision=353118
* | | | | In r340411, libufs.so's major number was bumped to 7, but an entry inDimitry Andric2019-09-251-0/+3
| |_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | ObsoleteFiles.inc was not added. Retroactively fix that. Notes: svn path=/head/; revision=352698
* | | | Remove unnecessary entries from the previous commit.Jung-uk Kim2019-09-101-3/+0
| | | | | | | | | | | | | | | | Notes: svn path=/head/; revision=352197
* | | | Merge OpenSSL 1.1.1d.Jung-uk Kim2019-09-101-0/+3
| | | | | | | | | | | | | | | | Notes: svn path=/head/; revision=352191
* | | | Fix bad pathBaptiste Daroussin2019-09-101-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Reported by: zeising Notes: svn path=/head/; revision=352131
* | | | Remove a blankline wrongly added in r351781Baptiste Daroussin2019-09-101-1/+0
| | | | | | | | | | | | | | | | Notes: svn path=/head/; revision=352129
* | | | Remove mklocale(1) and colldef(1) which are deprecated since FreeBSD 11Baptiste Daroussin2019-09-101-0/+5
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In FreeBSD 11 along with the rework on the collation, mklocale(1) and colldef(1) has been replaced by localedef(1) (a note has been added to the manpage to state it). mklocale(1) and colldef(1) has been kept around to be able to build older versions of FreeBSD. None of the version requiring those tools are supported anymore so it is time to remove them from base Notes: svn path=/head/; revision=352128
* | | The efifat files are no longer used: remove the code to build themRebecca Cran2019-09-041-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | Reviewed by: imp, tsoome, emaste Differential Revision: https://reviews.freebsd.org/D20562 Notes: svn path=/head/; revision=351831
* | | - Retire pc-sysinstall(8)Kris Moore2019-09-031-0/+81
| |/ |/| | | | | | | | | | | | | | | | | https://reviews.freebsd.org/D21094 Submitted by: kmoore@FreeBSD.org Approved by: imp@FreeBSD.org Notes: svn path=/head/; revision=351781
* | Use relative paths in ObsoleteFiles.incNiclas Zeising2019-08-291-2/+2
| | | | | | | | | | | | | | | | Approved by: imp Differential Revision: https://reviews.freebsd.org/D21467 Notes: svn path=/head/; revision=351608
* | pwm.9 symlink shouldn't be removedNiclas Zeising2019-08-291-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When the pwm.9 manual was removed, a symlink between pwmbus.9 and pwm.9 was created, but there's an entry in ObsoleteFiles.inc to remove pwn.9, meaning that on every installation pwm.9 is created, and make delete-old deletes it. Remove the entry from ObsoleteFiles.inc, the symlink is clearly intentional and shouldn't be removed. Reviewed by: imp, ian Approved by: imp (implicit, review OK) Differential Revision: https://reviews.freebsd.org/D21198 Notes: svn path=/head/; revision=351607
* | Remove zlib 1.0.4 from kernel.Xin LI2019-08-251-0/+3
|/ | | | | | | | | PR: 229763 Reviewed by: emaste, Yoshihiro Ota <ota j email ne jp> Differential Revision: https://reviews.freebsd.org/D21375 Notes: svn path=/head/; revision=351480
* netpfil tests: Move pft_ping.py and sniffer.py to the common test directoryKristof Provost2019-08-191-0/+3
| | | | | | | | | | | | | | The pft_ping.py and sniffer.py tool is moved from tests/sys/netpfil/pf to tests/sys/netpfil/common directory because these tools are to be used in common for all the firewalls. Submitted by: Ahsan Barkati Reviewed by: kp, thj Sponsored by: Google, Inc. (GSoC 2019) Differential Revision: https://reviews.freebsd.org/D21276 Notes: svn path=/head/; revision=351212
* Delete sys/dir.h which was deprecated since 1997.Xin LI2019-08-161-0/+2
| | | | | | | | | | PR: 21519 Submitted by: Yoshihiro Ota <ota j email ne jp> Relnotes: yes Differential Revision: https://reviews.freebsd.org/D20479 Notes: svn path=/head/; revision=351140
* Remove obsolete header file.Xin LI2019-08-051-0/+2
| | | | Notes: svn path=/head/; revision=350581
* Remove cap_random(3).Mark Johnston2019-07-241-0/+5
| | | | | | | | | | | | | | | | Now that we have a way to obtain entropy in capability mode (getrandom(2)), libcap_random is obsolete. Remove it. Bump __FreeBSD_version in case anything happens to use it, though I've found no consumers. Reviewed by: delphij, emaste, oshogbo Relnotes: yes Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D21033 Notes: svn path=/head/; revision=350307
* More follow-up to r350075, I forgot to update ObsoleteFiles.Kevin Lo2019-07-171-3/+0
| | | | | | | Spotted by: lwhsu Notes: svn path=/head/; revision=350076
* Add vm_page_hold.9 to ObsoleteFiles.inc.Mark Johnston2019-07-111-1/+3
| | | | | | | Add a missing .gz suffix to pwm.9 while here. Notes: svn path=/head/; revision=349904
* Add pwm.9, it was also deleted during the big round of pwm changes.Ian Lepore2019-07-101-2/+2
| | | | Notes: svn path=/head/; revision=349873
* Fix path of lib32 libcasper.Tijl Coosemans2019-07-031-1/+1
| | | | | | | | Reported by: jhb MFC after: 1 week Notes: svn path=/head/; revision=349706
* Also remove lib32 version of libcasper.so.0.Tijl Coosemans2019-07-031-0/+1
| | | | Notes: svn path=/head/; revision=349640
* Also remove lib32 version of libprivateifconfig after r344530.Tijl Coosemans2019-07-031-0/+2
| | | | Notes: svn path=/head/; revision=349639
* Remove sys/capability.h for the third timeEd Maste2019-06-181-0/+2
| | | | | | | | | | | | | | | | | | | In all supported (and most unsupported) FreeBSD versions the appropriate header for Capsicum is sys/capsicum.h. Software including sys/capability.h is most likely looking for Linux capabilities based on the withdrawn POSIX.1e draft. This header was previously removed in r334929 and r340156, but reverted each time due to ports failures. These issues have now (broadly) been addressed. PR: 228878 [exp-run] Submitted by: eadler (r334929) Relnotes: Yes Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=349170
* Move/rename the sys/pwm.h header file to dev/pwm/pwmc.h. The file containsIan Lepore2019-06-151-0/+2
| | | | | | | | | ioctl definitions and related datatypes that allow userland control of pwm hardware via the pwmc device. The new name and location better reflects its assocation with a single device driver. Notes: svn path=/head/; revision=349074
* Remove pcf8563reg.h, the driver it was associated with was replaced in 2017Ian Lepore2019-06-151-0/+2
| | | | | | | with the nxprtc multi-chip driver. Notes: svn path=/head/; revision=349072
* Upgrade our copies of clang, llvm, lld, lldb, compiler-rt, libc++,Dimitry Andric2019-06-121-0/+151
| | | | | | | | | | | libunwind and openmp to the upstream release_80 branch r363030 (effectively, 8.0.1 rc2). The 8.0.1 release should follow this within a week or so. MFC after: 2 weeks Notes: svn path=/head/; revision=349004
* Remove kgzip and kgzldr.Xin LI2019-05-241-0/+5
| | | | | | | | | PR: 183666, 229763 Submitted by: Yoshihiro Ota <ota at j.email.ne.jp> Differential Revision: https://reviews.freebsd.org/D20248 Notes: svn path=/head/; revision=348225
* Fix ObsoleteFiles after ethernet driver removalNiclas Zeising2019-05-221-25/+25
| | | | | | | | | | | | | | Fix OpsoleteFiles.inc after removal of ethernet drivers. The drivers have manual pages, and manual pages are generally stored compressed, with a .gz suffix, but this is not reflected in ObsoleteFiles and make delete-old fails to remove them. Approved by: brooks Sponsored by: B3 Init Differential Revision: https://reviews.freebsd.org/D20351 Notes: svn path=/head/; revision=348114
* FCP-101: correct date of device driver removal.Brooks Davis2019-05-171-1/+1
| | | | Notes: svn path=/head/; revision=347926
* FCP-101: Remove xe(4)Brooks Davis2019-05-171-0/+2
| | | | | | | | | | Relnotes: yes FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md Reviewed by: jhb, imp Differential Revision: https://reviews.freebsd.org/D20230 Notes: svn path=/head/; revision=347923
* FCP-101: Remove wb(4)Brooks Davis2019-05-171-0/+1
| | | | | | | | | | Relnotes: yes FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md Reviewed by: jhb, imp Differential Revision: https://reviews.freebsd.org/D20230 Notes: svn path=/head/; revision=347922
* FCP-101: Remove vx(4).Brooks Davis2019-05-171-0/+1
| | | | | | | | | | Relnotes: yes FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md Reviewed by: jhb, imp Differential Revision: https://reviews.freebsd.org/D20230 Notes: svn path=/head/; revision=347921
* FCP-101: Remove txp(4).Brooks Davis2019-05-171-0/+2
| | | | | | | | | | Relnotes: yes FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md Reviewed by: jhb, imp Differential Revision: https://reviews.freebsd.org/D20230 Notes: svn path=/head/; revision=347920
* FCP-101: Remove tx(4).Brooks Davis2019-05-171-0/+2
| | | | | | | | | | Relnotes: yes FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md Reviewed by: jhb, imp Differential Revision: https://reviews.freebsd.org/D20230 Notes: svn path=/head/; revision=347919
* FCP-101: Remove tl(4).Brooks Davis2019-05-171-0/+2
| | | | | | | | | | Relnotes: yes FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md Reviewed by: jhb, imp Differential Revision: https://reviews.freebsd.org/D20230 Notes: svn path=/head/; revision=347918
* FCP-101: Remove sn(4).Brooks Davis2019-05-171-0/+2
| | | | | | | | | | Relnotes: yes FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md Reviewed by: jhb, imp Differential Revision: https://reviews.freebsd.org/D20230 Notes: svn path=/head/; revision=347917
* FCP-101: Remove sf(4).Brooks Davis2019-05-171-0/+2
| | | | | | | | | | Relnotes: yes FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md Reviewed by: jhb, imp Differential Revision: https://reviews.freebsd.org/D20230 Notes: svn path=/head/; revision=347916