/src/sys/arch/hppa/stand/common/ |
machdep.c | 42 btdev_t bootdev; variable in typeref:typename:btdev_t
|
dev_hppa.h | 12 btdev_t bootdev; member in struct:hppa_dev
|
/src/sys/arch/rs6000/rs6000/ |
autoconf.c | 51 u_long bootdev = 0; /* should be dev_t, but not until 32 bits */ variable in typeref:typename:u_long
|
/src/sys/arch/i386/stand/efiboot/ |
efidisk.h | 38 bool bootdev; member in struct:efidiskinfo
|
/src/sys/arch/evbmips/loongson/ |
autoconf.c | 56 char bootdev[16]; variable in typeref:typename:char[16]
|
/src/sys/arch/evbppc/pmppc/ |
autoconf.c | 87 u_long bootdev = 0; /* should be dev_t, but not until 32 bits */ variable in typeref:typename:u_long 103 printf("howto %x bootdev %x ", boothowto, bootdev); 106 if ((bootdev & B_MAGICMASK) != (u_long)B_DEVMAGIC) 109 name = devsw_blk2name((bootdev >> B_TYPESHIFT) & B_TYPEMASK); 113 part = (bootdev >> B_PARTITIONSHIFT) & B_PARTITIONMASK; 114 unit = (bootdev >> B_UNITSHIFT) & B_UNITMASK;
|
/src/sys/arch/ews4800mips/ews4800mips/ |
autoconf.c | 104 int bootdev = (*platform.ipl_bootdev)(); local in function:cpu_rootconf 105 if (bootdev == NVSRAM_BOOTDEV_HARDDISK) 107 else if (bootdev == NVSRAM_BOOTDEV_NETWORK)
|
/src/sys/arch/mvmeppc/mvmeppc/ |
autoconf.c | 86 u_long bootdev = 0; /* should be dev_t, but not until 32 bits */ variable in typeref:typename:u_long 101 aprint_normal("howto %x bootdev %x ", boothowto, bootdev); 104 if ((bootdev & B_MAGICMASK) != (u_long)B_DEVMAGIC) 107 name = devsw_blk2name((bootdev >> B_TYPESHIFT) & B_TYPEMASK); 111 part = (bootdev >> B_PARTITIONSHIFT) & B_PARTITIONMASK; 112 unit = (bootdev >> B_UNITSHIFT) & B_UNITMASK;
|
/src/sys/arch/news68k/news68k/ |
autoconf.c | 118 u_long bootdev = 0; /* should be dev_t, but not until 32 bits */ variable in typeref:typename:u_long 130 if (BOOTDEV_MAG(bootdev) != 5) /* NEWS-OS's B_DEVMAGIC */ 133 ctlr = BOOTDEV_CTLR(bootdev); /* SCSI ID */ 134 part = BOOTDEV_PART(bootdev); /* LUN */ 135 type = BOOTDEV_TYPE(bootdev);
|
/src/sys/arch/ibmnws/ibmnws/ |
autoconf.c | 89 u_long bootdev = 0; /* should be dev_t, but not until 32 bits */ variable in typeref:typename:u_long 104 aprint_normal("howto %x bootdev %x ", boothowto, bootdev); 107 if ((bootdev & B_MAGICMASK) != (u_long)B_DEVMAGIC) 110 name = devsw_blk2name((bootdev >> B_TYPESHIFT) & B_TYPEMASK); 114 part = (bootdev >> B_PARTITIONSHIFT) & B_PARTITIONMASK; 115 unit = (bootdev >> B_UNITSHIFT) & B_UNITMASK;
|
/src/sys/arch/luna68k/stand/boot/ |
boot.c | 127 uint32_t bootdev; local in function:bootnetbsd 133 bootdev = MAKEBOOTDEV(0, adpt, ctlr, id, part); 145 : "g" (howto), "g" (bootdev),
|
/src/sys/arch/mac68k/mac68k/ |
autoconf.c | 112 u_long bootdev; variable in typeref:typename:u_long 124 major = B_TYPE(bootdev); 129 unit = B_UNIT(bootdev); 134 bootdev &= ~(B_UNITMASK << B_UNITSHIFT); /* XXX */ 136 bootdev |= (unit << B_UNITSHIFT); /* XXX */ 147 controller = B_CONTROLLER(bootdev);
|
/src/sys/arch/mipsco/mipsco/ |
autoconf.c | 111 dev_t bootdev = 0; variable in typeref:typename:dev_t
|
/src/sys/arch/newsmips/newsmips/ |
autoconf.c | 121 u_long bootdev = 0; /* should be dev_t, but not until 32 bits */ variable in typeref:typename:u_long 132 if (BOOTDEV_MAG(bootdev) != 5) /* NEWS-OS's B_DEVMAGIC */ 135 ctlr = BOOTDEV_CTLR(bootdev); /* SCSI ID */ 136 part = BOOTDEV_PART(bootdev); /* LUN */ 137 type = BOOTDEV_TYPE(bootdev);
|
/src/sys/arch/cesfic/cesfic/ |
autoconf.c | 55 u_int bootdev; variable in typeref:typename:u_int
|
/src/sys/arch/atari/stand/libsa/ |
diskio.c | 50 static bdevd_t bootdev; variable in typeref:typename:bdevd_t 72 bootdev.rds = func; 73 bootdev.rst = pd->p_offset; 74 bootdev.rend = pd->p_offset + pd->p_size - 1; 86 f->f_devdata = &bootdev;
|
/src/sys/arch/evbppc/ev64260/ |
autoconf.c | 94 dev_t bootdev = 0; variable in typeref:typename:dev_t 108 printf("howto %x bootdev %x ", boothowto, bootdev); 111 if ((bootdev & B_MAGICMASK) != (u_long)B_DEVMAGIC) 115 name = devsw_blk2name(B_TYPE(bootdev)); 119 if ((dv = device_find_by_driver_unit(name, B_UNIT(bootdev))) != NULL) { 121 booted_partition = B_PARTITION(bootdev);
|
/src/sys/arch/news68k/stand/boot/ |
boot.c | 81 uint32_t bootdev = d6; local in function:boot 97 DPRINTF("bootdev = 0x%x\n", bootdev); 101 #define SET_MAGIC(bootdev, magic) ((bootdev & 0x0fffffff)| (magic << 28)) 103 bootdev = SET_MAGIC(bootdev, 5); 105 ctlr = BOOTDEV_CTLR(bootdev); 106 unit = BOOTDEV_UNIT(bootdev); 107 part = BOOTDEV_PART(bootdev); [all...] |
/src/sys/arch/news68k/stand/bootxx/ |
bootxx.c | 88 int bootdev = d6; local in function:bootxx 106 ctlr = BOOTDEV_CTLR(bootdev); 107 unit = BOOTDEV_UNIT(bootdev); 108 part = BOOTDEV_PART(bootdev); 109 type = BOOTDEV_TYPE(bootdev); 112 printf("unknown bootdev (0x%x)\n", bootdev);
|
/src/sys/arch/x68k/x68k/ |
autoconf.c | 94 uint32_t bootdev = 0; variable in typeref:typename:uint32_t 108 if ((bootdev & B_MAGICMASK) != (u_long)B_DEVMAGIC) 111 majdev = B_TYPE(bootdev); 116 if ((booted_device = scsi_find(bootdev)) != NULL) 117 booted_partition = B_X68K_SCSI_PART(bootdev); 124 part = B_PARTITION(bootdev); 125 unit = B_UNIT(bootdev); 145 majdev = B_TYPE(bootdev); 148 name_netif[255 - majdev], B_UNIT(bootdev));
|
/src/sys/arch/ews4800mips/stand/common/ |
boot.c | 227 int bootdev = -1; local in function:cmd_reboot 230 bootdev = strtoul(argp[1], 0, 0); /* next boot device. */ 231 if (bootdev != NVSRAM_BOOTDEV_FLOPPYDISK && 232 bootdev != NVSRAM_BOOTDEV_HARDDISK && 233 bootdev != NVSRAM_BOOTDEV_CGMT && 234 bootdev != NVSRAM_BOOTDEV_NETWORK) { 236 bootdev = -1; 241 if (bootdev != -1) 242 *(uint8_t *)0xbe493030 = bootdev; 248 if (bootdev != -1 [all...] |
/src/sys/arch/mmeye/include/ |
bootinfo.h | 53 char bootdev[BTINFO_BOOTDEV_LEN]; member in struct:btinfo_bootdev
|
/src/sys/arch/newsmips/include/ |
bootinfo.h | 59 int bootdev; member in struct:btinfo_bootarg
|
/src/sys/arch/newsmips/stand/bootxx/ |
bootxx.c | 68 int bootdev = a1; local in function:bootxx 102 ctlr = BOOTDEV_CTLR(bootdev); 103 unit = BOOTDEV_UNIT(bootdev); 104 part = BOOTDEV_PART(bootdev); 105 type = BOOTDEV_TYPE(bootdev); 108 printf("unknown bootdev (0x%x)\n", bootdev);
|
/src/sys/arch/ofppc/stand/ofwboot/ |
boot.c | 98 char bootdev[128]; variable in typeref:typename:char[128] 210 OF_getprop(chosen, "bootpath", bootdev, sizeof bootdev) < 0 || 224 prom2boot(bootdev);
|