Home
last modified time | relevance | path

Searched refs:loader (Results 1 – 25 of 317) sorted by relevance

12345678910>>...13

/freebsd-src/stand/lua/
H A Dcore.lua50 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
70 -- loader.lua_path export has sufficiently spread.
115 loader.setenv("boot_verbose", "YES")
117 loader.unsetenv("boot_verbose")
128 loader.setenv("boot_single", "YES")
130 loader.unsetenv("boot_single")
136 -- We can't trust acpi.rsdp to be set if the loader binary doesn't do
137 -- ACPI detection early enough. UEFI loader historicall
[all...]
H A Dmenu.lua56 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"
104 -- loader menu tree is rooted at menu.welcome
322 name = color.highlight("Esc") .. "ape to loader prompt",
324 loader.setenv("autoboot_delay", "NO")
332 loader.perform("reboot")
358 if loader
[all...]
H A Dconfig.lua78 -- should not rely on any particular value; it's a loader implementation
92 local current_value = loader.getenv(k)
100 loader.setenv(k, restore_value)
102 loader.unsetenv(k)
112 -- the call back into loader.getenv for any variable that's been set or
113 -- overridden by any loader.conf using this implementation with little overhead
121 return loader.getenv(key)
133 env_restore[key] = {value = loader.getenv(key)}
136 return loader.setenv(key, value)
140 -- These are set from lines in loader
[all...]
H A Dpassword.lua114 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 Ddrawer.lua50 -- Make this code compatible with older loader binaries. We moved the term_*
51 -- functions from loader to the gfx. if we're running on an older loader that
52 -- has these functions, create aliases for them in gfx. The loader binary might
54 -- values. The new loader will provide loader.* versions of all the gfx.*
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
[all...]
H A Dcli.lua97 return loader.command(...)
109 return loader.command(...)
115 return cli_execute(loader.parse(str))
124 loader.perform("unload")
140 loader.perform("unload")
252 loader.setenv("hint." .. d .. "." .. u .. ".disabled", "1")
/freebsd-src/crypto/openssl/crypto/store/
H A Dstore_meth.c18 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 Dstore_register.c56 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 Dstore_lib.c35 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-src/crypto/openssl/include/openssl/
H A Dstore.h259 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-src/crypto/openssl/apps/lib/
H A Dengine_loader.c64 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-src/sys/contrib/device-tree/src/arm/intel/axm/
H A Daxm5516-cpus.dtsi77 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-src/usr.sbin/bhyve/
H A Dqemu_loader.c76 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 Dqemu_loader.h32 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-src/release/tools/
H A Dec2.conf37 # access the boot loader via the serial port.
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
[all...]
H A Dopenstack.conf39 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
H A Darm.subr136 >> ${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 …]
/freebsd-src/crypto/openssl/doc/man3/
H A DOSSL_STORE_LOADER.pod39 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, BI
[all...]
/freebsd-src/share/examples/bootforth/
H A DREADME6 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 Dloader.rc1 \ 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-src/release/arm64/
H A DPINEBOOK.conf29 >> ${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-src/release/powerpc/
H A Dgenerate-hfs.sh23 # 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-src/stand/forth/
H A DMakefile8 loader.4th.8 \
21 FILES+= loader.4th
35 # Allow machine specific loader.rc to be installed.
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}
/freebsd-src/stand/efi/loader/
H A DMakefile20 # architecture-specific loader code
33 CFLAGS+= -I${.CURDIR}/../loader
60 .PATH: ${.CURDIR}/../loader
61 .PATH: ${.CURDIR}/../loader/arch/${__arch}
62 .include "${.CURDIR}/../loader/arch/${__arch}/Makefile.inc"
89 NEWVERSWHAT?= "EFI loader" ${MACHINE}
90 VERSION_FILE= ${.CURDIR}/../loader/version
91 HELP_FILENAME= loader.help.efi
94 .include "${BOOTSRC}/loader.mk"
105 LINKS+= ${BINDIR}/${LOADER}.efi ${BINDIR}/loader
[all...]
/freebsd-src/usr.sbin/bsdinstall/scripts/
H A Dconfig44 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…

12345678910>>...13