HomeSort by: relevance | last modified time | path
    Searched defs:boot (Results 1 - 25 of 42) sorted by relevancy

1 2

  /src/sbin/fsck_msdos/
check.c 48 struct bootblock boot; local
75 mod = readboot(dosfs, &boot);
83 if (boot.ValidFat < 0)
89 mod |= readfat(dosfs, &boot, boot.ValidFat >= 0 ? boot.ValidFat : 0, &fat);
95 if (boot.ValidFat < 0)
96 for (i = 1; i < boot.FATs; i++) {
99 mod |= readfat(dosfs, &boot, i, &currentFat);
104 mod |= comparefat(&boot, fat, currentFat, i)
    [all...]
  /src/sys/arch/hppa/stand/cdboot/
cdboot.c 31 * @(#)boot.c 8.1 (Berkeley) 6/10/93
74 * Boot program... bits in `howto' determine whether boot stops to
75 * ask for system name. Boot device is derived from ROM provided
79 void boot(dev_t boot_dev);
85 boot(dev_t boot_dev) function
  /src/sys/arch/luna68k/stand/boot/
boot.c 1 /* $NetBSD: boot.c,v 1.7 2014/01/11 14:35:15 tsutsui Exp $ */
37 * @(#)boot.c 8.1 (Berkeley) 6/10/93
70 * @(#)boot.c 8.1 (Berkeley) 6/10/93
74 * boot.c -- boot program
82 #include <luna68k/stand/boot/samachdep.h>
83 #include <luna68k/stand/boot/status.h>
87 boot(int argc, char *argv[]) function
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/
instmem.h 15 struct list_head boot; member in struct:nvkm_instmem
  /src/sys/arch/atari/stand/xxboot/ahdi-sdb00t/
sdb00t.ahdi.S 76 bnes boot
90 boot: movl %a0@(4),%d6 label
  /src/sys/arch/atari/stand/xxboot/ahdi-wdb00t/
wdb00t.ahdi.S 64 bnes boot
78 boot: movl %a0@(4),%d6 label
  /src/sys/arch/news68k/stand/boot/
boot.c 1 /* $NetBSD: boot.c,v 1.20 2014/03/28 15:02:34 christos Exp $ */
59 void boot(uint32_t, uint32_t, uint32_t, uint32_t);
77 boot(uint32_t d4, uint32_t d5, uint32_t d6, uint32_t d7) function
88 printf("%s Secondary Boot, Revision %s (from NetBSD %s)\n",
91 /* bootname is "boot" by default. */
92 if (netbsd == NULL || strcmp(netbsd, "boot") == 0 ||
93 strcmp(netbsd, "/boot") == 0)
102 /* PROM monitor passes 0xa, but NEWS-OS /boot passed 0x5... */
  /src/sys/arch/x86/include/
bootspace.h 98 } boot; member in struct:bootspace
  /src/sys/dev/
kloader.h 52 * koader_jumpfunc_t jump to boot loader described abobe.
61 kloader_bootfunc_t *boot; member in struct:kloader_ops
81 /* argc, argv type boot argument */
85 /* struct type boot argument */
100 * kloader_reboot jumps to 2nd boot loader.
106 * kloader_bootinfo_set sets arguments of new kernel to boot. this is optional.
  /src/sys/arch/ews4800mips/ews4800mips/
disklabel_conv.c 58 * . . UX Boot block (partition 7)
64 * | boot loader |
94 struct ux_partition *boot; local
140 boot = &vtoc->partition[7];
141 boot->tag = VTOC_TAG_BOOT;
142 boot->flags = VTOC_FLAG_UNMOUNT;
143 boot->start_sector = 0;
144 boot->nsectors = _BOOTBLOCK_SIZE;
  /src/sys/arch/i386/stand/mbr/
gptmbr.S 165 /* Find the boot partition */
229 * boot: invoke the actual bootstrap. %ds:%si points to the
231 * is phdr == 0x7c00 == the address of the boot sector.
233 boot: label
239 jne missing_os /* Not a valid boot sector */
306 .ascii "Disk error on boot\r\n"
323 int $0x18 /* Boot failure */
  /src/sys/arch/prep/stand/boot/
boot.c 1 /* $NetBSD: boot.c,v 1.21 2019/09/03 14:18:32 martin Exp $ */
45 #include "boot.h"
70 void boot(void *, u_long);
74 boot(void *resp, u_long loadaddr) function
  /src/sys/arch/prep/stand/installboot/
installboot.c 42 char *boot, *dev; variable
54 fprintf(stderr, "usage: %s [-n] [-v] <boot> <device>\n",
75 load_boot(char *boot, size_t *bootsize)
85 if ((fd = open(boot, O_RDONLY)) < 0) {
86 warn("open: %s", boot);
91 warn("fstat: %s", boot);
99 warn("read: eh: %s", boot);
115 warn("read: ph: %s", boot);
156 warn("calloc: no memory for boot image.");
161 warn("read: boot image: %s", boot)
    [all...]
  /src/usr.sbin/installboot/arch/
hp300.c 88 struct partition *boot; local
186 * The bootstrap can be well over 8k, and must go into a BOOT
187 * partition. Read NetBSD label to locate BOOT partition.
206 for (boot = label->d_partitions; ; boot++) {
208 warnx("No BOOT partition");
211 if (boot->p_fstype == FS_BOOT)
214 boot_size = be32toh(boot->p_size) * (uint64_t)secsize;
215 boot_offset = be32toh(boot->p_offset) * (uint64_t)secsize;
218 * We put the entire LIF file into the BOOT partition even whe
    [all...]
  /src/sys/arch/ews4800mips/stand/common/
bootxx.c 84 "boot", /* NetBSD (bfs,ustarfs) */
97 const char **boot; local
128 for (boot = boottab; *boot; boot++) {
129 if ((err = loader(*boot, &entry)) == 0) {
  /src/sys/arch/hpc/stand/hpcboot/
hpcmenu.cpp 234 if (_pref.boot_verbose) // boot verbosely
236 if (_pref.boot_single_user) // boot to single user
238 if (_pref.boot_ask_for_name) // ask for file name to boot from
243 // boot from
368 // Boot kernel.
370 HpcMenuInterface::boot() function in class:HpcMenuInterface
382 TEXT("BOOT FAILED"),
  /src/sys/arch/hppa/stand/boot/
boot.c 1 /* $NetBSD: boot.c,v 1.1 2014/02/24 07:23:43 skrll Exp $ */
31 * @(#)boot.c 8.1 (Berkeley) 6/10/93
76 * Boot program... bits in `howto' determine whether boot stops to
77 * ask for system name. Boot device is derived from ROM provided
103 void boot(dev_t boot_dev);
117 boot(dev_t boot_dev) function
173 printf("boot: %s\n", strerror(errno));
189 printf("Boot: [[[%s%d%c:]%s][-a][-c][-d][-s][-v][-q]] :- ",
  /src/sys/arch/mvme68k/stand/installboot/
installboot.c 53 char *boot, *proto, *dev; variable
90 "usage: installboot [-n] [-v] [-h] <boot> <proto> <device>\n");
125 boot = argv[optind];
130 printf("boot: %s\n", boot);
148 if (loadblocknums(boot, devfd) != 0)
238 loadblocknums(char *boot, int devfd)
250 * Open 2nd-level boot program and record the block numbers
254 /* Make sure the (probably new) boot file is on disk. */
257 if ((fd = open(boot, O_RDONLY)) < 0
    [all...]
  /src/sys/arch/newsmips/stand/boot/
boot.c 1 /* $NetBSD: boot.c,v 1.21 2018/10/14 00:10:11 tsutsui Exp $ */
38 void boot(uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t);
60 boot(uint32_t a0, uint32_t a1, uint32_t a2, uint32_t a3, uint32_t a4, function
92 printf("%s Secondary Boot, Revision %s\n",
130 /* bootname is "/boot" by default on HB system. */
131 if (bootname && strcmp(bootname, "/boot") != 0)
  /src/sys/arch/hpc/stand/hpcboot/menu/
menu.cpp 50 TabWindowBase::boot(int id) function in class:TabWindowBase
126 // set default kernel boot options.
  /src/sys/arch/i386/stand/bootxx/
pbr.S 33 * i386 partition boot code
39 * Which know how to read the interactive 'boot' program from filestore.
74 #define GPT_MAGIC 0x54504721 /* '!GPT' magic on hybrid MBR boot */
95 * (for a floppy) or the mbr boot code. Since the boot program will
97 * and can load the subsequent blocks (that load boot) to an address
113 * The PC BIOS architecture defines a Boot Parameter Block (BPB) here.
184 je boot
186 je boot
248 boot label
    [all...]
  /src/sys/arch/rs6000/stand/boot/
boot.c 1 /* $NetBSD: boot.c,v 1.7 2022/02/16 23:49:27 riastradh Exp $ */
45 #include "boot.h"
68 void boot(void *, void *);
142 boot(void *iplcb_p, void *extiplcb_p) function
212 setled(0x38000000); /* attempting boot */
222 setled(0x39900000); /* boot failed! */
  /src/sys/arch/vax/boot/boot/
boot.c 1 /* $NetBSD: boot.c,v 1.36 2024/10/23 12:47:39 rin Exp $ */
30 * @(#)boot.c 7.15 (Berkeley) 5/4/91
49 * Boot program... arguments passed in r10 and r11 determine
50 * whether boot stops to ask for system name and which device
51 * boot comes from.
58 void usage(char *), boot(char *), halt(char *);
72 {"boot", boot, "Load and execute file"},
104 printf("\n\r>> NetBSD/vax boot [%s] <<\n", bootprog_rev);
138 printf("> boot %s\n", filelist[fileindex].name)
197 boot(char *arg) function
    [all...]
  /src/sys/arch/x68k/stand/boot/
boot.c 1 /* $NetBSD: boot.c,v 1.33 2025/08/08 03:31:20 isaki Exp $ */
67 static void boot(char *);
87 /* boot from FD */
91 /* Or, bootinf indicates the boot address */
112 printf("boot [ha@][dev:][file] -[flags]\n");
144 printf("XXX: unknown corruption in /boot.\n");
177 printf("boot device = %x\n", bootdev);
233 "this version of /boot.\n");
244 boot(char *arg) function
309 printf("Press return to boot now, any other key for boot menu\n")
    [all...]
  /src/sys/arch/zaurus/stand/zboot/
boot.c 1 /* $NetBSD: boot.c,v 1.8 2016/06/11 06:58:42 dholland Exp $ */
32 #include "boot.h"
75 { "boot", bootcmd_boot },
182 boot(dev_t bootdev) function
207 * If console set in boot.cfg, switch to it.
225 printf("Press return to boot now, any other key for boot menu\n");
262 printf("boot: %s: %s\n", sprint_bootsel(filename),
265 printf("boot returned\n");
304 "boot [xdNx:][filename] [-1acdqsv]\n
    [all...]

Completed in 26 milliseconds

1 2