| /OK3568_Linux_fs/kernel/arch/powerpc/platforms/ps3/ |
| H A D | repository.c | 290 int ps3_repository_find_device(struct ps3_repository_device *repo) in ps3_repository_find_device() argument 293 struct ps3_repository_device tmp = *repo; in ps3_repository_find_device() 296 BUG_ON(repo->bus_index > 10); in ps3_repository_find_device() 297 BUG_ON(repo->dev_index > 10); in ps3_repository_find_device() 335 *repo = tmp; in ps3_repository_find_device() 339 int ps3_repository_find_device_by_id(struct ps3_repository_device *repo, in ps3_repository_find_device_by_id() argument 412 *repo = tmp; in ps3_repository_find_device_by_id() 417 int (*callback)(const struct ps3_repository_device *repo)) in ps3_repository_find_devices() argument 420 struct ps3_repository_device repo; in ps3_repository_find_devices() local 424 repo.bus_type = bus_type; in ps3_repository_find_devices() [all …]
|
| H A D | device-init.c | 115 const struct ps3_repository_device *repo) in ps3_setup_gelic_device() argument 125 BUG_ON(repo->bus_type != PS3_BUS_TYPE_SB); in ps3_setup_gelic_device() 126 BUG_ON(repo->dev_type != PS3_DEV_TYPE_SB_GELIC); in ps3_setup_gelic_device() 137 p->dev.bus_id = repo->bus_id; in ps3_setup_gelic_device() 138 p->dev.dev_id = repo->dev_id; in ps3_setup_gelic_device() 141 result = ps3_repository_find_interrupt(repo, in ps3_setup_gelic_device() 182 const struct ps3_repository_device *repo, enum ps3_match_id match_id, in ps3_setup_uhc_device() argument 196 BUG_ON(repo->bus_type != PS3_BUS_TYPE_SB); in ps3_setup_uhc_device() 197 BUG_ON(repo->dev_type != PS3_DEV_TYPE_SB_USB); in ps3_setup_uhc_device() 208 p->dev.bus_id = repo->bus_id; in ps3_setup_uhc_device() [all …]
|
| H A D | platform.h | 134 int ps3_repository_find_device(struct ps3_repository_device *repo); 135 int ps3_repository_find_device_by_id(struct ps3_repository_device *repo, 138 int (*callback)(const struct ps3_repository_device *repo)); 141 int ps3_repository_find_interrupt(const struct ps3_repository_device *repo, 143 int ps3_repository_find_reg(const struct ps3_repository_device *repo,
|
| /OK3568_Linux_fs/yocto/poky/scripts/ |
| H A D | combo-layer | 62 def readsection(parser, section, repo): argument 65 self.repos[repo][name] = eval(value.strip("@")) 72 self.repos[repo][name] = value 88 for repo in self.parser.sections(): 89 if repo == "combo-layer-settings": 91 readglobalsection(self.parser, repo) 93 self.repos[repo] = {} 94 readsection(self.parser, repo, repo) 116 repo = sectionvals[0] 120 repo = section [all …]
|
| H A D | oe-build-perf-report | 41 def list_test_revs(repo, tag_name, verbosity, **kwargs): argument 45 fields, revs = gitarchive.get_test_runs(log, repo, tag_name, **valid_kwargs) 90 def is_xml_format(repo, commit): argument 92 if repo.rev_parse(commit + ':results.xml'): 99 def read_results(repo, tags, xml=True): argument 135 data = parse_xml_stream(repo.run_cmd(['show'] + git_objs + ['--'])) 140 data = parse_json_stream(repo.run_cmd(['show'] + git_objs + ['--'])) 375 def get_buildstats(repo, notes_ref, notes_ref2, revs, outdir=None): argument 378 if not repo.rev_parse(full_ref): 395 … bs_all = json.loads(repo.run_cmd(['notes', '--ref', notes_ref, 'show', tag + '^0'])) [all …]
|
| H A D | test-remote-image | 257 self.repo = self.get_repo_profile(self.repolink) 261 repo = getattr(sys.modules[__name__], self.repoprofile)(*args, **kwargs) 262 log.info("Using repo profile: %s" % repo.__class__.__name__) 263 return repo 274 postconfig = "DEPLOY_DIR_IMAGE = \"%s\"" % self.repo.localdir 299 log.info("Creating directory structure %s" % self.repo.localdir) 300 if not os.path.exists(self.repo.localdir): 301 os.makedirs(self.repo.localdir) 313 if self.repo.check_old_file(files_dict[f]): 314 filepath = os.path.join(self.repo.localdir, files_dict[f]) [all …]
|
| H A D | combo-layer.conf.example | 19 # the directory to clone the component repo 22 # the relative dir within the combo repo to put the component files 29 # Note that this value will get updated by "update" if the component repo's 35 # branch: specify the branch in the component repo to pull from 61 # repo.
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/ |
| H A D | gitarchive.py | 47 repo = GitRepo.init(path, bare) 49 repo = GitRepo(path, is_topdir=True) 55 return repo 58 def git_commit_data(repo, data_dir, branch, message, exclude, notes, log): argument 61 tmp_index = os.path.join(repo.git_dir, 'index.oe-git-archive') 66 repo.run_cmd('add .', env_update) 70 repo.run_cmd(['rm', '--cached'] + [f for f in exclude], env_update) 72 tree = repo.run_cmd('write-tree', env_update) 75 parent = repo.rev_parse(branch) 77 parent = repo.rev_parse("origin/" + branch) [all …]
|
| H A D | metadata.py | 81 repo = Repo(path, search_parent_directories=True) 84 info['commit'] = repo.head.commit.hexsha 85 info['commit_count'] = repo.head.commit.count() 87 info['branch'] = repo.active_branch.name
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/python3-git/ |
| H A D | 0001-python3-git-CVE-2022-24439-fix-from-PR-1518.patch | 39 git/repo/base.py | 4 ++-- 50 - proc = self.repo.git.fetch(self, *args, as_process=True, with_stdout=False, 51 + proc = self.repo.git.fetch("--", self, *args, as_process=True, with_stdout=False, 56 # No argument refspec, then ensure the repo's config has a fetch refspec. 58 kwargs = add_progress(kwargs, self.repo.git, progress) 59 - proc = self.repo.git.pull(self, refspec, with_stdout=False, as_process=True, 60 + proc = self.repo.git.pull("--", self, refspec, with_stdout=False, as_process=True, 67 kwargs = add_progress(kwargs, self.repo.git, progress) 68 - proc = self.repo.git.push(self, refspec, porcelain=True, as_process=True, 69 + proc = self.repo.git.push("--", self, refspec, porcelain=True, as_process=True, [all …]
|
| H A D | 0001-python3-git-CVE-2022-24439-fix-from-PR-1521.patch | 24 git/repo/base.py | 44 ++++++++++++++++++---- 155 - def _clone_repo(cls, repo: 'Repo', url: str, path: PathLike, name: str, **kwargs: Any) -> 'Rep… 156 + def _clone_repo(cls, repo: 'Repo', url: str, path: PathLike, name: str, 159 :param repo: our parent repository 162 module_checkout_path = osp.join(str(repo.working_tree_dir), path) 168 if cls._need_gitfile_submodules(repo.git): 173 def add(cls, repo: 'Repo', name: str, path: PathLike, url: Union[str, None] = None, 185 # _clone_repo(cls, repo, url, path, name, **kwargs): 186 - mrepo = cls._clone_repo(repo, url, path, name, env=env, **kwargs) 187 + mrepo = cls._clone_repo(repo, url, path, name, env=env, allow_unsafe_options=allow_uns… [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/repo/ |
| H A D | repo_2.22.bb | 6 HOMEPAGE = "https://android.googlesource.com/tools/repo" 12 SRC_URI = "git://gerrit.googlesource.com/git-repo.git;protocol=https;branch=main \ 17 MIRRORS += "git://gerrit.googlesource.com/git-repo.git git://github.com/GerritCodeReview/git-repo.g… 22 sed -Ei "s/REPO_REV\s*=\s*('|\")stable('|\")/REPO_REV = '${SRCREV}'/g" ${S}/repo 26 install -D ${WORKDIR}/git/repo ${D}${bindir}/repo
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/oelib/ |
| H A D | buildhistory.py | 20 self.repo = Repo.init(self.repo_path) 44 self.repo.git.add("--all") 45 self.repo.git.commit(message=msg) 55 blob = self.repo.head.commit.tree.blobs[0] 68 blob1 = self.repo.heads.master.commit.tree.blobs[0] 71 blob2 = self.repo.heads.master.commit.tree.blobs[0] 87 blob1 = self.repo.heads.master.commit.tree.blobs[0] 90 blob2 = self.repo.heads.master.commit.tree.blobs[0]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/repo/repo/ |
| H A D | 0001-python3-shebang.patch | 12 repo | 2 +- 15 diff --git a/repo b/repo 17 --- a/repo 18 +++ b/repo
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | kerneldevelopment.py | 48 repo = GitRepo('%s' % kernel_source, is_topdir=True) 49 repo.run_cmd('add %s' % readme) 50 repo.run_cmd(['commit', '-m', 'KERNEL_DEV_TEST_CASE']) 51 repo.run_cmd(['format-patch', '-1'])
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/resulttool/ |
| H A D | regression.py | 90 repo = GitRepo(args.repo) 92 revs = gitarchive.get_test_revs(logger, repo, tag_name, branch=args.branch) 95 revs2 = gitarchive.get_test_revs(logger, repo, tag_name, branch=args.branch2) 143 base_results = resultutils.git_get_result(repo, revs[index1][2]) 144 target_results = resultutils.git_get_result(repo, revs[index2][2])
|
| H A D | report.py | 237 repo = GitRepo(source_dir) 238 revs = gitarchive.get_test_revs(logger, repo, tag_name, branch=branch) 240 testresults = resultutils.git_get_result(repo, revs[rev_index][2], configmap=configmap) 242 repo = GitRepo(source_dir) 243 testresults = resultutils.git_get_result(repo, [tag], configmap=configmap)
|
| /OK3568_Linux_fs/device/rockchip/common/scripts/ |
| H A D | post-info.sh | 16 yes | ${PYTHON3:-python3} .repo/repo/repo manifest -r \
|
| /OK3568_Linux_fs/device/rockchip/common/post-hooks/ |
| H A D | 20-info.sh | 16 yes | ${PYTHON3:-python3} .repo/repo/repo manifest -r \
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-connectivity/openthread/ |
| H A D | ot-br-posix_git.bb | 8 … file://third_party/Simple-web-server/repo/LICENSE;md5=852b3f7f320b19f6431487b8b2fb1d74 \ 9 file://third_party/cJSON/repo/LICENSE;md5=218947f77e8cb8e2fa02918dc41c50d0 \ 10 … file://third_party/http-parser/repo/LICENSE-MIT;md5=9bfa835d048c194ab30487af8d7b3778 \ 11 … file://third_party/openthread/repo/LICENSE;md5=543b6fe90ec5901a683320a36390c65f \
|
| /OK3568_Linux_fs/kernel/scripts/ |
| H A D | spdxcheck.py | 32 def read_spdxdata(repo): argument 37 lictree = repo.head.commit.tree['LICENSES'] 240 repo = git.Repo(os.getcwd()) variable 241 assert not repo.bare 244 spdx = read_spdxdata(repo) 271 scan_git_subtree(repo.head.reference.commit.tree, p) 277 scan_git_tree(repo.head.commit.tree)
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/openocd/ |
| H A D | openocd_git.bb | 8 git://repo.or.cz/openocd.git;protocol=http;name=openocd;branch=master \ 9 git://repo.or.cz/r/git2cl.git;protocol=http;destsuffix=tools/git2cl;name=git2cl;branch=master \ 10 git://repo.or.cz/r/jimtcl.git;protocol=http;destsuffix=git/jimtcl;name=jimtcl;branch=master \ 11 …git://repo.or.cz/r/libjaylink.git;protocol=http;destsuffix=git/src/jtag/drivers/libjaylink;name=li…
|
| /OK3568_Linux_fs/buildroot/package/rtmpdump/ |
| H A D | 0001-include-limits.h.patch | 7 https://repo.or.cz/rtmpdump.git/commitdiff/c5f04a58fc2aeea6296ca7c44ee4734c18401aa3 18 https://repo.or.cz/rtmpdump.git/patch/c5f04a58fc2aeea6296ca7c44ee4734c18401aa3
|
| /OK3568_Linux_fs/u-boot/lib/optee_clientApi/ |
| H A D | README | 65 repo: android/rk/platform/vendor/rockchip/common 69 repo: android/rk/hardware/rk29/weaver 73 repo: linux/security/bin
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/dnf-plugin-tui/ |
| H A D | dnf-plugin-tui_git.bb | 10 SRC_URI:append:class-target = " file://oe-remote.repo.sample" 28 install -m 0644 ${WORKDIR}/oe-remote.repo.sample ${D}${sysconfdir}/yum.repos.d
|