/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/minio/ |
H A D | src_uri.inc | 4 …a;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/charmbr… 9 …b;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/cheggaa… 14 …e;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/dustin/… 19 …r;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/fatih/c… 24 …e;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/go-ole/… 29 …n;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/goccy/g… 34 …x;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/google/… 39 …d;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/google/… 44 …p;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/inconsh… 49 …o;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/json-it… [all …]
|
/openbmc/openbmc/poky/bitbake/lib/bb/tests/ |
H A D | fetch.py | 447 self.tempdir = tempfile.mkdtemp(prefix="bitbake-fetch-") 554 ud = bb.fetch.FetchData(k[0], self.d) 561 …fetcher = bb.fetch.FetchData("http://downloads.yoctoproject.org/releases/bitbake/bitbake-1.0.tar.g… 568 …fetcher = bb.fetch.FetchData("https://downloads.yoctoproject.org/releases/bitbake/bitbake-1.0.tar.… 575 …fetcher = bb.fetch.FetchData("svn://svn.server1.com/isource/svnroot/reponame/tags/tagname;module=p… 584 …fetcher = bb.fetch.FetchData("http://downloads.yoctoproject.org/releases/bitbake/bitbake-1.0.tar.g… 596 …fetcher = bb.fetch.FetchData("https://downloads.yoctoproject.org/releases/bitbake/bitbake-1.0.tar.… 620 fetcher = bb.fetch.Fetch([self.recipe_url], self.d) 630 fetcher = bb.fetch.Fetch([self.recipe_url], self.d) 641 fetcher = bb.fetch.Fetch([self.mirror_url], self.d) [all …]
|
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/ |
H A D | local.py | 2 BitBake 'Fetch' implementations 26 Check to see if a given url represents a local fetch. 41 Return the local filename of a given url assuming a successful fetch. 47 Return the local filename of a given url assuming a successful fetch. 69 """Fetch urls (no-op for Local method)""" 70 # no need to fetch local files, we'll deal with them in place. 81 def checkstatus(self, fetch, urldata, d): argument
|
H A D | osc.py | 7 Bitbake "Fetch" implementation for osc (Opensuse build service client). 8 Based on the svn "Fetch" implementation. 24 """Class to fetch a module or modules from Opensuse build server 61 command is "fetch", "update", "info" 77 if command == "fetch": 90 Fetch latest revision for the given package 111 Fetch url 114 logger.debug2("Fetch: checking for module directory '" + ud.moddir + "'") 124 oscfetchcmd = self._buildosccommand(ud, d, "fetch") 125 logger.info("Fetch " + ud.url)
|
H A D | az.py | 2 BitBake 'Fetch' Azure Storage implementation 32 def checkstatus(self, fetch, ud, d, try_again=True): argument 41 return Wget.checkstatus(self, fetch, ud, d, try_again) 45 """Fetch urls""" 88 …raise FetchError("The fetch command returned success for url %s but %s doesn't exist?!" % (azuri, … 92 …raise FetchError("The fetch of %s resulted in a zero size file?! Deleting and failing since this i…
|
H A D | gitannex.py | 2 BitBake 'Fetch' git annex implementation 32 except bb.fetch.FetchError: 40 except bb.fetch.FetchError: 58 except bb.fetch.FetchError: 70 except bb.fetch.FetchError:
|
H A D | svn.py | 2 BitBake 'Fetch' implementation for svn. 23 """Class to fetch a module or modules from svn repositories""" 70 command is "fetch", "update", "info" 109 if command == "fetch": 123 """Fetch url""" 125 logger.debug2("Fetch: checking for module directory '" + ud.moddir + "'") 142 svncmd = self._buildsvncommand(ud, d, "fetch") 143 logger.info("Fetch " + ud.url) 157 bb.warn("svn fetch has ignored externals:\n%s" % output)
|
H A D | hg.py | 2 BitBake 'Fetch' implementation for mercurial DRCS (hg). 25 """Class to fetch from mercurial repositories""" 97 command is "fetch", "update", "info" 120 # Don't specify revision for the fetch; clone the entire repo. 124 if ud.revision and command != "fetch": 127 if command == "fetch": 151 """Fetch url""" 153 logger.debug2("Fetch: checking for module directory '" + ud.moddir + "'") 182 fetchcmd = self._buildhgcommand(ud, d, "fetch") 183 logger.info("Fetch " + ud.url) [all …]
|
H A D | npmsw.py | 6 BitBake 'Fetch' npm shrinkwrap implementation 24 from bb.fetch2 import Fetch 62 """Class to fetch all package from a shrinkwrap file""" 202 ud.proxy = Fetch(shrinkwrap_urls, data) 208 #Check if there are dependencies before try to fetch them 232 """Force a fetch, even if localpath exists ?""" 237 def try_mirrors(self, fetch, ud, d, mirrors): argument 240 return m.try_mirrors(fetch, ud, d, mirrors) 244 """Fetch url"""
|
H A D | wget.py | 2 BitBake 'Fetch' implementations 54 """Class to fetch urls via 'wget'""" 74 …raise bb.fetch2.ParameterError("Invalid protocol - if you wish to fetch from a git repository usin… 102 """Fetch urls""" 131 …raise FetchError("The fetch command returned success for url %s but %s doesn't exist?!" % (uri, lo… 135 …raise FetchError("The fetch of %s resulted in a zero size file?! Deleting and failing since this i… 148 def checkstatus(self, fetch, ud, d, try_again=True): argument 150 if fetch.connection_cache: 154 sock = fetch.connection_cache.get_connection(self.host, self.port) 160 fetch.connection_cache.add_connection(self.host, self.port, self.sock) [all …]
|
H A D | bzr.py | 2 BitBake 'Fetch' implementation for bzr. 46 command is "fetch", "update", "revno" 63 if command == "fetch": 73 """Fetch url""" 82 bzrcmd = self._buildbzrcommand(ud, d, "fetch")
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/ltrace/ltrace/ |
H A D | 0001-Use-correct-enum-type.patch | 12 sysdeps/linux-gnu/aarch64/fetch.c | 2 +- 15 diff --git a/sysdeps/linux-gnu/aarch64/fetch.c b/sysdeps/linux-gnu/aarch64/fetch.c 17 --- a/sysdeps/linux-gnu/aarch64/fetch.c 18 +++ b/sysdeps/linux-gnu/aarch64/fetch.c
|
/openbmc/qemu/tests/functional/ |
H A D | test_arm_sx1.py | 41 zimage_path = self.ASSET_ZIMAGE.fetch() 42 initrd_path = self.ASSET_INITRD.fetch() 52 zimage_path = self.ASSET_ZIMAGE.fetch() 53 sd_fs_path = self.ASSET_SD_FS.fetch() 63 zimage_path = self.ASSET_ZIMAGE.fetch() 64 flash_path = self.ASSET_FLASH.fetch()
|
H A D | test_ppc_40p.py | 42 bios_path = self.ASSET_BIOS.fetch() 43 drive_path = self.ASSET_NETBSD40.fetch() 68 drive_path = self.ASSET_NETBSD71.fetch() 83 drive_path = self.ASSET_40P_SANDALFOOT.fetch()
|
H A D | test_loongarch64_virt.py | 41 kernel_path = self.ASSET_KERNEL.fetch() 42 initrd_path = self.ASSET_INITRD.fetch() 43 bios_path = self.ASSET_BIOS.fetch()
|
/openbmc/openbmc/poky/meta/classes/ |
H A D | copyleft_compliance.bbclass | 33 fetch = bb.fetch2.Fetch(src_uri, d) 34 ud = fetch.ud 42 local = os.path.normpath(fetch.localpath(u.url)) 57 _, _, local, _, _, parm = bb.fetch.decodeurl(patch)
|
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
H A D | fetch.py | 14 class Fetch(OESelftestTestCase): class 26 # No mirrors, should use git to fetch successfully 34 bitbake("dbus-wait -c fetch -f") 47 bitbake("dbus-wait -c fetch -f") 58 bitbake("dbus-wait -c fetch -f") 73 …with bb.tinfoil.Tinfoil() as tinfoil, tempfile.TemporaryDirectory(prefix="selftest-fetch") as temp…
|
/openbmc/phosphor-state-manager/ |
H A D | settings.hpp | 23 * @brief Fetch paths of settings d-bus objects of interest, upon construction 28 /** @brief Constructor - fetch settings objects 40 /** @brief Fetch d-bus service, given a path and an interface. The 68 * @brief Fetch paths of settings d-bus objects of Host 75 /** @brief Constructor - fetch settings objects of Host
|
/openbmc/openbmc/poky/documentation/dev-manual/ |
H A D | efficiently-fetching-sources.rst | 14 source files and how you can pre-fetch files all of which leads to more 53 of build operations, is to pre-fetch all the source files without 59 Use the following BitBake command form to fetch all the necessary 62 $ bitbake target --runall=fetch
|
/openbmc/phosphor-host-ipmid/ |
H A D | settings.hpp | 16 * @brief Fetch paths of settings d-bus objects of interest, upon construction 21 /** @brief Constructor - fetch settings objects 34 /** @brief Fetch d-bus service, given a path and an interface. The
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/vk-gl-cts/files/ |
H A D | generate-srcuri.py | 49 fetch = load_module(os.path.join(basedir, "fetch_sources.py")) 51 for p in fetch.PACKAGES: 52 if isinstance(p, fetch.SourcePackage): 55 elif isinstance(p, fetch.SourceFile): 59 elif isinstance(p, fetch.GitRepo):
|
/openbmc/openbmc/meta-phosphor/recipes-phosphor/settings/ |
H A D | phosphor-settings-manager_git.bb | 59 fetch = bb.fetch2.Fetch([], d) 60 override_urls = [url for url in fetch.urls if url.endswith(('.override.yml', '.remove.yml'))] 63 local_base = os.path.basename(fetch.localpath(url))
|
/openbmc/qemu/hw/9pfs/ |
H A D | 9p-xattr-user.c | 30 * Don't allow fetch of user.virtfs namespace in mp_user_getxattr() 52 * Don't allow fetch of user.virtfs namespace in mp_user_listxattr() 77 * Don't allow fetch of user.virtfs namespace in mp_user_setxattr() 91 * Don't allow fetch of user.virtfs namespace in mp_user_removexattr()
|
/openbmc/openpower-debug-collector/dump/tools/bmcdump/plugins/ |
H A D | occ | 14 #fetch occ control data 26 #fetch occ control host data 35 #fetch occ sensors data
|
/openbmc/qemu/docs/spin/ |
H A D | aio_notify.promela | 36 int fetch; 55 atomic { fetch = req; req = 0; } 56 done = done | fetch;
|