Lines Matching refs:howto
86 static int exec_netbsd(const char *file, int howto);
251 bootit(const char *filename, int howto, int tell) in bootit() argument
256 if (howto) in bootit()
257 printf(" (howto 0x%x)", howto); in bootit()
261 if (exec_netbsd(filename, howto) < 0) { in bootit()
270 exec_netbsd(const char *file, int howto) in exec_netbsd() argument
276 bi_howto.howto = howto; in exec_netbsd()
295 static int parseopts(const char *opts, int *howto);
296 static int parseboot(char *arg, char **filename, int *howto);
340 int howto; in bootcmd_boot() local
342 if (parseboot(arg, &filename, &howto)) { in bootcmd_boot()
343 bootit(filename, howto, 1); in bootcmd_boot()
455 parseopts(const char *opts, int *howto) in parseopts() argument
472 *howto = tmpopt; in parseopts()
477 parseboot(char *arg, char **filename, int *howto) in parseboot() argument
482 *howto = 0; in parseboot()
512 if (parseopts(opts, howto) == 0) { in parseboot()