Home
last modified time | relevance | path

Searched full:bootorder (Results 1 – 11 of 11) sorted by relevance

/freebsd/usr.sbin/efibootmgr/
H A Defibootmgr.867 .Fl o Ar bootorder
94 .Cm BootOrder .
185 .It Fl o -bootorder Ar bootorder
187 .Cm BootOrder
219 .Cm BootOrder
227 The flag will also include any unreferenced (by BootOrder) variables.
256 .Cm BootOrder
276 .Cm BootOrder
H A Defibootmgr.c105 {"bootorder", required_argument, NULL, 'o'}, /* set order */
185 " [-aAnB -b bootnum] [-N] [-t timeout] [-T] [-o bootorder] [-O] [--verbose] [--help]\n\
388 if (set_bootvar("BootOrder", (uint8_t*)new_data, size) < 0) in set_boot_order()
389 err(1, "Unabke to set BootOrder to %s", order); in set_boot_order()
440 if (efi_get_variable(EFI_GLOBAL_GUID, "BootOrder", &data, &size, &attrs) < 0) { in add_to_boot_order()
445 err(1, "efi_get_variable BootOrder"); in add_to_boot_order()
449 * We have BootOrder with the current order in add_to_boot_order()
462 if (set_bootvar("BootOrder", new, size) < 0) in add_to_boot_order()
475 if (efi_get_variable(EFI_GLOBAL_GUID, "BootOrder", &data, &size, &attrs) < 0) in remove_from_order()
489 warnx("Boot variable %04x not in BootOrder", bootnum); in remove_from_order()
[all …]
/freebsd/tools/boot/
H A Dinstall-boot.sh90 local isboot1 existingbootentryloaderfile bootorder bootentry
177 # the fact that it places the new entry first in BootOrder.
178bootorder=$(efivar --name 8be4df61-93ca-11d2-aa0d-00e098032b8c-BootOrder --print --no-name --hex |…
179 bootentry=$(echo "${bootorder}" | cut -w -f 3)$(echo "${bootorder}" | cut -w -f 2)
/freebsd/stand/efi/boot1/
H A Dproto.c176 if (efi_global_getenv("BootOrder", &boot_order, &sz) == EFI_SUCCESS) { in choice_protocol()
177 printf(" BootOrder:"); in choice_protocol()
/freebsd/usr.sbin/bhyve/
H A Dbhyve.8639 Add the device to the bootorder at
641 A fwcfg file is used to specify the bootorder.
661 Add the device to the bootorder at
663 A fwcfg file is used to specify the bootorder.
816 Add the device to the bootorder at
818 A fwcfg file is used to specify the bootorder.
H A Dpci_emul.c1496 char *bootorder; in init_bootorder() local
1502 fp = open_memstream(&bootorder, &bootorder_len); in init_bootorder()
1509 return (qemu_fwcfg_add_file("bootorder", bootorder_len, bootorder)); in init_bootorder()
1654 warnx("%s: Unable to init bootorder", __func__); in init_pci()
/freebsd/release/scripts/
H A Dvagrant.vmx2 bios.bootorder = "hdd,CDROM"
/freebsd/lib/libsecureboot/efi/include/Guid/
H A DGlobalVariable.h89 #define EFI_BOOT_ORDER_VARIABLE_NAME L"BootOrder"
/freebsd/stand/man/
H A Dloader.efi.8395 BootOrder : 0000, 0001, 0003, 0004, 0005, 0006, 0001, 0008, 000A, 000B, 000C, 000E, 0007
/freebsd/stand/efi/loader/
H A Dmain.c1362 rv = efi_global_getenv("BootOrder", &boot_order, &sz); in main()
1364 printf(" BootOrder:"); in main()
1371 * u-boot doesn't set BootOrder, but otherwise participates in the in main()
/freebsd/stand/efi/libefi/
H A Denv.c526 if (strcmp("BootOrder", var) == 0 || in efi_print_global()