Home
last modified time | relevance | path

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

12345678910

/freebsd-12.1/crypto/openssl/crypto/store/
H A Dstore_register.c59 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 Dstore_lib.c25 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()
475 if (ctx->loader->find == NULL) in OSSL_STORE_supports_search()
656 ctx->loader = loader; in ossl_store_attach_pem_bio()
[all …]
/freebsd-12.1/stand/lua/
H A Dcore.lua105 loader.unsetenv("boot_verbose")
118 loader.unsetenv("boot_single")
143 loader.setenv("acpi_load", "YES")
147 loader.unsetenv("acpi_load")
162 loader.setenv("hw.ata.wc", "0")
168 loader.unsetenv("hw.ata.ata_dma")
170 loader.unsetenv("hw.ata.wc")
171 loader.unsetenv("hw.eisa_slots")
190 local k = loader.getenv("kernel")
191 local v = loader.getenv("kernels")
[all …]
H A Dconfig.lua72 local current_value = loader.getenv(k)
80 loader.setenv(k, restore_value)
82 loader.unsetenv(k)
99 return loader.setenv(key, value)
294 loader.printc(module_name .. "...")
316 if loader.command_error then
317 print(loader.command_error())
344 local f = loader.getenv("loader_conf_files")
524 local bootfile = loader.getenv("bootfile")
562 loader.setenv("module_path", v)
[all …]
H A Dmenu.lua58 loader.setenv("vfs.root.mountfrom", env)
59 loader.setenv("currdev", env .. ":")
269 loader.setenv("autoboot_delay", "NO")
278 loader.perform("reboot")
316 loader.perform("unload")
345 "oad " .. loader.getenv('chain_disk')
348 loader.perform("chain " ..
349 loader.getenv('chain_disk'))
462 local endtime = loader.time() + delay
466 time = endtime - loader.time()
[all …]
H A Dcli.lua79 return loader.command(...)
91 return loader.command(...)
97 return cli_execute(loader.parse(str))
106 loader.perform("unload")
122 loader.perform("unload")
H A Dpassword.lua116 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 Ddrawer.lua160 local framestyle = loader.getenv("loader_menu_frame") or defaultframe()
201 local menu_header = loader.getenv("loader_menu_title") or
203 local menu_header_align = loader.getenv("loader_menu_title_align")
224 local x = tonumber(loader.getenv("loader_brand_x")) or
226 local y = tonumber(loader.getenv("loader_brand_y")) or
229 local branddef = getBranddef(loader.getenv("loader_brand"))
243 local x = tonumber(loader.getenv("loader_logo_x")) or
245 local y = tonumber(loader.getenv("loader_logo_y")) or
248 local logo = loader.getenv("loader_logo")
/freebsd-12.1/release/tools/
H A Dec2.conf71 echo 'debug.trace_on_panic=1' >> ${DESTDIR}/boot/loader.conf
72 echo 'debug.debugger_on_panic=0' >> ${DESTDIR}/boot/loader.conf
73 echo 'kern.panic_reboot_wait_time=0' >> ${DESTDIR}/boot/loader.conf
76 echo 'autoboot_delay="-1"' >> ${DESTDIR}/boot/loader.conf
77 echo 'beastie_disable="YES"' >> ${DESTDIR}/boot/loader.conf
83 echo 'hint.atkbd.0.disabled=1' >> ${DESTDIR}/boot/loader.conf
84 echo 'hint.atkbdc.0.disabled=1' >> ${DESTDIR}/boot/loader.conf
89 echo 'boot_multicons="YES"' >> ${DESTDIR}/boot/loader.conf
94 echo 'hw.broken_txfifo="1"' >> ${DESTDIR}/boot/loader.conf
97 echo 'if_ena_load="YES"' >> ${DESTDIR}/boot/loader.conf
H A Darm.subr123 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
125 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
127 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
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
156 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
158 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
[all …]
/freebsd-12.1/crypto/openssl/include/openssl/
H A Dstore.h219 *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-12.1/sys/gnu/dts/arm/
H A Daxm5516-cpus.dtsi81 cpu-release-addr = <0>; // Fixed by the boot loader
89 cpu-release-addr = <0>; // Fixed by the boot loader
97 cpu-release-addr = <0>; // Fixed by the boot loader
105 cpu-release-addr = <0>; // Fixed by the boot loader
113 cpu-release-addr = <0>; // Fixed by the boot loader
121 cpu-release-addr = <0>; // Fixed by the boot loader
129 cpu-release-addr = <0>; // Fixed by the boot loader
137 cpu-release-addr = <0>; // Fixed by the boot loader
145 cpu-release-addr = <0>; // Fixed by the boot loader
153 cpu-release-addr = <0>; // Fixed by the boot loader
[all …]
/freebsd-12.1/usr.sbin/pc-sysinstall/backend/
H A Dfunctions-cleanup.sh52 cat ${FSMNT}/boot/loader.conf 2>/dev/null | grep -q "vfs.root.mountfrom=" 2>/dev/null
66 cat ${FSMNT}/boot/loader.conf 2>/dev/null | grep -q 'zfs_load="YES"' 2>/dev/null
69 echo 'zfs_load="YES"' >>${FSMNT}/boot/loader.conf
135 echo "vfs.root.mountfrom=\"${ROOTFSTYPE}:${ROOTFS}\"" >> ${FSMNT}/boot/loader.conf
252 cat ${FSMNT}/boot/loader.conf 2>/dev/null | grep -q 'geom_mirror_load="YES"' 2>/dev/null
255 echo 'geom_mirror_load="YES"' >>${FSMNT}/boot/loader.conf
279 echo "geli_${PARTNAME}_keyfile0_load=\"YES\"" >> ${FSMNT}/boot/loader.conf
290 cat ${FSMNT}/boot/loader.conf 2>/dev/null | grep -q 'geom_eli_load="YES"' 2>/dev/null
293 echo 'geom_eli_load="YES"' >>${FSMNT}/boot/loader.conf
346 cat ${FSMNT}/boot/loader.conf 2>/dev/null | grep -q 'geom_journal_load="YES"' 2>/dev/null
[all …]
/freebsd-12.1/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
9 cr .( - loader.4th...)
11 include /boot/loader.4th
26 \ Initialize loader.4th stuff
28 cr cr .( Initializing loader.4th...)
/freebsd-12.1/release/arm64/
H A DPINEBOOK.conf31 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
33 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
35 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
37 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
41 >> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
/freebsd-12.1/crypto/openssl/doc/man3/
H A DOSSL_STORE_LOADER.pod43 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-12.1/usr.sbin/bsdinstall/scripts/
H A Dconfig45 cat $BSDINSTALL_TMPBOOT/loader.conf.* >> $BSDINSTALL_TMPBOOT/loader.conf
46 rm $BSDINSTALL_TMPBOOT/loader.conf.*
49 …BSDINSTALL_CHROOT > /dev/null && echo "opensolaris_load=\"YES\"" >> $BSDINSTALL_TMPBOOT/loader.conf
50 df -t zfs $BSDINSTALL_CHROOT > /dev/null && echo "zfs_load=\"YES\"" >> $BSDINSTALL_TMPBOOT/loader.c…
/freebsd-12.1/stand/efi/loader/
H A DMakefile28 CFLAGS+= -I${.CURDIR}/../loader
46 .PATH: ${.CURDIR}/../loader
47 .PATH: ${.CURDIR}/../loader/arch/${MACHINE}
89 VERSION_FILE= ${.CURDIR}/../loader/version
98 LINKS+= ${BINDIR}/${LOADER}.efi ${BINDIR}/loader.efi
101 LDSCRIPT= ${.CURDIR}/../loader/arch/${MACHINE}/ldscript.${MACHINE}
104 CLEANFILES+= loader.efi
/freebsd-12.1/stand/forth/
H A DMakefile10 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 Dloader.rc4 \ 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-12.1/release/powerpc/
H A Dgenerate-hfs.sh43 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-12.1/usr.sbin/bhyveload/
H A Dbhyveload.c105 static char *loader; variable
579 free(loader); in cb_swap_interpreter()
734 if (loader != NULL) in main()
736 loader = strdup(optarg); in main()
737 if (loader == NULL) in main()
804 if (loader == NULL) { in main()
805 loader = strdup("/boot/userboot.so"); in main()
806 if (loader == NULL) in main()
814 free(loader); in main()
820 free(loader); in main()
[all …]
/freebsd-12.1/stand/sparc64/loader/
H A DMakefile19 PROG?= loader
21 VERSION_FILE= ${.CURDIR}/../loader/version
29 .PATH: ${BOOTSRC}/sparc64/loader
46 LINKS= ${BINDIR}/loader ${BINDIR}/zfsloader
/freebsd-12.1/usr.sbin/efibootmgr/
H A Defibootmgr.c72 char *loader; member
142 mangle_loader(char *loader) in mangle_loader() argument
146 for (c = loader; *c; c++) in mangle_loader()
150 return loader; in mangle_loader()
238 free(opts.loader); in parse_args()
239 opts.loader = strdup(optarg); in parse_args()
240 opts.loader = mangle_loader(opts.loader); in parse_args()
269 if (!opts.loader) in parse_args()
642 if (loader == NULL) in make_boot_var()
644 if (efivar_unix_path_to_device_path(loader, &loaderdp) != 0) in make_boot_var()
[all …]

12345678910