Searched refs:env (Results 1 - 25 of 591) sorted by relevance

1234567891011>>

/u-boot/scripts/
H A Denv2string.awk17 # env holds the env variable we are currently processing
18 env = "";
35 if (length(env) != 0) {
37 vars[var] = env
44 env = substr($0, RLENGTH + 1)
48 if (length(env) != 0 && match(var, "^(.*)[+]$")) {
57 env = vars[var] env
65 if (length(env)
[all...]
/u-boot/include/configs/
H A Dam65x_evm.h13 #include <env/ti/mmc.h>
14 #include <env/ti/k3_rproc.h>
15 #include <env/ti/k3_dfu.h>
H A Dam62ax_evm.h12 #include <env/ti/mmc.h>
13 #include <env/ti/k3_dfu.h>
/u-boot/tools/
H A Dprintinitialenv.c6 * Snippets taken from tools/env/fw_env.c
32 char *env, *nxt; local
34 for (env = default_environment; *env; env = nxt + 1) {
35 for (nxt = env; *nxt; ++nxt) {
41 printf("%s\n", env);
/u-boot/test/lib/
H A Dlongjmp.c15 jmp_buf env; member in struct:test_jmp_buf
25 * @env: environment
28 static noinline void test_longjmp(struct test_jmp_buf *env, int i) argument
30 env->val = i << 8;
31 longjmp(env->env, i);
50 struct test_jmp_buf env; local
53 env.val = -1;
54 ret = setjmp(env.env);
[all...]
/u-boot/board/freescale/imx8mp_evk/
H A Dimx8mp_evk.c6 #include <env.h>
/u-boot/board/dhelectronics/common/
H A Ddh_common.h9 * @env: name of environment variable
12 bool dh_mac_is_in_env(const char *env);
32 * dh_setup_mac_address - Try to get MAC address from various locations and write it to env
/u-boot/board/theobroma-systems/common/
H A Dcommon.c7 #include <env.h>
25 char *env; local
38 env = env_get("boot_targets");
39 if (!env) {
44 __func__, env, env_default);
46 if (strcmp(env_default, env) != 0) {
67 mmc0 = strstr(env, "mmc0");
68 mmc1 = strstr(env, "mmc1");
85 debug("%s: set boot_targets to: %s\n", __func__, env);
86 env_set("boot_targets", env);
[all...]
/u-boot/board/bsh/imx8mn_smm_s2/
H A Dimx8mn_smm_s2.c8 #include <env.h>
/u-boot/board/synopsys/hsdk/
H A DMakefile6 obj-y += env-lib.o
/u-boot/arch/x86/include/asm/
H A Dsetjmp.h39 int setjmp(jmp_buf env);
40 void longjmp(jmp_buf env, int val);
/u-boot/arch/arm/mach-keystone/
H A Dkeystone.c9 #include <env.h>
46 char *env; local
49 env = env_get("ks2_debug");
51 if (env)
52 ks2_debug = simple_strtol(env, NULL, 0);
/u-boot/test/log/
H A Dsyslog_test_ndebug.c35 struct sb_log_env env; local
42 env.expected = "<7>sandbox uboot: log_test_syslog_nodebug() "
44 env.uts = uts;
47 sandbox_eth_set_priv(0, &env);
51 ut_assertnonnull(env.expected);
H A Dsyslog_test.c29 struct sb_log_env *env = priv->priv; local
31 struct unit_test_state *uts = env->uts;
46 ut_asserteq(UDP_HDR_SIZE + strlen(env->expected) + 1,
51 ut_asserteq_mem(env->expected, buf,
55 env->expected = NULL;
83 struct sb_log_env env; local
90 env.expected = "<3>sandbox uboot: log_test_syslog_err() "
92 env.uts = uts;
95 sandbox_eth_set_priv(0, &env);
116 struct sb_log_env env; local
150 struct sb_log_env env; local
184 struct sb_log_env env; local
218 struct sb_log_env env; local
[all...]
/u-boot/board/ti/ks2_evm/
H A Dboard.c12 #include <env.h>
100 char *env; local
107 env = env_get("mem_lpae");
108 lpae = env && simple_strtol(env, NULL, 0);
134 env = env_get("mem_reserve_head");
135 if (env) {
136 start[0] += ustrtoul(env, &endp, 0);
137 size[0] -= ustrtoul(env, &endp, 0);
140 env
153 char *env; local
[all...]
/u-boot/board/ti/am62px/
H A Devm.c12 #include <env.h>
/u-boot/board/mediatek/mt7622/
H A Dmt7622_rfb.c9 #include <env.h>
/u-boot/cmd/
H A Dqfw.c8 #include <env.h>
54 char *env; local
58 env = env_get("loadaddr");
59 load_addr = env ?
60 hextoul(env, NULL) :
63 env = env_get("ramdiskaddr");
64 initrd_addr = env ?
65 hextoul(env, NULL) :
/u-boot/test/py/tests/
H A Dtest_sleep.py26 sleep_skip = u_boot_console.config.env.get('env__sleep_accurate', True)
34 sleep_time = u_boot_console.config.env.get('env__sleep_time', 3)
35 sleep_margin = u_boot_console.config.env.get('env__sleep_margin', 0.25)
50 sleep_skip = u_boot_console.config.env.get("env__sleep_accurate", True)
54 sleep_time = u_boot_console.config.env.get("env__sleep_time", 10)
55 sleep_margin = u_boot_console.config.env.get("env__sleep_margin", 0.25)
H A Dtest_of_migrate.py53 env = dict(os.environ)
54 env['EXT_DTB'] = dtb_fname
55 env['DEVICE_TREE'] = 'sandbox_new'
56 env['NO_LTO'] = '1' # Speed up build
59 *migrate, '-w', '-o', tmpdir], ignore_errors=True, env=env)
H A Dtest_efi_loader.py62 init_usb = u_boot_console.config.env.get('env__net_uses_usb', False)
66 init_pci = u_boot_console.config.env.get('env__net_uses_pci', False)
78 test_dhcp = u_boot_console.config.env.get('env__net_dhcp_server', False)
80 env_vars = u_boot_console.config.env.get('env__net_static_env_vars', None)
100 env_vars = u_boot_console.config.env.get('env__net_static_env_vars', None)
102 test_dhcp = u_boot_console.config.env.get('env__net_dhcp_server', False)
114 """Grab an env described file via TFTP and return its address
116 A file as described by an env config <env_conf> is downloaded from the TFTP
122 f = u_boot_console.config.env.get(env_conf, None)
193 check_smbios = u_boot_console.config.env
[all...]
/u-boot/doc/sphinx/
H A Dkerneldoc.py61 env = self.state.document.settings.env
62 cmd = [env.config.kerneldoc_bin, '-rst', '-enable-lineno']
69 filename = env.config.kerneldoc_srctree + '/' + self.arguments[0]
73 env.note_dependency(os.path.abspath(filename))
105 for f in glob.glob(env.config.kerneldoc_srctree + '/' + pattern):
106 env.note_dependency(os.path.abspath(f))
112 kernellog.verbose(env.app,
123 kernellog.warn(env.app,
126 elif env
[all...]
/u-boot/arch/arm/mach-uniphier/
H A Dboard_late_init.c8 #include <env.h>
53 static void uniphier_set_env_addr(const char *env, const char *offset_env) argument
61 if (env_get(env))
74 ret = env_set_hex(env, gd->ram_base + offset);
81 pr_warn("\"%s\" environment variable was not set correctly\n", env);
/u-boot/board/ti/am62ax/
H A Devm.c12 #include <env.h>
/u-boot/board/beagle/beagleboneai64/
H A Dbeagleboneai64.c11 #include <env.h>

Completed in 222 milliseconds

1234567891011>>