2003-05-03 21:04:09 +04:00
|
|
|
/* $NetBSD: md.h,v 1.35 2003/05/03 17:04:10 fvdl Exp $ */
|
1997-09-27 03:02:53 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 1997 Piermont Information Systems Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Written by Philip A. Nelson for Piermont Information Systems Inc.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
1999-06-20 10:08:13 +04:00
|
|
|
* This product includes software developed for the NetBSD Project by
|
1997-09-27 03:02:53 +04:00
|
|
|
* Piermont Information Systems Inc.
|
|
|
|
* 4. The name of Piermont Information Systems Inc. may not be used to endorse
|
|
|
|
* or promote products derived from this software without specific prior
|
|
|
|
* written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY PIERMONT INFORMATION SYSTEMS INC. ``AS IS''
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL PIERMONT INFORMATION SYSTEMS INC. BE
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
|
|
|
|
* THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* md.h -- Machine specific definitions for the i386 */
|
|
|
|
|
1998-02-24 08:36:03 +03:00
|
|
|
|
1999-03-31 04:44:48 +04:00
|
|
|
#include <machine/cpu.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
1998-02-24 08:36:03 +03:00
|
|
|
/* i386 uses the mbr code. */
|
|
|
|
#include "mbr.h"
|
|
|
|
|
1997-09-27 03:02:53 +04:00
|
|
|
/* constants and defines */
|
|
|
|
|
1998-02-24 08:36:03 +03:00
|
|
|
|
1997-09-27 03:02:53 +04:00
|
|
|
/* Megs required for a full X installation. */
|
|
|
|
#define XNEEDMB 50
|
|
|
|
|
|
|
|
|
1997-11-09 07:14:10 +03:00
|
|
|
/*
|
|
|
|
* Default filesets to fetch and install during installation
|
|
|
|
* or upgrade. The standard sets are:
|
|
|
|
* base, etc, comp, games, man, misc, text,
|
|
|
|
* xbase, xfont, xserver, xcontrib, xcomp.
|
|
|
|
*
|
|
|
|
* i386 has the MD set kern first, because generic kernels are too
|
2000-10-11 15:05:03 +04:00
|
|
|
* big to fit on install floppies. i386 does not yet include the x sets.
|
1997-11-25 23:34:59 +03:00
|
|
|
*
|
|
|
|
* Third entry is the last extension name in the split sets for loading
|
|
|
|
* from floppy.
|
1997-11-09 07:14:10 +03:00
|
|
|
*/
|
1997-10-29 04:06:42 +03:00
|
|
|
EXTERN distinfo dist_list[]
|
1997-09-27 03:02:53 +04:00
|
|
|
#ifdef MAIN
|
1997-11-10 06:57:00 +03:00
|
|
|
= {
|
2003-04-06 20:12:36 +04:00
|
|
|
{"kern-GENERIC", 1, "Kernel : "},
|
|
|
|
{"kern-GENERIC_TINY", 0, "Kernel : "},
|
|
|
|
{"kern-GENERIC_LAPTOP", 0, "Kernel : "},
|
|
|
|
{"kern-GENERIC_DIAGNOSTIC", 0, "Kernel : "},
|
|
|
|
{"kern-GENERIC_PS2TINY", 0, "Kernel : "},
|
|
|
|
{"base", 1, "Base : "},
|
|
|
|
{"etc", 1, "System (/etc) : "},
|
|
|
|
{"comp", 1, "Compiler : "},
|
|
|
|
{"games", 1, "Games : "},
|
|
|
|
{"man", 1, "Manuals : "},
|
|
|
|
{"misc", 1, "Miscellaneous : "},
|
|
|
|
{"text", 1, "Text tools : "},
|
|
|
|
{"xbase", 1, "X11 clients : "},
|
|
|
|
{"xfont", 1, "X11 fonts : "},
|
|
|
|
{"xserver", 1, "X11 servers : "},
|
|
|
|
{"xcontrib", 1, "X11 contrib : "},
|
|
|
|
{"xcomp", 1, "X programming : "},
|
|
|
|
{"xmisc", 1, "X11 Misc. : "},
|
|
|
|
{ NULL, 0, NULL }
|
1997-10-29 04:06:42 +03:00
|
|
|
}
|
1997-09-27 03:02:53 +04:00
|
|
|
#endif
|
|
|
|
;
|
1997-10-29 04:06:42 +03:00
|
|
|
|
1997-11-09 07:14:10 +03:00
|
|
|
/*
|
|
|
|
* Disk names accepted as valid targets for a from-scratch installation.
|
|
|
|
*
|
2000-11-26 20:44:02 +03:00
|
|
|
* On i386, we allow "wd" ST-506/IDE disks, "sd" scsi disks, "ld" logical
|
2001-09-13 22:09:19 +04:00
|
|
|
* disks, "ed" IBM ESDI disks
|
1997-11-09 07:14:10 +03:00
|
|
|
*/
|
1997-10-29 04:06:42 +03:00
|
|
|
EXTERN char *disk_names[]
|
1997-10-18 02:17:05 +04:00
|
|
|
#ifdef MAIN
|
2001-06-16 18:33:08 +04:00
|
|
|
= {"wd", "sd", "ld", "ed", NULL}
|
1997-10-18 02:17:05 +04:00
|
|
|
#endif
|
|
|
|
;
|
|
|
|
|
2001-01-27 10:34:39 +03:00
|
|
|
/* Bootblock type */
|
|
|
|
EXTERN char *boottype INIT("");
|
1997-10-29 04:06:42 +03:00
|
|
|
|
1997-11-09 07:14:10 +03:00
|
|
|
/*
|
|
|
|
* Legal start character for a disk for checking input.
|
|
|
|
* this must return 1 for a character that matches the first
|
|
|
|
* characters of each member of disk_names.
|
|
|
|
*
|
2001-06-16 18:33:08 +04:00
|
|
|
* On i386, that means matching 'w' for st-506/ide, 's' for sd and 'l' for ld,
|
|
|
|
* 'e' for ed.
|
1997-11-09 07:14:10 +03:00
|
|
|
*/
|
2001-06-16 18:33:08 +04:00
|
|
|
#define ISDISKSTART(dn) (dn == 'w' || dn == 's' || dn == 'l' || dn == 'e')
|
1997-10-29 04:06:42 +03:00
|
|
|
|
1997-11-09 07:14:10 +03:00
|
|
|
/*
|
|
|
|
* Machine-specific command to write a new label to a disk.
|
|
|
|
* For example, i386 uses "/sbin/disklabel -w -r", just like i386
|
|
|
|
* miniroot scripts, though this may leave a bogus incore label.
|
|
|
|
* Sun ports should probably use DISKLABEL_CMD "/sbin/disklabel -w"
|
|
|
|
* to get incore to ondisk inode translation for the Sun proms.
|
|
|
|
* If not defined, we assume the port does not support disklabels and
|
|
|
|
* hand-edited disklabel will NOT be written by MI code.
|
|
|
|
*
|
|
|
|
* On i386, do what the 1.2 install scripts did.
|
|
|
|
*/
|
|
|
|
#define DISKLABEL_CMD "disklabel -w -r"
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Default fileystem type for floppy disks.
|
|
|
|
* On i386, that is msdos.
|
|
|
|
*/
|
|
|
|
EXTERN char *fdtype INIT("msdos");
|
|
|
|
|
1999-03-31 04:44:48 +04:00
|
|
|
extern struct disklist *disklist;
|
|
|
|
extern struct nativedisk_info *nativedisk;
|
|
|
|
extern struct biosdisk_info *biosdisk;
|
|
|
|
|
|
|
|
#define _PATH_MBR "/usr/mdec/mbr"
|
1999-05-02 17:07:15 +04:00
|
|
|
#define _PATH_BOOTSEL "/usr/mdec/mbr_bootsel"
|
|
|
|
|
|
|
|
extern struct mbr_bootsel *mbs;
|
|
|
|
|
2000-10-11 15:05:03 +04:00
|
|
|
#define LIB_COUNT 0
|
|
|
|
#define LIB_MOVE 1
|
1999-05-02 17:07:15 +04:00
|
|
|
|
|
|
|
extern int defbootselpart, defbootseldisk;
|
|
|
|
|
2000-12-22 13:12:12 +03:00
|
|
|
void disp_bootsel (struct mbr_partition *, struct mbr_bootsel *);
|
1997-11-09 07:14:10 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* prototypes for MD code.
|
|
|
|
*/
|
1997-09-27 03:02:53 +04:00
|
|
|
|
|
|
|
|