HomeSort by: relevance | last modified time | path
    Searched refs:boot_params (Results 1 - 18 of 18) sorted by relevancy

  /src/sys/arch/i386/stand/efiboot/bootia32/
start.S 85 .globl _C_LABEL(boot_params)
86 _C_LABEL(boot_params): /* space for patchable variables */
87 .long 1f - boot_params /* length of this data area */
88 #include <boot_params.S>
  /src/sys/arch/i386/stand/efiboot/bootx64/
start.S 90 .globl _C_LABEL(boot_params)
91 _C_LABEL(boot_params): /* space for patchable variables */
92 .long 1f - boot_params /* length of this data area */
93 #include <boot_params.S>
  /src/sys/arch/i386/stand/boot/
biosboot.S 54 ENTRY(boot_params) function
55 .long boot_start_1 - boot_params
56 #include <boot_params.S>
82 /* Grab boot_params patched into bootxx by installboot */
85 mov $boot_params, %di
87 cmp $boot_start_1 - boot_params, %cx
89 mov $boot_start_1 - boot_params, %cx
115 testb $X86_BP_FLAGS_LBA64VALID, boot_params+4
boot2.c 93 extern struct x86_boot_params boot_params;
312 initio(boot_params.bp_consdev);
319 boot_modules_enabled = !(boot_params.bp_flags
321 if (boot_params.bp_flags & X86_BP_FLAGS_RESET_VIDEO)
338 if (!(boot_params.bp_flags & X86_BP_FLAGS_NOBOOTCONF)) {
341 bootcfg_info.timeout = boot_params.bp_timeout;
375 c = awaitkey(boot_params.bp_timeout, 1);
381 if ((boot_params.bp_flags & X86_BP_FLAGS_PASSWORD) == 0) {
386 if (check_password((char *)boot_params.bp_password)) {
602 boot_params.bp_conspeed = speed
    [all...]
  /src/sys/arch/landisk/stand/boot/
boot.S 38 ENTRY(boot_params) function
39 .long boot_start1 - boot_params
40 #include <boot_params.S>
53 mov.l .L.boot_params, r1
114 .L.boot_params:
115 .long boot_params
117 .long boot_start1 - boot_params
cons.c 43 extern struct landisk_boot_params boot_params;
58 switch (boot_params.bp_conspeed) {
70 scif_init(boot_params.bp_conspeed);
boot2.c 62 extern struct landisk_boot_params boot_params;
232 cninit(boot_params.bp_consdev);
249 c = awaitkey(boot_params.bp_timeout, 1);
  /src/sys/arch/landisk/stand/bootxx/
bootxx.S 37 boot_params: label
38 .long 1f - boot_params
39 #include <boot_params.S>
69 mov.l .L.boot_params, r4
99 .L.boot_params:
100 .long boot_params
  /src/sys/arch/i386/stand/pxeboot/
main.c 54 extern struct x86_boot_params boot_params;
123 boot_modules_enabled = !(boot_params.bp_flags
127 if (!(boot_params.bp_flags & X86_BP_FLAGS_NOBOOTCONF)) {
130 bootcfg_info.timeout = boot_params.bp_timeout;
160 c = awaitkey(boot_params.bp_timeout, 1);
165 ((boot_params.bp_flags & X86_BP_FLAGS_PASSWORD) == 0
166 || check_password((char *)boot_params.bp_password))) {
273 boot_params.bp_conspeed = speed;
start_pxe.S 55 .globl _C_LABEL(boot_params)
56 _C_LABEL(boot_params):
57 .long 1f - _C_LABEL(boot_params)
58 #include <boot_params.S>
Makefile 32 CPPFLAGS+= -DSUPPORT_SERIAL=boot_params.bp_consdev
33 CPPFLAGS+= -DCONSPEED=boot_params.bp_conspeed
34 CPPFLAGS+= -DCONSADDR=boot_params.bp_consaddr
35 CPPFLAGS+= -DCONSOLE_KEYMAP=boot_params.bp_keymap
  /src/sys/arch/i386/stand/bootxx/
bootxx.S 53 boot_params: /* space for patchable variables */ label
54 .long 1f - boot_params /* length of this data area */
55 #include <boot_params.S>
92 movl $boot_params, %esi
  /src/sys/arch/i386/stand/lib/
bootmenu.c 45 extern struct x86_boot_params boot_params;
203 ((boot_params.bp_flags & X86_BP_FLAGS_PASSWORD) == 0 ||
204 check_password((char *)boot_params.bp_password))) {
pcio.c 41 extern struct x86_boot_params boot_params;
  /src/sys/arch/i386/stand/cdboot/
cdboot.S 111 boot_params: /* space for patchable variables */ label
112 .long 1f - boot_params /* length of this data area */
113 #include <boot_params.S>
286 movl $boot_params, %esi /* Provide boot_params */
  /src/sys/arch/i386/stand/fatboot/
fatboot.S 288 mov $boot_params + 4, %si
338 pbr_space = boot_params - .
348 boot_params: label
  /src/sys/arch/i386/stand/efiboot/
boot.c 51 extern struct x86_boot_params boot_params;
295 boot_modules_enabled = !(boot_params.bp_flags & X86_BP_FLAGS_NOMODULES);
312 if (!(boot_params.bp_flags & X86_BP_FLAGS_NOBOOTCONF)) {
321 bootcfg_info.timeout = boot_params.bp_timeout;
350 if ((boot_params.bp_flags & X86_BP_FLAGS_PASSWORD) == 0) {
355 if (check_password((char *)boot_params.bp_password)) {
eficons.c 45 extern struct x86_boot_params boot_params;
199 efi_consinit(boot_params.bp_consdev, boot_params.bp_consaddr,
200 boot_params.bp_conspeed);

Completed in 21 milliseconds