/src/sys/arch/i386/stand/bootxx/ |
bootxx.S | 1 /* $NetBSD: bootxx.S,v 1.12 2022/03/06 18:35:43 mlelstv Exp $ */ 48 ENTRY(bootxx) function 56 . = bootxx + 0x80 /* Space for patching unknown params */ define
|
/src/sys/arch/news68k/stand/bootxx/ |
bootxx.c | 1 /* $NetBSD: bootxx.c,v 1.11 2014/03/29 05:07:25 ozaki-r Exp $ */ 59 void bootxx(uint32_t, uint32_t, uint32_t, uint32_t); 83 bootxx(uint32_t d4, uint32_t d5, uint32_t d6, uint32_t d7) function in typeref:typename:void 141 DPRINTF("bootxx returned?\n");
|
/src/usr.sbin/sysinst/arch/alpha/ |
md.c | 152 char *bootxx; local in function:md_post_newfs 157 bootxx = bootxx_name(install); 158 if (bootxx != NULL) { 160 "/usr/sbin/installboot /dev/r%sc %s", pm->diskdev, bootxx); 161 free(bootxx);
|
/src/usr.sbin/sysinst/arch/pmax/ |
md.c | 157 char *bootxx; local in function:md_post_newfs 168 bootxx = bootxx_name(install); 169 if (bootxx != NULL) { 171 "/usr/sbin/installboot /dev/r%sc %s", pm->diskdev, bootxx); 172 free(bootxx);
|
/src/sys/arch/atari/stand/bootxx/ |
bootxx.c | 1 /* $NetBSD: bootxx.c,v 1.17 2016/06/11 06:28:07 dholland Exp $ */ 46 int bootxx(void *, void *, int); 58 bootxx(void *readsector, void *disklabel, int autoboot) function in typeref:typename:int
|
/src/sys/arch/newsmips/stand/bootxx/ |
bootxx.c | 1 /* $NetBSD: bootxx.c,v 1.9 2014/03/26 17:43:11 christos Exp $ */ 47 void bootxx(uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t); 62 bootxx(uint32_t a0, uint32_t a1, uint32_t a2, uint32_t a3, uint32_t a4, function in typeref:typename:void
|
/src/usr.sbin/sysinst/arch/landisk/ |
md.c | 163 char *bootxx; local in function:md_post_newfs 168 bootxx = bootxx_name(install); 169 if (bootxx != NULL) { 171 "/usr/sbin/installboot -v /dev/r%sa %s", pm->diskdev, bootxx); 172 free(bootxx);
|
/src/sys/arch/atari/stand/installboot/ |
installboot.c | 230 char *xxboot, *bootxx; local in function:install_fd 248 bootxx = alloca(xxbootlen); 249 snprintf(bootxx, xxbootlen, "%s%sbootxx", mdecpath, machpath); 266 mkbootblock(&bootarea, xxboot, bootxx, label, 0); 286 char *xxb00t, *xxboot, *bootxx; local in function:install_hd 328 bootxx = alloca(bootxxlen); 329 snprintf(bootxx, bootxxlen, "%s%sbootxx", mdecpath, machpath); 335 mkbootblock(&bootarea, xxboot, bootxx, label, magic);
|
/src/usr.sbin/sysinst/arch/i386/ |
md.c | 180 char *bootxx; local in function:md_check_partitions 187 bootxx = bootxx_name(install); 188 rval = access(bootxx, R_OK); 189 free(bootxx);
|
/src/usr.sbin/sysinst/ |
bsddisklabel.c | 2000 char *bootxx; local in function:check_partitions 2009 bootxx = bootxx_name(install); 2010 if (bootxx != NULL) { 2011 rv = access(bootxx, R_OK); 2012 free(bootxx);
|
disks.c | 2213 char *bootxx; local in function:bootxx_name 2265 asprintf(&bootxx, "%s/%s", BOOTXXDIR, bootxxname); 2266 return bootxx;
|