Home
last modified time | relevance | path

Searched refs:path (Results 1 – 25 of 464) sorted by relevance

12345678910>>...19

/buildroot/support/scripts/
A Dapply-patches.sh68 path="${1%%/}"
70 case "${path}" in
72 *) path="$PWD/${path}";;
104 if [ ! -e "${path}/$patch" ] ; then
113 echo " to be applied : ${path}/${patch}"
125 local path=$1
131 if [ -e "${path}/series" ] ; then
139 apply_patch "$path" "$i" series
143 if [ -d "${path}/$i" ] ; then
144 scan_patchdir "${path}/$i"
[all …]
/buildroot/support/testing/tests/core/
A Dtest_post_scripts.py23 with open(os.path.join(self.builddir, "build", f), newline='') as csvfile:
32 self.assertEqual(lines["BUILD_DIR"], os.path.join(self.builddir, "build"))
33 self.assertEqual(lines["HOST_DIR"], os.path.join(self.builddir, "host"))
34 staging = os.readlink(os.path.join(self.builddir, "staging"))
36 self.assertEqual(lines["BINARIES_DIR"], os.path.join(self.builddir, "images"))
37 self.assertEqual(lines["BR2_CONFIG"], os.path.join(self.builddir, ".config"))
41 os.path.join(self.builddir, "target"),
42 os.path.join(self.builddir, "target"))
44 os.path.join(self.builddir, "build/buildroot-fs/tar/target"),
47 os.path.join(self.builddir, "images"),
[all …]
A Dtest_hardening.py28 filepath = os.path.join(self.builddir, "target", target_file)
46 filepath = os.path.join(self.builddir, "target", f)
61 filepath = os.path.join(self.builddir, "target", f)
75 filepath = os.path.join(self.builddir, "target", f)
88 filepath = os.path.join(self.builddir, "target", f)
101 filepath = os.path.join(self.builddir, "target", f)
114 filepath = os.path.join(self.builddir, "target", f)
A Dtest_file_capabilities.py29 img = os.path.join(self.builddir, "images", "rootfs.squashfs")
33 kernel=os.path.join(self.builddir, "images", "zImage"),
38 … "-dtb", os.path.join(self.builddir, "images", "vexpress-v2p-ca9.dtb")])
/buildroot/support/testing/tests/toolchain/
A Dtest_external.py11 def has_broken_links(path): argument
12 for root, dirs, files in os.walk(path):
14 fpath = os.path.join(root, f)
15 if not os.path.exists(fpath):
24 path = os.path.join(self.builddir, "staging", d)
25 self.assertFalse(has_broken_links(path))
26 path = os.path.join(self.builddir, "target", d)
27 self.assertFalse(has_broken_links(path))
37 self.assertTrue(os.path.exists(interp_path))
65 img = os.path.join(self.builddir, "images", "rootfs.cpio")
[all …]
/buildroot/support/testing/tests/download/
A Dsshd.py19 SSHD_KEY_DIR = os.path.join(SSHD_HOST_DIR, "etc/ssh")
20 SSHD_KEY = os.path.join(SSHD_KEY_DIR, "ssh_host_ed25519_key")
24 SSH_CLIENT_KEY = os.path.join(SSH_CLIENT_KEY_DIR, "id_rsa")
47 server_keyfile = os.path.join(builddir, SSHD_KEY)
89 keyfile = os.path.join(builddir, SSHD_KEY)
90 if os.path.exists(keyfile):
94 hostdir = os.path.join(builddir, SSHD_HOST_DIR)
95 keydir = os.path.join(builddir, SSHD_KEY_DIR)
118 keyfile = os.path.join(builddir, SSH_CLIENT_KEY)
119 if os.path.exists(keyfile):
[all …]
/buildroot/package/curlftpfs/
A D0004-fix-musl-build-off-t.patch14 return ftpfs_getattr(path, &sbuf);
17 -static __off_t test_size(const char* path)
18 +static off_t test_size(const char* path)
21 int err = ftpfs_getattr(path, &sbuf);
26 - __off_t size = (long long int)test_size(path);
27 + off_t size = (long long int)test_size(path);
28 DEBUG(1, "ftpfs_truncate: %s check filesize=%lld\n", path, (long long int)size);
35 - __off_t size = test_size(path);
36 + off_t size = test_size(path);
37 DEBUG(1, "ftpfs_ftruncate: %s check filesize=%lld\n", path, (long long int)size);
/buildroot/package/python-pathpy/
A DConfig.in4 path.py implements a path objects as first-class
6 be invoked on those path objects directly.
8 https://github.com/jaraco/path.py
A Dpython-pathpy.hash1 # md5, sha256 from https://pypi.org/pypi/path.py/json
2 md5 c748063e113914dcb08e3f4eb6cd1de0 path.py-12.5.0.tar.gz
3 sha256 8d885e8b2497aed005703d94e0fd97943401f035e42a136810308bff034529a8 path.py-12.5.0.tar.gz
/buildroot/support/testing/infra/
A D__init__.py10 BASE_DIR = os.path.realpath(os.path.join(os.path.dirname(__file__), "../../.."))
29 return os.path.join(BASE_DIR, relpath)
33 return os.path.join(BASE_DIR, "support/testing", relpath)
37 finalpath = os.path.join(dldir, filename)
38 if os.path.exists(finalpath):
41 if not os.path.exists(dldir):
48 url_fh = urlopen(os.path.join(ARTIFACTS_URL, filename))
80 "-A", os.path.join("target", fpath)]
107 "-l", os.path.join("target", fpath)]
/buildroot/package/libodb-mysql/
A D0001-fix-syntax-issue-while-checking-ldflags.patch17 for path in $libmysqlclient_paths; do
19 -if test x"path" != xnone; then
20 +if test x"$path" != xnone; then
22 LDFLAGS="$LDFLAGS -L$path"
28 -if test x"path" != xnone; then
29 +if test x"$path" != xnone; then
/buildroot/support/testing/tests/init/
A Dbase.py8 img = os.path.join(self.builddir, "images", "rootfs.{}".format(fs_type))
18 kernel = os.path.join(self.builddir, "images", kernel)
19 options.extend(["-dtb", os.path.join(self.builddir, "images",
39 def check_init(self, path): argument
40 cmd = "cmp /proc/1/exe {}".format(path)
/buildroot/support/testing/tests/boot/
A Dtest_edk2.py37 hda = os.path.join(self.builddir, "images", "disk.img")
38 flash0 = os.path.join(self.builddir, "images", "SBSA_FLASH0.fd")
39 flash1 = os.path.join(self.builddir, "images", "SBSA_FLASH1.fd")
A Dtest_grub.py30 hda = os.path.join(self.builddir, "images", "disk.img")
62 hda = os.path.join(self.builddir, "images", "disk.img")
63 bios = os.path.join(self.builddir, "images", "OVMF.fd")
113 hda = os.path.join(self.builddir, "images", "disk.img")
114 bios = os.path.join(self.builddir, "images", "OVMF.fd")
160 hda = os.path.join(self.builddir, "images", "disk.img")
161 bios = os.path.join(self.builddir, "images", "QEMU_EFI.fd")
/buildroot/support/testing/tests/package/
A Dtest_firewalld.py31 cpio_file = os.path.join(self.builddir, "images", "rootfs.cpio")
32 kernel_file = os.path.join(self.builddir, "images", "zImage")
33 dtb_file = os.path.join(self.builddir, "images", "vexpress-v2p-ca9.dtb")
86 cpio_file = os.path.join(self.builddir, "images", "rootfs.cpio")
87 kernel_file = os.path.join(self.builddir, "images", "zImage")
88 dtb_file = os.path.join(self.builddir, "images", "vexpress-v2p-ca9.dtb")
A Dtest_bmap_tools.py34 img = os.path.join(self.builddir, "images", "rootfs.ext4")
44 cmd = "/root/{}".format(os.path.basename(self.sample_script))
65 bmap_x = os.path.join(self.b.builddir, "host", "bin", "bmaptool")
66 src_f = os.path.join(self.b.builddir, "images", "rootfs.ext2")
67 dst_f = os.path.join(self.b.builddir, "images", "rootfs.ext2.copy")
68 map_f = os.path.join(self.b.builddir, "images", "rootfs.ext2.bmap")
A Dtest_uboot_openssl_pkgconfig.py18 img = os.path.join(self.builddir, "images", "u-boot.bin")
19 self.assertTrue(os.path.exists(img))
A Dtest_fwts.py40 hda = os.path.join(self.builddir, "images", "disk.img")
41 flash0 = os.path.join(self.builddir, "images", "SBSA_FLASH0.fd")
42 flash1 = os.path.join(self.builddir, "images", "SBSA_FLASH1.fd")
/buildroot/package/perl-path-tiny/
A DConfig.in2 bool "perl-path-tiny"
4 File path utility.
/buildroot/support/testing/tests/fs/
A Dtest_oci.py29 rootfs = os.path.join(self.builddir, "images", "rootfs.ext2")
30 kern = os.path.join(self.builddir, "images", "Image")
41 … shutil.copy(os.path.join(self.builddir, 'images', 'rootfs-oci-latest-arm64-linux.oci-image.tar'),
42 os.path.join(self.builddir, 'target', 'oci.tar'))
A Dtest_yaffs2.py14 img = os.path.join(self.builddir, "images", "rootfs.yaffs2")
15 self.assertTrue(os.path.exists(img))
/buildroot/utils/
A Dgetdeveloperlib.py9 brpath = os.path.normpath(os.path.join(os.path.dirname(__file__), ".."))
47 if not os.path.exists(fname):
151 path = os.path.join(root, f)
152 if fname_get_package_infra(path):
153 pkg = os.path.splitext(f)[0]
202 return {os.path.basename(fname[:-10])
213 if os.path.isdir(fname):
215 all_files += [os.path.join(root, f) for f in files]
222 name = os.path.splitext(f)[0]
251 dev_files = glob.glob(os.path.join(brpath, fname))
[all …]
/buildroot/package/nodejs/nodejs-src/
A D0004-lib-internal-modules-cjs-loader.js-adjust-default-pa.patch4 Subject: [PATCH] lib/internal/modules/cjs/loader.js: adjust default path to
25 path.resolve(process.execPath, '..') :
26 path.resolve(process.execPath, '..', '..');
28 - const paths = [path.resolve(prefixDir, 'lib', 'node')];
29 + const paths = [path.resolve(prefixDir, 'lib', 'node'),
30 + path.resolve(prefixDir, 'lib', 'node_modules')];
33 ArrayPrototypeUnshift(paths, path.resolve(homeDir, '.node_libraries'));
A D0003-include-obj-name-in-shared-intermediate.patch29 path = path.replace(CONFIGURATION_NAME, self.config_name)
35 + path = path.replace("$|OBJ", obj)
37 return path
39 def ExpandRuleVariables(self, path, root, dirname, source, ext, name):
/buildroot/package/python-tornado/
A D0001-web-Fix-an-open-redirect-in-StaticFileHandler.patch25 # but there is some prefix to the path that was already
27 if not self.request.path.endswith("/"):
28 + if self.request.path.startswith("//"):
30 + # This means the next path segment is treated as a hostname instead
31 + # of a part of the path, making this effectively an open redirect.
35 + 403, "cannot redirect path with two initial slashes"
37 self.redirect(self.request.path + "/", permanent=True)
39 absolute_path = os.path.join(absolute_path, self.default_filename)

Completed in 34 milliseconds

12345678910>>...19