machines.c revision 1.3 1 /* $NetBSD: machines.c,v 1.3 2002/04/03 10:21:02 lukem Exp $ */
2
3 /* DO NOT EDIT-- this file is automatically generated. */
4
5 #include <sys/types.h>
6 #include "installboot.h"
7
8 int alpha_parseopt(ib_params *, const char *);
9 int alpha_setboot(ib_params *);
10 int alpha_clearboot(ib_params *);
11 int pmax_parseopt(ib_params *, const char *);
12 int pmax_setboot(ib_params *);
13 int pmax_clearboot(ib_params *);
14 int vax_parseopt(ib_params *, const char *);
15 int vax_setboot(ib_params *);
16 int vax_clearboot(ib_params *);
17
18 struct ib_mach machines[] = {
19 { "alpha", alpha_parseopt, alpha_setboot, alpha_clearboot },
20 { "pmax", pmax_parseopt, pmax_setboot, pmax_clearboot },
21 { "vax", vax_parseopt, vax_setboot, vax_clearboot },
22 { 0, 0, 0, 0 },
23 };
24