Home | History | Annotate | Line # | Download | only in installboot
machines.c revision 1.4
      1 /* $NetBSD: machines.c,v 1.4 2002/04/04 13:45:25 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 sparc64_parseopt(ib_params *, const char *);
     15 int sparc64_setboot(ib_params *);
     16 int sparc64_clearboot(ib_params *);
     17 int vax_parseopt(ib_params *, const char *);
     18 int vax_setboot(ib_params *);
     19 int vax_clearboot(ib_params *);
     20 
     21 struct ib_mach machines[] = {
     22 	{ "alpha",	alpha_parseopt,	alpha_setboot,	alpha_clearboot },
     23 	{ "pmax",	pmax_parseopt,	pmax_setboot,	pmax_clearboot },
     24 	{ "sparc64",	sparc64_parseopt,	sparc64_setboot,	sparc64_clearboot },
     25 	{ "vax",	vax_parseopt,	vax_setboot,	vax_clearboot },
     26 	{ 0, 0, 0, 0 },
     27 };
     28