/u-boot/test/py/tests/test_fs/test_squashfs/ |
A D | test_sqfs_ls.py | 15 build_dir = u_boot_console.config.build_dir 18 opt.gen_image(build_dir) 20 opt.clean_source(build_dir) 23 path = os.path.join(build_dir, "sqfs-" + opt.name) 34 opt.cleanup(build_dir) 36 opt.cleanup(build_dir)
|
A D | test_sqfs_load.py | 15 build_dir = u_boot_console.config.build_dir 21 opt.gen_image(build_dir) 23 opt.clean_source(build_dir) 27 path = os.path.join(build_dir, "sqfs-" + opt.name) 39 opt.cleanup(build_dir) 46 opt.cleanup(build_dir)
|
A D | sqfs_common.py | 33 def gen_image(self, build_dir): argument 34 src = os.path.join(build_dir, "sqfs_src/") 42 sqfs_img = os.path.join(build_dir, "sqfs-" + self.name) 51 def clean_source(self, build_dir): argument 52 src = os.path.join(build_dir, "sqfs_src/") 58 def cleanup(self, build_dir): argument 59 self.clean_source(build_dir) 60 sqfs_img = os.path.join(build_dir, "sqfs-" + self.name)
|
/u-boot/test/py/ |
A D | conftest.py | 97 dot_config = build_dir + '/' + conf_file 122 build_dir = config.getoption('build_dir') 123 if not build_dir: 125 mkdir_p(build_dir) 129 result_dir = build_dir 146 if build_dir != source_dir: 147 dest_args = ['-o', build_dir, '-w'] 153 if build_dir != source_dir: 154 o_opt = 'O=%s' % build_dir 202 ubconfig.build_dir = build_dir [all …]
|
A D | u_boot_console_sandbox.py | 50 self.config.build_dir + fname,
|
/u-boot/test/py/tests/test_efi_capsule/ |
A D | conftest.py | 51 (data_dir, u_boot_config.build_dir), 54 (data_dir, u_boot_config.build_dir), 57 (data_dir, u_boot_config.build_dir),
|
/u-boot/test/py/tests/ |
A D | test_ofplatdata.py | 12 dtb = cons.config.build_dir + '/spl/u-boot-spl.dtb' 13 fdtgrep = cons.config.build_dir + '/tools/fdtgrep'
|
A D | test_efi_fit.py | 211 return os.path.join(cons.config.build_dir, file_name) 388 'dn': cons.config.build_dir, 413 if fit['dn'] != cons.config.build_dir:
|
A D | test_fit.py | 127 return os.path.join(cons.config.build_dir, leaf) 455 mkimage = cons.config.build_dir + '/tools/mkimage'
|
A D | test_vboot.py | 371 mkimage = cons.config.build_dir + '/tools/mkimage' 372 fit_check_sign = cons.config.build_dir + '/tools/fit_check_sign'
|
/u-boot/tools/buildman/ |
A D | builderthread.py | 250 build_dir = self.builder.GetBuildDir(commit_upto, brd.target) 311 build_dir = self.builder.GetBuildDir(result.commit_upto, 313 Mkdir(build_dir) 315 outfile = os.path.join(build_dir, 'log') 338 with open(os.path.join(build_dir, 'toolchain'), 'w') as fd: 347 with open(os.path.join(build_dir, 'out-env'), 'w') as fd: 394 self.CopyFiles(result.out_dir, build_dir, '', ['uboot.env']) 410 result.out_dir, build_dir, dirname, 418 result.out_dir, build_dir, '', 422 def CopyFiles(self, out_dir, build_dir, dirname, patterns): argument [all …]
|
/u-boot/tools/patman/ |
A D | test_util.py | 25 def RunTestCoverage(prog, filter_fname, exclude_list, build_dir, required=None, argument 57 if build_dir: 58 prefix = 'PYTHONPATH=$PYTHONPATH:%s/sandbox_spl/tools ' % build_dir
|
/u-boot/test/py/tests/test_efi_secboot/ |
A D | conftest.py | 32 mnt_point = u_boot_config.build_dir + '/mnt_efisecure' 94 (u_boot_config.build_dir, mnt_point), shell=True) 219 (u_boot_config.build_dir, mnt_point), shell=True)
|
/u-boot/tools/ |
A D | moveconfig.py | 868 def __init__(self, configs, options, build_dir): argument 878 self.dotconfig = os.path.join(build_dir, '.config') 880 self.spl_autoconf = os.path.join(build_dir, 'spl', 'include', 882 self.config_autoconf = os.path.join(build_dir, AUTO_CONF_PATH) 883 self.defconfig = os.path.join(build_dir, 'defconfig') 1121 self.build_dir = tempfile.mkdtemp() 1123 self.make_cmd = (make_cmd, 'O=' + self.build_dir) 1126 self.parser = KconfigParser(configs, options, self.build_dir) 1144 shutil.rmtree(self.build_dir) 1256 with open(os.path.join(self.build_dir, AUTO_CONF_PATH)) as fd: [all …]
|
/u-boot/tools/dtoc/ |
A D | dtoc | 67 ['tools/patman/*.py', '*/fdt*', '*test*'], options.build_dir)
|
A D | main.py | 67 ['tools/patman/*.py', '*/fdt*', '*test*'], options.build_dir)
|
A D | test_fdt | 588 ['tools/patman/*.py', '*test_fdt.py'], options.build_dir)
|
A D | test_fdt.py | 588 ['tools/patman/*.py', '*test_fdt.py'], options.build_dir)
|
/u-boot/tools/binman/ |
A D | binman | 90 args.build_dir, all_set, extra_args or None)
|
A D | main.py | 90 args.build_dir, all_set, extra_args or None)
|
A D | control.py | 603 board_pathname = os.path.join(args.build_dir, board)
|
A D | ftest.py | 300 args.build_dir = self._indir
|
/u-boot/doc/develop/ |
A D | py_testing.rst | 101 will be written to `${build_dir}/test-log.html`. This is best viewed in a web
|