Skip to content

Commit 90c5d0e

Browse files
author
veego
committed
the amiga uses the c-partition for the whole cdrom disc and not the
d-partition which is used by the i386 port don't forget to update the device nodes in /dev before you try cd-audio players like xmcd2.0
1 parent e124434 commit 90c5d0e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

etc/etc.amiga/MAKEDEV

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh -
22
#
3-
# $NetBSD: MAKEDEV,v 1.19 1996/03/02 13:58:04 veego Exp $
3+
# $NetBSD: MAKEDEV,v 1.20 1996/04/13 01:02:18 veego Exp $
44
#
55
# Copyright (c) 1990 The Regents of the University of California.
66
# All rights reserved.
@@ -250,8 +250,9 @@ cd*)
250250
case $unit in
251251
0|1|2|3|4|5|6)
252252
mknod ${name}${unit}a b $blk `expr $unit '*' 8 + 0`
253-
mknod ${name}${unit}d b $blk `expr $unit '*' 8 + 3`
253+
mknod ${name}${unit}c b $blk `expr $unit '*' 8 + 2`
254254
mknod r${name}${unit}a c $chr `expr $unit '*' 8 + 0`
255+
mknod r${name}${unit}c c $chr `expr $unit '*' 8 + 2`
255256
chgrp operator ${name}${unit}[a-h] r${name}${unit}[a-h]
256257
chmod 640 ${name}${unit}[a-h] r${name}${unit}[a-h]
257258
;;

0 commit comments

Comments
 (0)