| /freebsd-13.1/stand/lua/ |
| H A D | core.lua | 75 local lua_path = loader.lua_path 124 loader.unsetenv("boot_verbose") 137 loader.unsetenv("boot_single") 162 loader.setenv("acpi_load", "YES") 166 loader.unsetenv("acpi_load") 181 loader.setenv("hw.ata.wc", "0") 189 loader.unsetenv("hw.ata.wc") 190 loader.unsetenv("hw.eisa_slots") 209 local k = loader.getenv("kernel") 510 loader.unsetenv("boot_serial") [all …]
|
| H A D | config.lua | 90 local current_value = loader.getenv(k) 98 loader.setenv(k, restore_value) 100 loader.unsetenv(k) 119 return loader.getenv(key) 134 return loader.setenv(key, value) 369 loader.printc(module_name .. "...") 391 if loader.command_error then 392 print(loader.command_error()) 479 loader.setenv("nextboot_enable", "NO") 675 loader.setenv("module_path", v) [all …]
|
| H A D | drawer.lua | 231 loader.term_drawrect(x, y, x + w, y + h) 296 local x = tonumber(loader.getenv("loader_brand_x")) or 298 local y = tonumber(loader.getenv("loader_brand_y")) or 317 loader.term_putimage ~= nil and 328 local x = tonumber(loader.getenv("loader_logo_x")) or 330 local y = tonumber(loader.getenv("loader_logo_y")) or 333 local logo = loader.getenv("loader_logo") 368 loader.term_putimage ~= nil and 384 local console = loader.getenv("console") 387 loader.setenv("console", c) [all …]
|
| H A D | menu.lua | 58 loader.setenv("vfs.root.mountfrom", env) 59 loader.setenv("currdev", env .. ":") 302 loader.setenv("autoboot_delay", "NO") 310 loader.perform("reboot") 340 loader.perform("unload") 392 "oad " .. loader.getenv('chain_disk') 395 loader.perform("chain " .. 396 loader.getenv('chain_disk')) 509 local endtime = loader.time() + delay 513 time = endtime - loader.time() [all …]
|
| H A D | password.lua | 116 loader.delay(3*1000*1000) 126 local boot_pwd = loader.getenv("bootlock_password") 129 local geli_prompt = loader.getenv("geom_eli_passphrase_prompt") 132 loader.setenv("kern.geom.eli.passphrase", passphrase) 135 local pwd = loader.getenv("password")
|
| H A D | cli.lua | 99 return loader.command(...) 111 return loader.command(...) 117 return cli_execute(loader.parse(str)) 126 loader.perform("unload") 142 loader.perform("unload") 254 loader.setenv("hint." .. d .. "." .. u .. ".disabled", "1")
|
| /freebsd-13.1/crypto/openssl/crypto/store/ |
| H A D | store_register.c | 59 return loader->engine; in OSSL_STORE_LOADER_get0_engine() 64 return loader->scheme; in OSSL_STORE_LOADER_get0_scheme() 70 loader->open = open_function; in OSSL_STORE_LOADER_set_open() 105 loader->eof = eof_function; in OSSL_STORE_LOADER_set_eof() 125 OPENSSL_free(loader); in OSSL_STORE_LOADER_free() 171 if (loader->open == NULL || loader->load == NULL || loader->eof == NULL in ossl_store_register_loader_int() 172 || loader->error == NULL || loader->close == NULL) { in ossl_store_register_loader_int() 229 if (loader == NULL) { in ossl_store_get0_loader_int() 237 return loader; in ossl_store_get0_loader_int() 260 if (loader == NULL) { in ossl_store_unregister_loader_int() [all …]
|
| H A D | store_lib.c | 25 const OSSL_STORE_LOADER *loader; member 42 const OSSL_STORE_LOADER *loader = NULL; in OSSL_STORE_open() local 78 loader_ctx = loader->open(loader, uri, ui_method, ui_data); in OSSL_STORE_open() 88 ctx->loader = loader; in OSSL_STORE_open() 112 (void)loader->close(loader_ctx); in OSSL_STORE_open() 131 if (ctx->loader->ctrl != NULL) in OSSL_STORE_vctrl() 145 if (ctx->loader->expect != NULL) in OSSL_STORE_expect() 157 if (ctx->loader->find == NULL) { in OSSL_STORE_find() 479 if (ctx->loader->find == NULL) in OSSL_STORE_supports_search() 660 ctx->loader = loader; in ossl_store_attach_pem_bio() [all …]
|
| /freebsd-13.1/crypto/openssl/include/openssl/ |
| H A D | store.h | 219 *loader, 223 int OSSL_STORE_LOADER_set_open(OSSL_STORE_LOADER *loader, 227 int OSSL_STORE_LOADER_set_ctrl(OSSL_STORE_LOADER *loader, 230 int OSSL_STORE_LOADER_set_expect(OSSL_STORE_LOADER *loader, 234 int OSSL_STORE_LOADER_set_find(OSSL_STORE_LOADER *loader, 239 int OSSL_STORE_LOADER_set_load(OSSL_STORE_LOADER *loader, 242 int OSSL_STORE_LOADER_set_eof(OSSL_STORE_LOADER *loader, 245 int OSSL_STORE_LOADER_set_error(OSSL_STORE_LOADER *loader, 248 int OSSL_STORE_LOADER_set_close(OSSL_STORE_LOADER *loader, 250 void OSSL_STORE_LOADER_free(OSSL_STORE_LOADER *loader); [all …]
|
| /freebsd-13.1/release/tools/ |
| H A D | ec2.conf | 87 echo 'debug.trace_on_panic=1' >> ${DESTDIR}/boot/loader.conf 88 echo 'debug.debugger_on_panic=0' >> ${DESTDIR}/boot/loader.conf 89 echo 'kern.panic_reboot_wait_time=0' >> ${DESTDIR}/boot/loader.conf 92 echo 'autoboot_delay="-1"' >> ${DESTDIR}/boot/loader.conf 93 echo 'beastie_disable="YES"' >> ${DESTDIR}/boot/loader.conf 103 echo 'hint.atkbd.0.disabled=1' >> ${DESTDIR}/boot/loader.conf 104 echo 'hint.atkbdc.0.disabled=1' >> ${DESTDIR}/boot/loader.conf 109 echo 'boot_multicons="YES"' >> ${DESTDIR}/boot/loader.conf 114 echo 'hw.broken_txfifo="1"' >> ${DESTDIR}/boot/loader.conf 117 echo 'if_ena_load="YES"' >> ${DESTDIR}/boot/loader.conf [all …]
|
| H A D | openstack.conf | 42 echo 'autoboot_delay="-1"' >> ${DESTDIR}/boot/loader.conf 43 echo 'beastie_disable="YES"' >> ${DESTDIR}/boot/loader.conf 44 echo 'boot_multicons="YES"' >> ${DESTDIR}/boot/loader.conf 45 echo 'console="comconsole vidconsole"' >> ${DESTDIR}/boot/loader.conf 46 echo 'comconsole_speed="115200"' >> ${DESTDIR}/boot/loader.conf
|
| H A D | arm.subr | 131 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 133 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 135 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 144 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 146 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 148 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 157 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 159 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 164 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 166 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf [all …]
|
| /freebsd-13.1/sys/contrib/device-tree/src/arm/ |
| H A D | axm5516-cpus.dtsi | 77 cpu-release-addr = <0>; // Fixed by the boot loader 85 cpu-release-addr = <0>; // Fixed by the boot loader 93 cpu-release-addr = <0>; // Fixed by the boot loader 101 cpu-release-addr = <0>; // Fixed by the boot loader 109 cpu-release-addr = <0>; // Fixed by the boot loader 117 cpu-release-addr = <0>; // Fixed by the boot loader 125 cpu-release-addr = <0>; // Fixed by the boot loader 133 cpu-release-addr = <0>; // Fixed by the boot loader 141 cpu-release-addr = <0>; // Fixed by the boot loader 149 cpu-release-addr = <0>; // Fixed by the boot loader [all …]
|
| /freebsd-13.1/share/examples/bootforth/ |
| H A D | README | 6 automatically loaded by /boot/loader. You must choose between boot.4th or 7 loader.rc, though. Copy one or the other, but not both. Also, menu.4th is 8 only used by boot.4th, and menuconf.4th is only used by loader.rc, so you 13 boot.4th example of file which is always loaded by /boot/loader, if 15 loader.rc example of file which is always loader by /boot/loader, if 28 If you use loader.rc/menuconf.4th, be sure to create /boot/stable.conf and 29 /boot/current.conf, like described in loader.conf(5), with appropriate
|
| H A D | loader.rc | 1 \ Example of the file which is automatically loaded by /boot/loader 9 cr .( - loader.4th...) 11 include /boot/loader.4th 26 \ Initialize loader.4th stuff 28 cr cr .( Initializing loader.4th...)
|
| /freebsd-13.1/release/arm64/ |
| H A D | PINEBOOK.conf | 30 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 32 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 34 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 36 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 40 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectReproducer.cpp | 152 Loader *loader = &(*loader_storage); in GetLoaderFromPathOrCurrent() local 153 if (Error err = loader->LoadIndex()) { in GetLoaderFromPathOrCurrent() 158 return loader; in GetLoaderFromPathOrCurrent() 161 if (Loader *loader = Reproducer::Instance().GetLoader()) in GetLoaderFromPathOrCurrent() local 162 return loader; in GetLoaderFromPathOrCurrent() 417 Loader *loader = in DoExecute() local 419 if (!loader) in DoExecute() 451 loader->LoadBuffer<SymbolFileProvider>(); in DoExecute() 655 Loader *loader = in DoExecute() local 657 if (!loader) in DoExecute() [all …]
|
| /freebsd-13.1/usr.sbin/bsdinstall/scripts/ |
| H A D | config | 45 cat $BSDINSTALL_TMPBOOT/loader.conf.* >> $BSDINSTALL_TMPBOOT/loader.conf 46 rm $BSDINSTALL_TMPBOOT/loader.conf.* 49 … $BSDINSTALL_CHROOT > /dev/null && echo "cryptodev_load=\"YES\"" >> $BSDINSTALL_TMPBOOT/loader.conf 50 df -t zfs $BSDINSTALL_CHROOT > /dev/null && echo "zfs_load=\"YES\"" >> $BSDINSTALL_TMPBOOT/loader.c…
|
| /freebsd-13.1/crypto/openssl/doc/man3/ |
| H A D | OSSL_STORE_LOADER.pod | 43 int OSSL_STORE_LOADER_set_expect(OSSL_STORE_LOADER *loader, 47 int OSSL_STORE_LOADER_set_find(OSSL_STORE_LOADER *loader, 65 int OSSL_STORE_register_loader(OSSL_STORE_LOADER *loader); 75 B<OSSL_STORE_LOADER> is the type to hold a loader. 86 are the function pointer types used within a STORE loader. 87 The functions pointed at define the functionality of the given loader. 94 manner possible according to the scheme the loader implements, it also 105 B<cmd> and a B<va_list> B<args> and is used to manipulate loader 137 to return 1 if the loader supports the criterion, otherwise 0. 184 long as the created loader is. [all …]
|
| /freebsd-13.1/release/powerpc/ |
| H A D | generate-hfs.sh | 43 boot &device;:,\ppc\loader &device;:0 47 echo 'Loader START' | dd of=loader.tmp cbs=$LOADER_SIZE count=1 conv=block 50 hcopy loader.tmp :loader 55 rm loader.tmp
|
| /freebsd-13.1/stand/forth/ |
| H A D | Makefile | 10 loader.4th.8 \ 23 FILES+= loader.4th 38 .for f in loader.rc menu.rc 39 .if exists(${BOOTSRC}/${MACHINE:C/amd64/i386/}/loader/${f}) 40 FILES+= ${BOOTSRC}/${MACHINE:C/amd64/i386/}/loader/${f}
|
| H A D | loader.rc | 4 \ You should not edit this file! Put any overrides in loader.rc.local 8 include /boot/loader.4th 10 try-include /boot/loader.rc.local 12 \ Reads and processes loader.conf variables
|
| /freebsd-13.1/stand/efi/loader/ |
| H A D | Makefile | 29 CFLAGS+= -I${.CURDIR}/../loader 54 .PATH: ${.CURDIR}/../loader 55 .PATH: ${.CURDIR}/../loader/arch/${MACHINE} 83 VERSION_FILE= ${.CURDIR}/../loader/version 97 LINKS+= ${BINDIR}/${LOADER}.efi ${BINDIR}/loader.efi 100 LDSCRIPT= ${.CURDIR}/../loader/arch/${MACHINE}/ldscript.${MACHINE} 103 CLEANFILES+= loader.efi
|
| /freebsd-13.1/usr.sbin/bhyveload/ |
| H A D | bhyveload.c | 105 static char *loader; variable 599 free(loader); in cb_swap_interpreter() 753 if (loader != NULL) in main() 755 loader = strdup(optarg); in main() 756 if (loader == NULL) in main() 823 if (loader == NULL) { in main() 824 loader = strdup("/boot/userboot.so"); in main() 825 if (loader == NULL) in main() 833 free(loader); in main() 839 free(loader); in main() [all …]
|
| /freebsd-13.1/stand/i386/loader/ |
| H A D | loader.rc | 5 include /boot/loader.4th 7 try-include /boot/loader.rc.local 9 \ Reads and processes loader.conf variables
|