diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2000-11-02 14:15:30 +0000 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2000-11-02 14:15:30 +0000 |
commit | 97e0865a0a20c380d5429feb89ae82d9740d2189 (patch) | |
tree | dbc8c2eb0a3477825ed84e3376c7fa80fdb7a5d7 /sys/modules/joy | |
parent | f7c4ac38dc83d51ee188b9e34d42b14170ee0341 (diff) | |
download | FreeBSD-src-97e0865a0a20c380d5429feb89ae82d9740d2189.zip FreeBSD-src-97e0865a0a20c380d5429feb89ae82d9740d2189.tar.gz |
Retire the joy(8) script. Using shell scripts to load kernel loadable
modules is out of fashion.
There is still a joy(4) manual page to clue people into the existence of
the joy of FreeBSD.
Diffstat (limited to 'sys/modules/joy')
-rw-r--r-- | sys/modules/joy/Makefile | 6 | ||||
-rw-r--r-- | sys/modules/joy/joy.8 | 46 | ||||
-rw-r--r-- | sys/modules/joy/joy.sh | 4 |
3 files changed, 0 insertions, 56 deletions
diff --git a/sys/modules/joy/Makefile b/sys/modules/joy/Makefile index 379bbc9..7c7eefb 100644 --- a/sys/modules/joy/Makefile +++ b/sys/modules/joy/Makefile @@ -4,10 +4,4 @@ KMOD = joy SRCS = bus_if.h device_if.h isa_if.h joy.c -.if exists(${DESTDIR}/usr/bin) -afterinstall: - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ - ${.CURDIR}/joy.sh ${DESTDIR}/usr/bin/joy -.endif - .include <bsd.kmod.mk> diff --git a/sys/modules/joy/joy.8 b/sys/modules/joy/joy.8 deleted file mode 100644 index e073e47..0000000 --- a/sys/modules/joy/joy.8 +++ /dev/null @@ -1,46 +0,0 @@ -.\" -.\" Copyright (c) 1996 Jean-Marc Zucconi <jmz@cabri.obs-besancon.fr> -.\" All rights reserved. -.\" -.\" Redistribution and use in source and binary forms, with or without -.\" modification, are permitted provided that the following conditions -.\" are met: -.\" 1. Redistributions of source code must retain the above copyright -.\" notice, this list of conditions and the following disclaimer. -.\" 2. Redistributions in binary form must reproduce the above copyright -.\" notice, this list of conditions and the following disclaimer in the -.\" documentation and/or other materials provided with the distribution. -.\" -.\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR -.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -.\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT, -.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -.\" -.\" $FreeBSD$ -.\" -.Dd March 16, 1996 -.Dt JOY 8 -.Os FreeBSD -.Sh NAME -.Nm joy -.Nd load the joystick driver kernel module -.Sh SYNOPSIS -.Nm joy -.Sh DESCRIPTION -The -.Nm -utility loads the joystick driver kernel module. -.Sh FILES -.Bl -tag -width /modules/joy.ko -.It Pa /modules/joy.ko -joystick loadable kernel module. -.Sh "SEE ALSO" -.Xr joy 4 , -.Xr kld 4 , -.Xr kldload 8 diff --git a/sys/modules/joy/joy.sh b/sys/modules/joy/joy.sh deleted file mode 100644 index 48c5482..0000000 --- a/sys/modules/joy/joy.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -# $FreeBSD$ - -kldload joy |