11.5Stsutsui/*	$NetBSD: md.h,v 1.5 2022/06/11 16:38:51 tsutsui Exp $	*/
21.1Sdholland
31.1Sdholland/*
41.1Sdholland * Copyright 1997 Piermont Information Systems Inc.
51.1Sdholland * All rights reserved.
61.1Sdholland *
71.1Sdholland * Based on code written by Philip A. Nelson for Piermont Information
81.1Sdholland * Systems Inc.
91.1Sdholland *
101.1Sdholland * Redistribution and use in source and binary forms, with or without
111.1Sdholland * modification, are permitted provided that the following conditions
121.1Sdholland * are met:
131.1Sdholland * 1. Redistributions of source code must retain the above copyright
141.1Sdholland *    notice, this list of conditions and the following disclaimer.
151.1Sdholland * 2. Redistributions in binary form must reproduce the above copyright
161.1Sdholland *    notice, this list of conditions and the following disclaimer in the
171.1Sdholland *    documentation and/or other materials provided with the distribution.
181.1Sdholland * 3. The name of Piermont Information Systems Inc. may not be used to endorse
191.1Sdholland *    or promote products derived from this software without specific prior
201.1Sdholland *    written permission.
211.1Sdholland *
221.1Sdholland * THIS SOFTWARE IS PROVIDED BY PIERMONT INFORMATION SYSTEMS INC. ``AS IS''
231.1Sdholland * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
241.1Sdholland * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
251.1Sdholland * ARE DISCLAIMED. IN NO EVENT SHALL PIERMONT INFORMATION SYSTEMS INC. BE
261.1Sdholland * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
271.1Sdholland * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
281.1Sdholland * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
291.1Sdholland * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
301.1Sdholland * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
311.1Sdholland * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
321.1Sdholland * THE POSSIBILITY OF SUCH DAMAGE.
331.1Sdholland *
341.1Sdholland */
351.1Sdholland
361.1Sdholland/*
371.1Sdholland * Symbolic names for disk partitions
381.1Sdholland */
391.1Sdholland#include <machine/disklabel.h>
401.1Sdholland
411.3Smartin#define	PART_BOOT	(8*MEG)
421.3Smartin#define	PART_BOOT_TYPE	FS_SYSVBFS
431.5Stsutsui#define	PART_BOOT_MOUNT	"/boot"
441.1Sdholland
451.1Sdholland#define	DEFROOTSIZE	200	/* Default root size */
461.2Smartin#define	XNEEDMB		250	/* Extra megs for full X installation */
471.2Smartin#define DEBNEEDMB	900	/* Extra megs for debug sets */
481.1Sdholland
491.1Sdholland#define	SET_KERNEL_1_NAME	"kern-GENERIC"
501.1Sdholland
511.1Sdholland/*
521.1Sdholland * Machine-specific command to write a new label to a disk.
531.1Sdholland * If not defined, we assume the port does not support disklabels and
541.1Sdholland * the hand-edited disklabel will NOT be written by MI code.
551.1Sdholland * ews4800mips stores disklabel and EWS-UX compatible PDINFO+VTOC.
561.1Sdholland * Don't use -r option.
571.1Sdholland */
581.1Sdholland#define	DISKLABEL_CMD	"disklabel -w"
591.1Sdholland
601.1Sdhollandextern int ews4800mips_boot_size(void);
611.1Sdhollandextern int ews4800mips_sysvbfs_size(void);
62