Blame mach/err_boot.sub

Packit 6c4009
/*
Packit 6c4009
 * Mach Operating System
Packit 6c4009
 * Copyright (c) 1992 Carnegie Mellon University
Packit 6c4009
 * All Rights Reserved.
Packit 6c4009
 *
Packit 6c4009
 * Permission to use, copy, modify and distribute this software and its
Packit 6c4009
 * documentation is hereby granted, provided that both the copyright
Packit 6c4009
 * notice and this permission notice appear in all copies of the
Packit 6c4009
 * software, derivative works or modified versions, and any portions
Packit 6c4009
 * thereof, and that both notices appear in supporting documentation.
Packit 6c4009
 *
Packit 6c4009
 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
Packit 6c4009
 * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
Packit 6c4009
 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
Packit 6c4009
 *
Packit 6c4009
 * Carnegie Mellon requests users of this software to return to
Packit 6c4009
 *
Packit 6c4009
 *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
Packit 6c4009
 *  School of Computer Science
Packit 6c4009
 *  Carnegie Mellon University
Packit 6c4009
 *  Pittsburgh PA 15213-3890
Packit 6c4009
 *
Packit 6c4009
 * any improvements or extensions that they make and grant Carnegie Mellon
Packit 6c4009
 * the rights to redistribute these changes.
Packit 6c4009
 */
Packit 6c4009
/*
Packit 6c4009
 * HISTORY
Packit 6c4009
 * $Log$
Packit 6c4009
 * Revision 1.1  1992/10/06 18:29:52  roland
Packit 6c4009
 * entered into RCS
Packit 6c4009
 *
Packit 6c4009
 * Revision 2.2  92/04/01  19:37:59  rpd
Packit 6c4009
 * 	Created.
Packit 6c4009
 * 	[92/03/09            rpd]
Packit 6c4009
 *
Packit 6c4009
 */
Packit 6c4009
/*
Packit 6c4009
 *	File:	err_bootstrap.sub
Packit 6c4009
 *	Author:	Richard Draves, Carnegie Mellon University
Packit 6c4009
 *	Date:	March 9, 1992
Packit 6c4009
 *
Packit 6c4009
 *	Error string definitions for bootstrap
Packit 6c4009
 */
Packit 6c4009
Packit 6c4009
static char * err_codes_bootstrap_fs[] = {
Packit 6c4009
	/* 0 */	"(bootstrap/fs) not a directory",
Packit 6c4009
	/* 1 */	"(bootstrap/fs) name not found",
Packit 6c4009
	/* 2 */	"(bootstrap/fs) name too long",
Packit 6c4009
	/* 3 */	"(bootstrap/fs) symbolic link loop",
Packit 6c4009
	/* 4 */	"(bootstrap/fs) bad file system",
Packit 6c4009
	/* 5 */	"(bootstrap/fs) offset not in file",
Packit 6c4009
	/* 6 */	"(bootstrap/fs) invalid parameter",
Packit 6c4009
};
Packit 6c4009
Packit 6c4009
/*	err_bootstrap subsystems      	*/
Packit 6c4009
static struct error_subsystem err_bootstrap_sub[] = {
Packit 6c4009
	/* bootstrap/0; */
Packit 6c4009
	{
Packit 6c4009
		"(bootstrap/fs)",
Packit 6c4009
		errlib_count(err_codes_bootstrap_fs),
Packit 6c4009
		err_codes_bootstrap_fs,
Packit 6c4009
	},
Packit 6c4009
};