HomeSort by: relevance | last modified time | path
    Searched defs:bbinfo (Results 1 - 8 of 8) sorted by relevancy

  /src/sys/arch/alpha/stand/common/
bbinfo.h 1 /* $NetBSD: bbinfo.h,v 1.2 1997/04/06 08:40:57 cgd Exp $ */
38 struct bbinfo { struct
  /src/sys/arch/evbmips/stand/sbmips/common/
bbinfo.h 1 /* $NetBSD: bbinfo.h,v 1.1.1.1 2017/07/24 08:56:29 mrg Exp $ */
38 struct bbinfo { struct
  /src/sys/arch/sbmips/stand/common/
bbinfo.h 1 /* $NetBSD: bbinfo.h,v 1.1 2002/11/09 06:20:39 cgd Exp $ */
38 struct bbinfo { struct
  /src/sys/arch/sparc/stand/bootxx/
bootxx.c 53 * The contents of the bbinfo below are set by installboot(8)
58 struct shared_bbinfo bbinfo = { variable in typeref:struct:shared_bbinfo
113 buf = alloc(bbinfo.bbi_block_size);
117 for (i = 0; i < bbinfo.bbi_block_count; i++) {
118 if ((blk = bbinfo.bbi_block_table[i]) == 0)
125 bbinfo.bbi_block_size, buf, &n)) {
129 memcpy(addr, buf, bbinfo.bbi_block_size);
130 if (n != bbinfo.bbi_block_size)
  /src/sys/arch/sun68k/stand/bootxx/
bootxx.c 62 struct shared_bbinfo bbinfo = { variable in typeref:struct:shared_bbinfo
108 buf = alloc(bbinfo.bbi_block_size);
112 for (i = 0; i < bbinfo.bbi_block_count; i++) {
114 if ((blknum = bbinfo.bbi_block_table[i]) == 0)
121 bbinfo.bbi_block_size, buf, &n))
126 if (n != bbinfo.bbi_block_size) {
130 memcpy(addr, buf, bbinfo.bbi_block_size);
131 addr += bbinfo.bbi_block_size;
  /src/sys/arch/news68k/stand/bootxx/
bootxx.c 61 struct shared_bbinfo bbinfo = { variable in typeref:struct:shared_bbinfo
100 DPRINTF("block_size = %d\n", bbinfo.bbi_block_size);
101 DPRINTF("block_count = %d\n", bbinfo.bbi_block_count);
126 bs = bbinfo.bbi_block_size;
128 for (i = 0; i < bbinfo.bbi_block_count; i++) {
129 blk = bbinfo.bbi_block_table[i];
  /src/sys/arch/newsmips/stand/bootxx/
bootxx.c 36 struct shared_bbinfo bbinfo = { variable in typeref:struct:shared_bbinfo
92 DPRINTF("block_size = %d\n", bbinfo.bbi_block_size);
93 DPRINTF("block_count = %d\n", bbinfo.bbi_block_count);
122 bs = bbinfo.bbi_block_size;
124 for (i = 0; i < bbinfo.bbi_block_count; i++) {
125 blk = bbinfo.bbi_block_table[i];
  /src/sys/arch/macppc/stand/bootxx/
bootxx.c 48 struct shared_bbinfo bbinfo = { variable in typeref:struct:shared_bbinfo
354 for (j = 0; j < bbinfo.bbi_block_count; j++) {
355 if ((blk = bbinfo.bbi_block_table[j]) == 0)
359 OF_read(fd, addr, bbinfo.bbi_block_size);
360 addr += bbinfo.bbi_block_size;

Completed in 17 milliseconds