Lines Matching defs:netbsd
1 /* $NetBSD: boot.c,v 1.20 2014/03/28 15:02:34 christos Exp $ */
68 char *kernels[] = { "/netbsd", "/netbsd.gz", NULL };
82 char *netbsd = (char *)d5;
88 printf("%s Secondary Boot, Revision %s (from NetBSD %s)\n",
92 if (netbsd == NULL || strcmp(netbsd, "boot") == 0 ||
93 strcmp(netbsd, "/boot") == 0)
94 netbsd = "";
98 DPRINTF("bootname = %s\n", netbsd);
119 printf("Booting %s%s\n", devname, netbsd);
122 if (*netbsd) {
123 kernels[0] = netbsd;
158 __asm volatile ("movl %0,%%d5" : : "m" (netbsd));