From 738859d47ecf2d428b90fa1055c5aaae91b3aeaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Tue, 4 Dec 2001 00:48:21 +0000 Subject: [PATCH] Call the ATAPI tape devices "ast" and "nast", not "rast" and "nrast". Add backward compatibility symlinks for good measure. DEVFS already gets this right (except for the symlinks). PR: 24781 Submitted by: Christian Weisgerber MFC after: 3 days --- etc/MAKEDEV | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/etc/MAKEDEV b/etc/MAKEDEV index fc3875ebe975..61fb0fc8092e 100644 --- a/etc/MAKEDEV +++ b/etc/MAKEDEV @@ -861,10 +861,12 @@ ast*) chr=119 case $unit in 0|1|2|3) - mknod rast${unit} c $chr $(($unit * 8 + 0)) root:operator - chmod 640 rast${unit} - mknod nrast${unit} c $chr $(($unit * 8 + 1)) root:operator - chmod 640 nrast${unit} + mknod ast${unit} c $chr $(($unit * 8 + 0)) root:operator + chmod 640 ast${unit} + ln -fs ast${unit} rast${unit} + mknod nast${unit} c $chr $(($unit * 8 + 1)) root:operator + chmod 640 nast${unit} + ln -fs nast${unit} nrast${unit} ;; *) echo bad unit for tape in: $i