| /onnv/onnv-gate/usr/src/psm/stand/boot/sparc/common/ |
| bootops.c | 48 struct bootops bootops; variable in typeref:struct:bootops 53 prom_panic("bootops is gone, it should not be called"); 59 bootops.bsys_version = BO_VERSION; 60 bootops.bsys_1275_call = (uint64_t)boot_fail; 61 bootops.bsys_printf = (uint32_t)boot_fail;
|
| /onnv/onnv-gate/usr/src/uts/intel/sys/ |
| bootconf.h | 67 /* return values for the newer bootops */ 89 * and older kernels. If you want to change the struct bootops, 91 * "bootops-extensions" mechanism described below. 93 #define BO_VERSION 10 /* bootops interface revision # */ 95 typedef struct bootops { struct 109 caddr_t (*bsys_alloc)(struct bootops *, caddr_t virthint, size_t size, 116 void (*bsys_free)(struct bootops *, caddr_t virt, size_t size); 121 int (*bsys_getproplen)(struct bootops *, const char *); 126 int (*bsys_getprop)(struct bootops *, const char *, void *); 132 char *(*bsys_nextprop)(struct bootops *, char *prevprop) [all...] |
| /onnv/onnv-gate/usr/src/uts/sun/sys/ |
| bootconf.h | 65 #define BO_VERSION 9 /* bootops interface revision # */ 70 typedef struct bootops { struct 141 * 1275-like boot service replacement for bootops. 220 extern struct bootops *bootops;
|
| /onnv/onnv-gate/usr/src/uts/sparc/os/ |
| bootops.c | 29 * successors.) This interface replaces the bootops (BOP) implementation 46 struct bootops *bootops; variable in typeref:struct:bootops 47 struct bootops kbootops; 105 /* fake bootops - it needs to point to non-NULL */ 106 bootops = &kbootops; 609 /* Simple message to indicate that the bootops pointer has been zeroed */ 614 prom_printf("The bootops vec is zeroed now!\n"); 627 bootops = (struct bootops *)NULL [all...] |
| /onnv/onnv-gate/usr/src/uts/i86pc/os/ |
| startup.c | 252 struct bootops *bootops = 0; /* passed in from boot */ variable in typeref:struct:bootops 253 struct bootops **bootopsp; 641 mem = BOP_ALLOC(bootops, (caddr_t)valloc_base, valloc_sz, valloc_align); 723 (void) check_boot_version(BOP_GETVERSION(bootops)); 728 if (BOP_GETPROPLEN(bootops, "prom_debug") >= 0) { 882 mem = BOP_ALLOC(bootops, (caddr_t)DEBUG_INFO_VA, MMU_PAGESIZE, 969 bootops->boot_mem->physinstalled); 970 installed_top_size(bootops->boot_mem->physinstalled, &physmax, 982 bootops->boot_mem->rsvdmem) [all...] |