From a262e6cddb810a6befd00723551919d5c877c8f3 Mon Sep 17 00:00:00 2001 From: ache Date: Sat, 22 Oct 1994 02:09:06 +0000 Subject: Speaker driver test script Obtained from: FreeBSD 1.1.5.1 --- usr.sbin/spkrtest/Makefile | 9 +++++++++ usr.sbin/spkrtest/spkrtest.sh | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 usr.sbin/spkrtest/Makefile create mode 100644 usr.sbin/spkrtest/spkrtest.sh (limited to 'usr.sbin/spkrtest') diff --git a/usr.sbin/spkrtest/Makefile b/usr.sbin/spkrtest/Makefile new file mode 100644 index 0000000..fac0040 --- /dev/null +++ b/usr.sbin/spkrtest/Makefile @@ -0,0 +1,9 @@ +NOMAN= noman + +clean depend lint tags obj: + +install: + install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${.CURDIR}/spkrtest.sh ${DESTDIR}/${BINDIR}/spkrtest + +.include diff --git a/usr.sbin/spkrtest/spkrtest.sh b/usr.sbin/spkrtest/spkrtest.sh new file mode 100644 index 0000000..319f352 --- /dev/null +++ b/usr.sbin/spkrtest/spkrtest.sh @@ -0,0 +1,38 @@ +: +# +# Test script for the speaker driver +# +# v1.0 by Eric S. Raymond (Feb 1990) +# v1.1 rightstuff contributed by Eric S. Tiedemann (est@snark.thyrsus.com) +# +reveille="t255l8c.f.afc~c.f.afc~c.f.afc.f.a..f.~c.f.afc~c.f.afc~c.f.afc~c.f.." +contact="f" +dance="t240dcdc/dev/speaker;; +contact) echo $contact >/dev/speaker;; +dance) echo $dance >/dev/speaker;; +loony) echo $loony >/dev/speaker;; +sinister) echo $sinister >/dev/speaker;; +rightstuff) echo $rightstuff >/dev/speaker;; +toccata) echo $toccata >/dev/speaker;; +startrek) echo $startrek >/dev/speaker;; +*) + echo "No such tune. Available tunes are:" + echo + echo "reveille -- Reveille" + echo "contact -- Contact theme from Close Encounters" + echo "dance -- Lord of the Dance (aka Simple Gifts)" + echo "loony -- Loony Toons theme" + echo "sinister -- standard villain's entrance music" + echo "rightstuff -- a trope from \"The Right Stuff\" score by Bill Conti" + echo "toccata -- opening bars of Bach's Toccata and Fugue in D Minor" + echo "startrek -- opening bars of the theme from Star Trek Classic" + ;; +esac -- cgit v1.1