| /u-boot/test/log/ |
| A D | syslog_test.c | 55 env->expected = NULL; in sb_log_tx_handler() 83 struct sb_log_env env; in log_test_syslog_err() local 92 env.uts = uts; in log_test_syslog_err() 116 struct sb_log_env env; in log_test_syslog_warning() local 125 env.uts = uts; in log_test_syslog_warning() 150 struct sb_log_env env; in log_test_syslog_notice() local 159 env.uts = uts; in log_test_syslog_notice() 184 struct sb_log_env env; in log_test_syslog_info() local 193 env.uts = uts; in log_test_syslog_info() 218 struct sb_log_env env; in log_test_syslog_debug() local [all …]
|
| A D | syslog_test_ndebug.c | 35 struct sb_log_env env; in log_test_syslog_nodebug() local 42 env.expected = "<7>sandbox uboot: log_test_syslog_nodebug() " in log_test_syslog_nodebug() 44 env.uts = uts; in log_test_syslog_nodebug() 47 sandbox_eth_set_priv(0, &env); in log_test_syslog_nodebug() 51 ut_assertnonnull(env.expected); in log_test_syslog_nodebug()
|
| /u-boot/board/ti/ks2_evm/ |
| A D | board.c | 100 char *env; in ft_board_setup() local 107 env = env_get("mem_lpae"); in ft_board_setup() 108 lpae = env && simple_strtol(env, NULL, 0); in ft_board_setup() 135 if (env) { in ft_board_setup() 140 env = env_get("mem_reserve"); in ft_board_setup() 141 if (env) in ft_board_setup() 153 char *env; in ft_board_setup_ex() local 157 env = env_get("mem_lpae"); in ft_board_setup_ex() 158 lpae = env && simple_strtol(env, NULL, 0); in ft_board_setup_ex() 159 env = env_get("uinitrd_fixup"); in ft_board_setup_ex() [all …]
|
| /u-boot/board/theobroma-systems/puma_rk3399/ |
| A D | puma-rk3399.c | 55 char *env_default, *env; in setup_boottargets() local 65 env = env_get("boot_targets"); in setup_boottargets() 66 if (!env) { in setup_boottargets() 71 __func__, env, env_default); in setup_boottargets() 73 if (strcmp(env_default, env) != 0) { in setup_boottargets() 92 mmc0 = strstr(env, "mmc0"); in setup_boottargets() 93 mmc1 = strstr(env, "mmc1"); in setup_boottargets() 107 debug("%s: set boot_targets to: %s\n", __func__, env); in setup_boottargets() 108 env_set("boot_targets", env); in setup_boottargets()
|
| /u-boot/doc/sphinx/ |
| A D | kerneldoc.py | 71 env = self.state.document.settings.env 72 cmd = [env.config.kerneldoc_bin, '-rst', '-enable-lineno'] 79 filename = env.config.kerneldoc_srctree + '/' + self.arguments[0] 83 env.note_dependency(os.path.abspath(filename)) 115 for f in glob.glob(env.config.kerneldoc_srctree + '/' + pattern): 116 env.note_dependency(os.path.abspath(f)) 122 kernellog.verbose(env.app, 133 kernellog.warn(env.app, 136 elif env.config.kerneldoc_verbosity > 0: 151 doc = env.srcdir + "/" + env.docname + ":" + str(self.lineno) [all …]
|
| A D | automarkup.py | 131 cdom = app.env.domains['c'] 159 xref = cdom.resolve_xref(app.env, docname, app.builder, 190 cdom = app.env.domains['c'] 217 xref = cdom.resolve_xref(app.env, docname, app.builder, 233 stddom = app.env.domains['std'] 247 xref = stddom.resolve_xref(app.env, docname, app.builder, 'doc', 260 source = app.env.doc2path(docname)
|
| /u-boot/board/gardena/smart-gateway-mt7688/ |
| A D | board.c | 70 char *env; in prepare_uuid_var() local 81 env = env_get(env_var_name); in prepare_uuid_var() 82 if (strcmp(env, str)) { in prepare_uuid_var() 96 char *env; in factory_data_env_config() local 145 env = env_get("wifiaddr"); in factory_data_env_config() 146 if (strcmp(env, str)) { in factory_data_env_config() 157 env = env_get("ethaddr"); in factory_data_env_config() 158 if (strcmp(env, str)) { in factory_data_env_config() 197 char *env; in copy_or_generate_uuid() local 200 env = env_get(env_var_name); in copy_or_generate_uuid() [all …]
|
| /u-boot/arch/arm/mach-keystone/ |
| A D | keystone.c | 47 char *env; in misc_init_r() local 50 env = env_get("ks2_debug"); in misc_init_r() 52 if (env) in misc_init_r() 53 ks2_debug = simple_strtol(env, NULL, 0); in misc_init_r()
|
| /u-boot/board/gateworks/venice/ |
| A D | imx8mm_venice.c | 105 char env[32]; in board_late_init() local 115 sprintf(env, "eth%daddr", i); in board_late_init() 117 sprintf(env, "ethaddr"); in board_late_init() 118 ethmac = env_get(env); in board_late_init() 122 eth_env_set_enetaddr(env, enetaddr); in board_late_init()
|
| /u-boot/test/py/tests/ |
| A D | test_efi_loader.py | 62 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) 122 f = u_boot_console.config.env.get(env_conf, None) 193 check_smbios = u_boot_console.config.env.get('env__efi_loader_check_smbios', False)
|
| A D | test_net.py | 69 init_usb = u_boot_console.config.env.get('env__net_uses_usb', False) 73 init_pci = u_boot_console.config.env.get('env__net_uses_pci', False) 85 test_dhcp = u_boot_console.config.env.get('env__net_dhcp_server', False) 104 env_vars = u_boot_console.config.env.get('env__net_static_env_vars', None) 143 f = u_boot_console.config.env.get('env__net_tftp_readable_file', None) 184 f = u_boot_console.config.env.get('env__net_nfs_readable_file', None)
|
| A D | test_sleep.py | 26 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)
|
| /u-boot/cmd/ |
| A D | qfw.c | 122 char *env; in qemu_fwcfg_do_load() local 126 env = env_get("loadaddr"); in qemu_fwcfg_do_load() 127 load_addr = env ? in qemu_fwcfg_do_load() 128 (void *)simple_strtoul(env, NULL, 16) : in qemu_fwcfg_do_load() 135 env = env_get("ramdiskaddr"); in qemu_fwcfg_do_load() 136 initrd_addr = env ? in qemu_fwcfg_do_load() 137 (void *)simple_strtoul(env, NULL, 16) : in qemu_fwcfg_do_load()
|
| /u-boot/tools/patman/ |
| A D | tools.py | 234 host_name, *host_args = env.get('HOST' + name.upper(), '').split(' ') 236 host_name, *host_args = env.get('HOSTCXX', '').split(' ') 276 env = dict(os.environ) 282 target_name, *extra_args = env.get(name.upper(), '').split(' ') 284 target_name, *extra_args = env.get('CXX', '').split(' ') 290 cross_compile = env.get('CROSS_COMPILE', '') 334 env = None 336 env = dict(os.environ) 337 env['PATH'] = ':'.join(tool_search_paths) + ':' + env['PATH'] 347 env=env, raise_on_error=False, binary=binary) [all …]
|
| /u-boot/arch/arm/mach-uniphier/ |
| A D | board_late_init.c | 53 static void uniphier_set_env_addr(const char *env, const char *offset_env) in uniphier_set_env_addr() argument 61 if (env_get(env)) in uniphier_set_env_addr() 74 ret = env_set_hex(env, gd->ram_base + offset); in uniphier_set_env_addr() 81 pr_warn("\"%s\" environment variable was not set correctly\n", env); in uniphier_set_env_addr()
|
| /u-boot/test/env/ |
| A D | Kconfig | 2 bool "Enable env unit tests" 6 This enables the 'ut env' command which runs a series of unit 7 tests on the env code.
|
| /u-boot/tools/env/ |
| A D | fw_env.c | 400 for (env = environment.data; *env; env = nxt + 1) { in fw_getenv() 426 for (env = default_environment; *env; env = nxt + 1) { in fw_getdefenv() 466 for (env = environment.data; *env; env = nxt + 1) { in fw_printenv() 542 for (nxt = env = environment.data; *env; env = nxt + 1) { in fw_env_write() 602 *env = '\0'; in fw_env_write() 608 ++env; in fw_env_write() 621 for (env = environment.data; *env || *(env + 1); ++env) in fw_env_write() 624 ++env; in fw_env_write() 640 env++; in fw_env_write() 641 *env = '='; in fw_env_write() [all …]
|
| /u-boot/board/emulation/common/ |
| A D | Kconfig | 10 string "mtd u-boot env partition for nor1" 11 default "64m(u-boot-env)" if TARGET_QEMU_ARM_64BIT && !TFABOOT 15 for the u-boot env stored on nor1.
|
| /u-boot/doc/device-tree-bindings/ |
| A D | config.txt | 24 u-boot,mmc-env-partition 29 if u-boot,mmc-env-offset* is present, this setting will take 31 mmc-env-offset* will be tried. 33 u-boot,mmc-env-offset 34 u-boot,mmc-env-offset-redundant 35 If present, the values of the 'u-boot,mmc-env-offset' and/or 36 of the u-boot,mmc-env-offset-redundant' properties overrides
|
| /u-boot/tools/buildman/ |
| A D | builderthread.py | 212 env = self.toolchain.MakeEnvironment(self.builder.full_path) 261 'mrproper', *args, env=env) 264 *(args + config_args), env=env) 271 env=env) 346 env = result.toolchain.MakeEnvironment(self.builder.full_path) 348 for var in sorted(env.keys()): 349 print('%s="%s"' % (var, env[var]), file=fd) 355 raise_on_error=False, env=env) 365 raise_on_error=False, env=env) 380 raise_on_error=False, env=env) [all …]
|
| /u-boot/tools/binman/test/ |
| A D | 175_env_no_size.dts | 12 u-boot-env { 13 filename = "env.txt";
|
| A D | 174_env.dts | 12 u-boot-env { 13 filename = "env.txt";
|
| A D | 176_env_too_small.dts | 12 u-boot-env { 13 filename = "env.txt";
|
| /u-boot/board/friendlyarm/ |
| A D | Kconfig | 21 Environment variable rootdev is set to this value if env. var. firstboot 23 determines (together with env. var. bootpart) where the OS (linux) is 30 (together with env. var. rootdev) where the OS (linux) is booted from.
|
| /u-boot/doc/ |
| A D | README.pcap | 25 env set ipaddr 10.0.2.15; env set serverip 10.0.2.2; tftp uImage64 34 # env set ipaddr 10.0.2.15; env set serverip 10.0.2.2; tftp uImage64
|