/freebsd/stand/lua/ |
H A D | core.lua | 50 local boot_single = loader.getenv("boot_single") or "no" 51 local boot_verbose = loader.getenv("boot_verbose") or "no" 68 local lua_path = loader.lua_path 115 loader.setenv("boot_verbose", "YES") 117 loader.unsetenv("boot_verbose") 128 loader.setenv("boot_single", "YES") 130 loader.unsetenv("boot_single") 140 if loader.getenv("acpi.rsdp") ~= nil then 153 local c = loader.getenv("hint.acpi.0.disabled") 164 loader.setenv("hint.acpi.0.disabled", "0") [all …]
|
H A D | menu.lua | 56 loader.setenv("vfs.root.mountfrom", env) 57 loader.setenv("currdev", env .. ":") 59 if loader.getenv("kernelname") ~= nil then 60 loader.perform("unload") 65 return loader.getenv("loader_menu_multi_user_prompt") or "Multi user" 324 loader.setenv("autoboot_delay", "NO") 332 loader.perform("reboot") 358 if loader.getenv("kernelname") ~= nil then 359 loader.perform("unload") 411 "oad " .. loader.getenv('chain_disk') [all …]
|
H A D | config.lua | 92 local current_value = loader.getenv(k) 100 loader.setenv(k, restore_value) 102 loader.unsetenv(k) 121 return loader.getenv(key) 133 env_restore[key] = {value = loader.getenv(key)} 136 return loader.setenv(key, value) 199 local repl = loader.getenv(name) or "" 366 local blacklist_str = loader.getenv('module_blacklist') 391 loader.printc(module_name .. "...") 413 if loader.command_error then [all …]
|
H A D | password.lua | 114 loader.delay(3*1000*1000) 124 local boot_pwd = loader.getenv("bootlock_password") 127 local geli_prompt = loader.getenv("geom_eli_passphrase_prompt") 130 loader.setenv("kern.geom.eli.passphrase", passphrase) 133 local pwd = loader.getenv("password") 136 loader.setenv("autoboot_delay", "NO")
|
H A D | drawer.lua | 59 gfx.term_drawrect = loader.term_drawrect 60 gfx.term_putimage = loader.term_putimage 222 local framestyle = loader.getenv("loader_menu_frame") or defaultframe() 274 local menu_header = loader.getenv("loader_menu_title") or 276 local menu_header_align = loader.getenv("loader_menu_title_align") 307 local x = tonumber(loader.getenv("loader_brand_x")) or 309 local y = tonumber(loader.getenv("loader_brand_y")) or 312 local branddef = getBranddef(loader.getenv("loader_brand")) 339 local x = tonumber(loader.getenv("loader_logo_x")) or 341 local y = tonumber(loader.getenv("loader_logo_y")) or [all …]
|
/freebsd/crypto/openssl/crypto/store/ |
H A D | store_meth.c | 18 int OSSL_STORE_LOADER_up_ref(OSSL_STORE_LOADER *loader) in OSSL_STORE_LOADER_up_ref() argument 22 if (loader->prov != NULL) in OSSL_STORE_LOADER_up_ref() 23 CRYPTO_UP_REF(&loader->refcnt, &ref, loader->lock); in OSSL_STORE_LOADER_up_ref() 27 void OSSL_STORE_LOADER_free(OSSL_STORE_LOADER *loader) in OSSL_STORE_LOADER_free() argument 29 if (loader != NULL && loader->prov != NULL) { in OSSL_STORE_LOADER_free() 32 CRYPTO_DOWN_REF(&loader->refcnt, &i, loader->lock); in OSSL_STORE_LOADER_free() 35 ossl_provider_free(loader->prov); in OSSL_STORE_LOADER_free() 36 CRYPTO_THREAD_lock_free(loader->lock); in OSSL_STORE_LOADER_free() 38 OPENSSL_free(loader); in OSSL_STORE_LOADER_free() 47 OSSL_STORE_LOADER *loader; in new_loader() local [all …]
|
H A D | store_register.c | 56 const ENGINE *OSSL_STORE_LOADER_get0_engine(const OSSL_STORE_LOADER *loader) in OSSL_STORE_LOADER_get0_engine() argument 58 return loader->engine; in OSSL_STORE_LOADER_get0_engine() 61 const char *OSSL_STORE_LOADER_get0_scheme(const OSSL_STORE_LOADER *loader) in OSSL_STORE_LOADER_get0_scheme() argument 63 return loader->scheme; in OSSL_STORE_LOADER_get0_scheme() 66 int OSSL_STORE_LOADER_set_open(OSSL_STORE_LOADER *loader, in OSSL_STORE_LOADER_set_open() argument 69 loader->open = open_function; in OSSL_STORE_LOADER_set_open() 74 (OSSL_STORE_LOADER *loader, in OSSL_STORE_LOADER_set_open_ex() argument 77 loader->open_ex = open_ex_function; in OSSL_STORE_LOADER_set_open_ex() 81 int OSSL_STORE_LOADER_set_attach(OSSL_STORE_LOADER *loader, in OSSL_STORE_LOADER_set_attach() argument 84 loader->attach = attach_function; in OSSL_STORE_LOADER_set_attach() [all …]
|
H A D | store_lib.c | 35 static int loader_set_params(OSSL_STORE_LOADER *loader, in loader_set_params() argument 40 if (!loader->p_set_ctx_params(loader_ctx, params)) in loader_set_params() 56 if (!loader->p_set_ctx_params(loader_ctx, propp)) in loader_set_params() 69 const OSSL_STORE_LOADER *loader = NULL; in OSSL_STORE_open_ex() local 117 if ((loader = ossl_store_get0_loader_int(scheme)) != NULL) { in OSSL_STORE_open_ex() 119 if (loader->open_ex != NULL) in OSSL_STORE_open_ex() 120 loader_ctx = loader->open_ex(loader, uri, libctx, propq, in OSSL_STORE_open_ex() 123 loader_ctx = loader->open(loader, uri, ui_method, ui_data); in OSSL_STORE_open_ex() 126 if (loader == NULL in OSSL_STORE_open_ex() 144 loader = fetched_loader; in OSSL_STORE_open_ex() [all …]
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | store.h | 259 int OSSL_STORE_LOADER_up_ref(OSSL_STORE_LOADER *loader); 260 void OSSL_STORE_LOADER_free(OSSL_STORE_LOADER *loader); 262 loader); 263 const char *OSSL_STORE_LOADER_get0_properties(const OSSL_STORE_LOADER *loader); 264 const char *OSSL_STORE_LOADER_get0_description(const OSSL_STORE_LOADER *loader); 265 int OSSL_STORE_LOADER_is_a(const OSSL_STORE_LOADER *loader, 268 void (*fn)(OSSL_STORE_LOADER *loader, 271 int OSSL_STORE_LOADER_names_do_all(const OSSL_STORE_LOADER *loader, 288 (const OSSL_STORE_LOADER *loader, const char *uri, 291 (const OSSL_STORE_LOADER *loader, [all …]
|
/freebsd/crypto/openssl/apps/lib/ |
H A D | engine_loader.c | 64 static OSSL_STORE_LOADER_CTX *engine_open(const OSSL_STORE_LOADER *loader, in engine_open() argument 169 OSSL_STORE_LOADER *loader = NULL; in setup_engine_loader() local 171 if ((loader = OSSL_STORE_LOADER_new(NULL, ENGINE_SCHEME)) == NULL in setup_engine_loader() 172 || !OSSL_STORE_LOADER_set_open(loader, engine_open) in setup_engine_loader() 173 || !OSSL_STORE_LOADER_set_expect(loader, engine_expect) in setup_engine_loader() 174 || !OSSL_STORE_LOADER_set_load(loader, engine_load) in setup_engine_loader() 175 || !OSSL_STORE_LOADER_set_eof(loader, engine_eof) in setup_engine_loader() 176 || !OSSL_STORE_LOADER_set_error(loader, engine_error) in setup_engine_loader() 177 || !OSSL_STORE_LOADER_set_close(loader, engine_close) in setup_engine_loader() 178 || !OSSL_STORE_register_loader(loader)) { in setup_engine_loader() [all …]
|
/freebsd/release/tools/ |
H A D | ec2.conf | 38 echo 'autoboot_delay="-1"' >> ${DESTDIR}/boot/loader.conf 39 echo 'beastie_disable="YES"' >> ${DESTDIR}/boot/loader.conf 43 echo 'entropy_efi_seed_size="64"' >> ${DESTDIR}/boot/loader.conf 53 echo 'hint.atkbd.0.disabled=1' >> ${DESTDIR}/boot/loader.conf 54 echo 'hint.atkbdc.0.disabled=1' >> ${DESTDIR}/boot/loader.conf 57 echo 'hint.fd.0.disabled=1' >> ${DESTDIR}/boot/loader.conf 58 echo 'hint.fdc.0.disabled=1' >> ${DESTDIR}/boot/loader.conf 61 echo 'hint.ppc.0.disabled=1' >> ${DESTDIR}/boot/loader.conf 66 echo 'boot_multicons="YES"' >> ${DESTDIR}/boot/loader.conf 71 echo 'hw.broken_txfifo="1"' >> ${DESTDIR}/boot/loader.conf [all …]
|
H A D | arm.subr | 136 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 138 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 140 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 149 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 151 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 153 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 162 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 164 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 169 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 171 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf [all …]
|
H A D | openstack.conf | 39 echo 'autoboot_delay="-1"' >> ${DESTDIR}/boot/loader.conf 40 echo 'beastie_disable="YES"' >> ${DESTDIR}/boot/loader.conf 41 echo 'boot_multicons="YES"' >> ${DESTDIR}/boot/loader.conf 42 echo 'console="comconsole vidconsole"' >> ${DESTDIR}/boot/loader.conf 43 echo 'comconsole_speed="115200"' >> ${DESTDIR}/boot/loader.conf
|
/freebsd/sys/contrib/device-tree/src/arm/intel/axm/ |
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/usr.sbin/bhyve/ |
H A D | qemu_loader.c | 76 qemu_loader_alloc(struct qemu_loader *const loader, const uint8_t *name, in qemu_loader_alloc() argument 101 STAILQ_INSERT_HEAD(&loader->list, element, chain); in qemu_loader_alloc() 107 qemu_loader_add_checksum(struct qemu_loader *const loader, const uint8_t *name, in qemu_loader_add_checksum() argument 127 STAILQ_INSERT_TAIL(&loader->list, element, chain); in qemu_loader_add_checksum() 133 qemu_loader_add_pointer(struct qemu_loader *const loader, in qemu_loader_add_pointer() argument 157 STAILQ_INSERT_TAIL(&loader->list, element, chain); in qemu_loader_add_pointer() 166 struct qemu_loader *loader; in qemu_loader_create() local 172 loader = calloc(1, sizeof(struct qemu_loader)); in qemu_loader_create() 173 if (loader == NULL) { in qemu_loader_create() 178 strncpy(loader->fwcfg_name, fwcfg_name, QEMU_FWCFG_MAX_NAME); in qemu_loader_create() [all …]
|
H A D | qemu_loader.h | 32 int qemu_loader_alloc(struct qemu_loader *loader, const uint8_t *name, 46 int qemu_loader_add_checksum(struct qemu_loader *loader, const uint8_t *name, 59 int qemu_loader_add_pointer(struct qemu_loader *loader, 77 int qemu_loader_finish(struct qemu_loader *loader);
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | OSSL_STORE_LOADER.pod | 39 int OSSL_STORE_LOADER_up_ref(OSSL_STORE_LOADER *loader); 40 void OSSL_STORE_LOADER_free(OSSL_STORE_LOADER *loader); 42 loader); 43 const char *OSSL_STORE_LOADER_get0_properties(const OSSL_STORE_LOADER *loader); 44 const char *OSSL_STORE_LOADER_get0_description(const OSSL_STORE_LOADER *loader); 45 int OSSL_STORE_LOADER_is_a(const OSSL_STORE_LOADER *loader, 48 void (*user_fn)(OSSL_STORE_LOADER *loader, 51 int OSSL_STORE_LOADER_names_do_all(const OSSL_STORE_LOADER *loader, 65 /* struct ossl_store_loader_ctx_st is defined differently by each loader */ 78 (const OSSL_STORE_LOADER *loader, BIO *bio, [all …]
|
/freebsd/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 8 cr .( - loader.4th...) 10 include /boot/loader.4th 25 \ Initialize loader.4th stuff 27 cr cr .( Initializing loader.4th...)
|
/freebsd/release/arm64/ |
H A D | PINEBOOK.conf | 29 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 31 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 33 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 35 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf 39 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
|
/freebsd/release/powerpc/ |
H A D | generate-hfs.sh | 23 # Create and bless a directory for the boot loader 28 # Make the CHRP boot script, which gets loader from the ISO9660 partition 41 boot &device;:,\ppc\loader &device;:0 45 echo 'Loader START' | dd of=loader.tmp cbs=$LOADER_SIZE count=1 conv=block 48 hcopy loader.tmp :loader 53 rm loader.tmp
|
/freebsd/stand/forth/ |
H A D | Makefile | 8 loader.4th.8 \ 21 FILES+= loader.4th 36 .for f in loader.rc menu.rc 37 .if exists(${BOOTSRC}/${MACHINE:C/amd64/i386/}/loader/${f}) 38 FILES+= ${BOOTSRC}/${MACHINE:C/amd64/i386/}/loader/${f}
|
H A D | loader.rc | 3 \ You should not edit this file! Put any overrides in loader.rc.local 7 include /boot/loader.4th 9 try-include /boot/loader.rc.local 11 \ Reads and processes loader.conf variables
|
/freebsd/usr.sbin/bsdinstall/scripts/ |
H A D | config | 44 cat $BSDINSTALL_TMPBOOT/loader.conf.* >> $BSDINSTALL_TMPBOOT/loader.conf 45 rm $BSDINSTALL_TMPBOOT/loader.conf.* 46 df -t zfs $BSDINSTALL_CHROOT > /dev/null && echo "zfs_load=\"YES\"" >> $BSDINSTALL_TMPBOOT/loader.c…
|
/freebsd/stand/efi/loader/ |
H A D | Makefile | 33 CFLAGS+= -I${.CURDIR}/../loader 60 .PATH: ${.CURDIR}/../loader 61 .PATH: ${.CURDIR}/../loader/arch/${__arch} 90 VERSION_FILE= ${.CURDIR}/../loader/version 91 HELP_FILENAME= loader.help.efi 105 LINKS+= ${BINDIR}/${LOADER}.efi ${BINDIR}/loader.efi 108 LDSCRIPT= ${.CURDIR}/../loader/arch/${__arch}/${__arch}.ldscript
|