Home | History | Annotate | Line # | Download | only in installboot
machines.c revision 1.2
      1 /* $NetBSD: machines.c,v 1.2 2002/04/03 06:34:31 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 pmax_parseopt(ib_params *, const char *);
      9 int pmax_setboot(ib_params *);
     10 int pmax_clearboot(ib_params *);
     11 int vax_parseopt(ib_params *, const char *);
     12 int vax_setboot(ib_params *);
     13 int vax_clearboot(ib_params *);
     14 
     15 struct ib_mach machines[] = {
     16 	{ "pmax",	pmax_parseopt,	pmax_setboot,	pmax_clearboot },
     17 	{ "vax",	vax_parseopt,	vax_setboot,	vax_clearboot },
     18 	{ 0, 0, 0, 0 },
     19 };
     20