Rename joy,ibcs2,linux to joy.sh,ibcs2.sh,linux.sh (via repo copy).

This commit is contained in:
Peter Wemm 1998-11-11 07:04:10 +00:00
parent 1b771b9577
commit 0ddd3cf262
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=41081
6 changed files with 8 additions and 67 deletions

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.20 1998/11/06 16:01:19 peter Exp $
# $Id: Makefile,v 1.21 1998/11/11 05:18:22 peter Exp $
.PATH: ${.CURDIR}/../../i386/ibcs2
KMOD= ibcs2
@ -19,6 +19,6 @@ opt_spx_hack.h:
afterinstall:
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/ibcs2 ${DESTDIR}/usr/bin
${.CURDIR}/ibcs2.sh ${DESTDIR}/usr/bin
.include <bsd.kmod.mk>

View File

@ -1,43 +0,0 @@
#!/bin/sh
#
# Copyright (C) 1994-1997
# FreeBSD Inc. 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 FreeBSD Inc. AND CONTRIBUTORS ``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 FreeBSD Inc. OR CONTRIBUTORS 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.
#
# $Id: ibcs2,v 1.7 1997/02/22 12:47:59 peter Exp $
PATH=/bin:/sbin:/usr/bin:/usr/sbin; export PATH
if [ $# -le 1 ]; then
LOADERS="coff" # elf
fi
set -e
kldload ibcs2
for loader in $LOADERS; do
kldload ibcs2_${loader}
done
set +e

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.8 1998/10/16 04:30:47 peter Exp $
# $Id: Makefile,v 1.9 1998/11/05 04:22:52 peter Exp $
.PATH: ${.CURDIR}/../../i386/isa
KMOD = joy
@ -15,8 +15,8 @@ opt_devfs.h:
touch opt_devfs.h
#afterinstall:
# ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
# ${.CURDIR}/joy ${DESTDIR}/usr/bin
afterinstall:
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/joy.sh ${DESTDIR}/usr/bin
.include <bsd.kmod.mk>

View File

@ -1,4 +0,0 @@
#!/bin/sh
# $Id: joy,v 1.3 1997/02/22 12:48:17 peter Exp $
kldload joy

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.21 1998/11/05 04:39:26 peter Exp $
# $Id: Makefile,v 1.22 1998/11/10 19:39:58 jkh Exp $
.PATH: ${.CURDIR}/../../i386/linux
KMOD= linux
@ -37,6 +37,6 @@ opt_linux.h opt_vmpage.h:
afterinstall:
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/linux ${DESTDIR}/usr/bin
${.CURDIR}/linux.sh ${DESTDIR}/usr/bin
.include <bsd.kmod.mk>

View File

@ -1,12 +0,0 @@
#!/bin/sh
# $Id: linux,v 1.5 1998/09/07 16:15:59 cracauer Exp $
FOUND=`kldstat -v | egrep 'linux(aout|elf)'`
if [ "x$FOUND" != x ] ; then
echo Linux driver already loaded
exit 1
else
kldload linux
fi