#!/bin/sh # # Here is a generic script that makes a Sun3 boot tape using # the files in this directory. The tape layout is: # # segment 0: tapeboot # segment 1: netbsd.sun3 (RAMDISK3) # segment 2: netbsd.sun3x (RAMDISK3X) # segment 3: miniroot image # # $NetBSD: MakeBootTape,v 1.7 2002/11/18 12:39:55 lukem Exp $ T=${1:-/dev/nrst0} # Entertain... set -x # Make sure we start at the beginning. mt -f $T rewind # Segment 1 is the tapeboot program. dd if=tapeboot of=$T obs=8k conv=sync # Segment 2 is the Sun3 ramdisk kernel. gzip -d -c ../../binary/kernel/netbsd-RAMDISK.gz | dd of=$T obs=8k conv=sync # Segment 3 is the Sun3X ramdisk kernel. gzip -d -c ../../binary/kernel/netbsd-RAMDISK3X.gz | dd of=$T obs=8k conv=sync # Segment 4 is the miniroot image, unzipped! gzip -d -c ../miniroot/miniroot.gz | dd of=$T obs=8k # Done! mt -f $T rewind /select> NetBSD fork for lockdoc analysismerlin@scholz.ruhr
summaryrefslogtreecommitdiff
path: root/dist/ipf/lib/optname.c
AgeCommit message (Expand)Author
2012-09-15IPF 5.1.2 is in external/bsd/ipf and sys/external/bsd/ipf now;plunky
2012-02-15Back out the recent import of IPFilter 5.1.1 for the upcoming branch,riz
2012-01-30Import IPFilter 5.1.1darrenr
2007-04-14Import IPFilter 4.1.19martin
2004-03-28Import IPFilter 4.1.1martti