Subject: Installin onto ld(4) drives
To: None <tech-install@netbsd.org>
From: Daniel Eggert <danieleggert@mac.com>
List: tech-install
Date: 03/11/2003 14:25:53
I think it would be nice, if sysinst could install onto ld(4) drives.
What do you say to the following path? If it's ok, maybe we should add
the same to some of the other platforms.
I use ld(4) drives connected to mlx(4) RAID.
Daniel
*** sysinst/arch/macppc/md.h.org Tue Mar 11 14:20:53 2003
--- sysinst/arch/macppc/md.h Tue Mar 11 14:21:22 2003
***************
*** 76,82 ****
*/
EXTERN char *disk_names[]
#ifdef MAIN
! = {"sd", "wd", NULL}
#endif
;
--- 76,82 ----
*/
EXTERN char *disk_names[]
#ifdef MAIN
! = {"sd", "wd", ,"ld", NULL}
#endif
;
***************
*** 85,91 ****
* this must return 1 for a character that matches the first
* characters of each member of disk_names.
*/
! #define ISDISKSTART(dn) (dn == 's' || dn == 'w')
/*
* Machine-specific command to write a new label to a disk.
--- 85,91 ----
* this must return 1 for a character that matches the first
* characters of each member of disk_names.
*/
! #define ISDISKSTART(dn) (dn == 's' || dn == 'w' || dn == 'l')
/*
* Machine-specific command to write a new label to a disk.