lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Mach Operating System |
| 3 | * Copyright (c) 1992 Carnegie Mellon University |
| 4 | * All Rights Reserved. |
| 5 | * |
| 6 | * Permission to use, copy, modify and distribute this software and its |
| 7 | * documentation is hereby granted, provided that both the copyright |
| 8 | * notice and this permission notice appear in all copies of the |
| 9 | * software, derivative works or modified versions, and any portions |
| 10 | * thereof, and that both notices appear in supporting documentation. |
| 11 | * |
| 12 | * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" |
| 13 | * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR |
| 14 | * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. |
| 15 | * |
| 16 | * Carnegie Mellon requests users of this software to return to |
| 17 | * |
| 18 | * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU |
| 19 | * School of Computer Science |
| 20 | * Carnegie Mellon University |
| 21 | * Pittsburgh PA 15213-3890 |
| 22 | * |
| 23 | * any improvements or extensions that they make and grant Carnegie Mellon |
| 24 | * the rights to redistribute these changes. |
| 25 | */ |
| 26 | /* |
| 27 | * HISTORY |
| 28 | * $Log$ |
| 29 | * Revision 1.1 1992/10/06 18:29:52 roland |
| 30 | * entered into RCS |
| 31 | * |
| 32 | * Revision 2.2 92/04/01 19:37:59 rpd |
| 33 | * Created. |
| 34 | * [92/03/09 rpd] |
| 35 | * |
| 36 | */ |
| 37 | /* |
| 38 | * File: err_bootstrap.sub |
| 39 | * Author: Richard Draves, Carnegie Mellon University |
| 40 | * Date: March 9, 1992 |
| 41 | * |
| 42 | * Error string definitions for bootstrap |
| 43 | */ |
| 44 | |
| 45 | static char * err_codes_bootstrap_fs[] = { |
| 46 | /* 0 */ "(bootstrap/fs) not a directory", |
| 47 | /* 1 */ "(bootstrap/fs) name not found", |
| 48 | /* 2 */ "(bootstrap/fs) name too long", |
| 49 | /* 3 */ "(bootstrap/fs) symbolic link loop", |
| 50 | /* 4 */ "(bootstrap/fs) bad file system", |
| 51 | /* 5 */ "(bootstrap/fs) offset not in file", |
| 52 | /* 6 */ "(bootstrap/fs) invalid parameter", |
| 53 | }; |
| 54 | |
| 55 | /* err_bootstrap subsystems */ |
| 56 | static struct error_subsystem err_bootstrap_sub[] = { |
| 57 | /* bootstrap/0; */ |
| 58 | { |
| 59 | "(bootstrap/fs)", |
| 60 | errlib_count(err_codes_bootstrap_fs), |
| 61 | err_codes_bootstrap_fs, |
| 62 | }, |
| 63 | }; |