diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2001-09-01 16:47:04 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2001-09-01 16:47:04 +0000 |
commit | 6045d5bb00b12a1d49c45cf8fc91d13b2ec1ab0d (patch) | |
tree | 15914a003f9e3260a244479c8057231d5f8456ba /distrib/macppc/runlist.sh | |
parent | 5cd95bbee8e1e0fd211b3f68255c23edbc21b8e0 (diff) |
Move the powerpc ramdisk building support from powerpc to macppc.
Diffstat (limited to 'distrib/macppc/runlist.sh')
-rw-r--r-- | distrib/macppc/runlist.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/distrib/macppc/runlist.sh b/distrib/macppc/runlist.sh new file mode 100644 index 00000000000..24c15e5ebb0 --- /dev/null +++ b/distrib/macppc/runlist.sh @@ -0,0 +1,13 @@ +# $OpenBSD: runlist.sh,v 1.1 2001/09/01 16:47:03 drahn Exp $ + +if [ "X$1" = "X-d" ]; then + SHELLCMD=cat + shift +else + SHELLCMD="sh -e" +fi + +( while [ "X$1" != "X" ]; do + cat $1 + shift +done ) | awk -f ${TOPDIR}/list2sh.awk | ${SHELLCMD} |