Remove residual blank line at start of MakefileThis is a residual of the $FreeBSD$ removal.MFC After: 3 days (though I'll just run the command on the branches)Sponsored by: Netflix
Use proper convention for relative path linkingThe change made in e835ee68e13361b841c983fa4a49dd6c19dcdec4 did notfollow the convention for relative path symlinks. Per the convention,paths be pre
Use proper convention for relative path linkingThe change made in e835ee68e13361b841c983fa4a49dd6c19dcdec4 did notfollow the convention for relative path symlinks. Per the convention,paths be prefixed with `${BINDIR}`, not `/bin/`. `${BINDIR}` can bemodified from the Makefile, on the command line, or in theenvironment. This convention is the canonically correct way to dothings.This follows the convention used in `bin/pkill/Makefile`,`bin/timeout/Makefile`, etc.MFC after: 1 weekMFC with: f05948d4e98d3abd0965a2994e9e42add6908ff3MFC with: e835ee68e13361b841c983fa4a49dd6c19dcdec4Requested by: jrtc27, kevans
show more ...
Remove $FreeBSD$: two-line nroff patternRemove /^\.\\"\n\.\\"\s*\$FreeBSD\$$\n/
Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
Remove $FreeBSD$: one-line .c patternRemove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
Link /usr/bin/cpuset to a relative pathThis creates an appropriate symlink instead of a potentially incorrectpath pointing to the absolute path for cpuset(8) on the host.MFC after: 2 weeksMFC w
Link /usr/bin/cpuset to a relative pathThis creates an appropriate symlink instead of a potentially incorrectpath pointing to the absolute path for cpuset(8) on the host.MFC after: 2 weeksMFC with: f05948d4e98d3abd0965aRequested by: impReviewed by: kevansDifferential Revision: https://reviews.freebsd.org/D41419
cpuset(8): move to /bin/Summary:This change moves /usr/bin/cpuset to /bin/cpuset so it is more readilyavailable on hosts where the /usr partition might not be mounted at thetime / has been mount
cpuset(8): move to /bin/Summary:This change moves /usr/bin/cpuset to /bin/cpuset so it is more readilyavailable on hosts where the /usr partition might not be mounted at thetime / has been mounted.Remove some complexity from rc.subr(8) since /bin is assumed to alwaysbe present if/when / is mounted.MFC after: 2 weeksMFC with: 0661f93892a2, 271d552379afTest Plan:- Test out rc.subr change.- Confirm that the installation logic does what's needed.Relnotes: yes (moving cpuset may impact strict file permissions/mode checking)Reviewers: kevansSubscribers: impDifferential Revision: https://reviews.freebsd.org/D40057