From owner-freebsd-hackers Sun Apr 30 00:46:41 1995 Return-Path: hackers-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id AAA11665 for hackers-outgoing; Sun, 30 Apr 1995 00:46:41 -0700 Received: from ref.tfs.com (ref.tfs.com [140.145.254.251]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id AAA11659 for ; Sun, 30 Apr 1995 00:46:40 -0700 Received: (from julian@localhost) by ref.tfs.com (8.6.8/8.6.6) id AAA28200; Sun, 30 Apr 1995 00:45:19 -0700 From: Julian Elischer Message-Id: <199504300745.AAA28200@ref.tfs.com> Subject: Re: please update /dev/MAKEDEV To: bde@zeta.org.au (Bruce Evans) Date: Sun, 30 Apr 1995 00:45:18 -0700 (PDT) Cc: freebsd-hackers@FreeBSD.org, root@ns2.redline.ru In-Reply-To: <199504300700.RAA17135@godzilla.zeta.org.au> from "Bruce Evans" at Apr 30, 95 05:00:30 pm Content-Type: text Content-Length: 704 Sender: hackers-owner@FreeBSD.org Precedence: bulk > > >Subject: please update /dev/MAKEDEV > > >+ mach-4) > >+ mknod iopl c 22 0 > >+ mknod kbd c 23 0 > >+ mknod mouse c 24 0 > >+ mknod time c 25 0 > >+ mknod timezone c 26 0 > >+ ;; > > This can't be done. It conflicts with FreeBSD's devices: > > 22: fd > 23: bpf > 24: pca > 25: va > 26: spkr > > In general, foreign device numbers will always conflict or not work. maybe we could do the following: (we want to keep these people on-side) mkdir /dev/MACH-4 cd /dev/MACH-4 echo "MACH-4 devices.. DO NOT USE UNDER FREEBSD" >README mknod (devices mentioned) cd.. ln -s MACH-4/iopl iopl {etc.....} having them in the filesytem won't hurt us unless peole try use them.. > > Bruce > julian