diff options
author | Emmanuel Vadot <manu@FreeBSD.org> | 2019-09-05 14:15:47 +0000 |
---|---|---|
committer | Emmanuel Vadot <manu@FreeBSD.org> | 2019-09-05 14:15:47 +0000 |
commit | 4c1a82cea504df7a79f5bd8f7d0a41cacccff16e (patch) | |
tree | c6f11f1deb6213534784a9cdd5968fd227aad5b5 /sbin | |
parent | 3c8868056c7b3b1a8f9f1883398027b732116849 (diff) | |
download | src-4c1a82cea504df7a79f5bd8f7d0a41cacccff16e.tar.gz src-4c1a82cea504df7a79f5bd8f7d0a41cacccff16e.zip |
pkgbase: Create a FreeBSD-utilities package and make it the default one
The default package use to be FreeBSD-runtime but it should only contain
binaries and libs enough to boot to single user and repair the system, it
is also very handy to have a package that can be tranform to a small mfsroot.
So create a new package named FreeBSD-utilities and make it the default one.
Also move a few binaries and lib into this package when it make sense.
Reviewed by: bapt, gjb
Differential Revision: https://reviews.freebsd.org/D21506
Notes
Notes:
svn path=/head/; revision=351858
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/devd/Makefile | 2 | ||||
-rw-r--r-- | sbin/nfsiod/Makefile | 1 | ||||
-rw-r--r-- | sbin/nos-tun/Makefile | 1 | ||||
-rw-r--r-- | sbin/setkey/Makefile | 1 |
4 files changed, 1 insertions, 4 deletions
diff --git a/sbin/devd/Makefile b/sbin/devd/Makefile index 0d6c54f24f23..ed61b5ee8015 100644 --- a/sbin/devd/Makefile +++ b/sbin/devd/Makefile @@ -3,7 +3,7 @@ .include <src.opts.mk> WARNS?= 3 -PACKAGE=runtime +PACKAGE=utilities CONFGROUPS= CONFS DEVD CONFS= devd.conf DEVD= devmatch.conf diff --git a/sbin/nfsiod/Makefile b/sbin/nfsiod/Makefile index ea66a6dfb1e5..47cd290ec78e 100644 --- a/sbin/nfsiod/Makefile +++ b/sbin/nfsiod/Makefile @@ -1,7 +1,6 @@ # @(#)Makefile 8.1 (Berkeley) 6/5/93 # $FreeBSD$ -PACKAGE=runtime PROG= nfsiod MAN= nfsiod.8 diff --git a/sbin/nos-tun/Makefile b/sbin/nos-tun/Makefile index 480141ec6b6f..9f1024f41e8e 100644 --- a/sbin/nos-tun/Makefile +++ b/sbin/nos-tun/Makefile @@ -1,6 +1,5 @@ # $FreeBSD$ -PACKAGE=runtime PROG= nos-tun MAN= nos-tun.8 WARNS?= 3 diff --git a/sbin/setkey/Makefile b/sbin/setkey/Makefile index a4d5b1201b7a..12f258158dbb 100644 --- a/sbin/setkey/Makefile +++ b/sbin/setkey/Makefile @@ -29,7 +29,6 @@ .include <src.opts.mk> -PACKAGE=runtime PROG= setkey MAN= setkey.8 SRCS= setkey.c parse.y token.l |