move sysctl to /sbin/sysctl. symlink from /usr/sbin/sysctl

is supplied for backward compatibility.

add /sbin/sysctl to base/mi (does not remove /usr/sbin/sysctl
as we have a symlink)
This commit is contained in:
itojun 2000-01-17 02:36:31 +00:00
parent eada5082e8
commit 3ea807c958
3 changed files with 9 additions and 5 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: mi,v 1.139 1999/12/29 04:16:23 hubertf Exp $
# $NetBSD: mi,v 1.140 2000/01/17 02:36:32 itojun Exp $
.
./altroot
./bin
@ -128,6 +128,7 @@
./sbin/slattach
./sbin/swapctl
./sbin/swapon
./sbin/sysctl
./sbin/ttyflags
./sbin/tunefs
./sbin/umount

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.64 1999/11/23 05:28:16 mrg Exp $
# $NetBSD: Makefile,v 1.65 2000/01/17 02:36:31 itojun Exp $
# @(#)Makefile 8.5 (Berkeley) 3/31/94
# Not ported: XNSrouted enpload scsiformat startslip
@ -7,8 +7,8 @@
SUBDIR= atactl badsect bim ccdconfig disklabel dmesg edlabel fastboot fdisk \
fsck fsirand ifconfig init ldconfig lmcctl mknod modload modunload \
mount newbtconf nologin ping raidctl reboot rcorder rndctl route \
routed savecore scsictl shutdown slattach swapctl ttyflags umount \
wsconsctl
routed savecore scsictl shutdown slattach swapctl sysctl ttyflags \
umount wsconsctl
# support for various file systems
SUBDIR+= mount_ados

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.8 2000/01/17 02:30:18 itojun Exp $
# $NetBSD: Makefile,v 1.9 2000/01/17 02:36:32 itojun Exp $
# @(#)Makefile 8.1 (Berkeley) 6/6/93
PROG= sysctl
@ -7,4 +7,7 @@ MAN= sysctl.8
CPPFLAGS+=-DINET6 -DIPSEC
#CPPFLAGS+=-DTCP6
afterinstall:
(cd ${DESTDIR}/usr/sbin; ln -sf ../../sbin/sysctl .)
.include <bsd.prog.mk>