diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-05-30 02:12:57 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-05-30 02:12:57 +0000 |
commit | b15a5a165339d99f4dd696f22eb53227671e1b7c (patch) | |
tree | df0e361f461c1f4de76c81e5b9dc791ba6768ec8 /etc/etc.amiga/MAKEDEV | |
parent | d818215253f2f1d16376a6482ac14c27f16520a1 (diff) |
Remove ipf. Darren Reed has interpreted his (old, new, whichever)
licence in a way that makes ipf not free according to the rules we
established over 5 years ago, at www.openbsd.org/goals.html (and those
same basic rules govern the other *BSD projects too). Specifically,
Darren says that modified versions are not permitted. But software
which OpenBSD uses and redistributes must be free to all (be they
people or companies), for any purpose they wish to use it, including
modification, use, peeing on, or even integration into baby mulching
machines or atomic bombs to be dropped on Australia. Furthermore, we
know of a number of companies using ipf with modification like us, who
are now in the same situation, and we hope that some of them will work
with us to fill this gap that now exists in OpenBSD (temporarily, we
hope).
Diffstat (limited to 'etc/etc.amiga/MAKEDEV')
-rw-r--r-- | etc/etc.amiga/MAKEDEV | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/etc/etc.amiga/MAKEDEV b/etc/etc.amiga/MAKEDEV index dbd56c36923..03d0178341f 100644 --- a/etc/etc.amiga/MAKEDEV +++ b/etc/etc.amiga/MAKEDEV @@ -1,5 +1,5 @@ #!/bin/sh - -# $OpenBSD: MAKEDEV,v 1.46 2001/04/10 03:03:50 brad Exp $ +# $OpenBSD: MAKEDEV,v 1.47 2001/05/30 02:11:12 deraadt Exp $ # $NetBSD: MAKEDEV,v 1.21 1996/05/19 21:03:49 veego Exp $ # # Copyright (c) 1990 The Regents of the University of California. @@ -86,7 +86,6 @@ # lkm loadable kernel modules interface # bpf* Berkeley Packet Filter # tun* network tunnel driver -# ipf IP filter # ss* SCSI scanners # uk* SCSI Unknown device # *random inkernal random data source @@ -168,7 +167,7 @@ all) sh $this vnd0 vnd1 vnd2 vnd3 vnd4 vnd5 vnd6 cd0 cd1 fd0 fd1 fd2 fd3 sh $this bpf0 bpf1 bpf2 bpf3 bpf4 bpf5 bpf6 bpf7 bpf8 bpf9 sh $this view00 view01 view02 view03 view04 view05 pty0 pty1 - sh $this lpa0 lpa1 lpt0 lpt1 lpt2 ipl + sh $this lpa0 lpa1 lpt0 lpt1 lpt2 sh $this ccd0 ccd1 ccd2 ccd3 wd0 wd1 ch0 uk0 uk1 sh $this tun0 tun1 par0 lkm ss0 random audio0 xfs0 local ;; @@ -182,7 +181,7 @@ floppy|ramdisk) std) rm -f console drum kmem mem reload null zero tty - rm -f klog stdin stdout stderr ipf ksyms + rm -f klog stdin stdout stderr ksyms mknod console c 0 0 mknod drum c 3 0 ; chmod 640 drum ; chown root.kmem drum mknod kmem c 2 1 ; chmod 640 kmem ; chown root.kmem kmem @@ -195,7 +194,6 @@ std) mknod stdin c 21 0 ; chmod 666 stdin mknod stdout c 21 1 ; chmod 666 stdout mknod stderr c 21 2 ; chmod 666 stderr - mknod ipf c 34 0 ; chmod 444 ipf mknod ksyms c 42 0 ; chmod 640 ksyms ; chown root.kmem ksyms ;; @@ -598,15 +596,6 @@ lpt*|lpa*) chown root.wheel $name$unit ;; -ipl) - rm -f ipl ipnat ipstate ipauth - mknod ipl c 34 0 - mknod ipnat c 34 1 - mknod ipstate c 34 2 - mknod ipauth c 34 3 - chown root.wheel ipl ipnat ipstate ipauth - ;; - tun*) unit=`expr $i : 'tun\(.*\)'` rm -f tun$unit |