| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/tests/ |
| H A D | fetch.py | 479 …fetcher = bb.fetch.FetchData("http://downloads.yoctoproject.org/releases/bitbake/bitbake-1.0.tar.g… 481 uris, uds = bb.fetch2.build_mirroruris(fetcher, mirrors, self.d) 486 …fetcher = bb.fetch.FetchData("https://downloads.yoctoproject.org/releases/bitbake/bitbake-1.0.tar.… 488 uris, uds = bb.fetch2.build_mirroruris(fetcher, mirrors, self.d) 495 …fetcher = bb.fetch.FetchData("http://downloads.yoctoproject.org/releases/bitbake/bitbake-1.0.tar.g… 497 uris, uds = bb.fetch2.build_mirroruris(fetcher, mirrors, self.d) 507 …fetcher = bb.fetch.FetchData("https://downloads.yoctoproject.org/releases/bitbake/bitbake-1.0.tar.… 509 uris, uds = bb.fetch2.build_mirroruris(fetcher, mirrors, self.d) 531 fetcher = bb.fetch.Fetch([self.recipe_url], self.d) 533 fetcher.download() [all …]
|
| /OK3568_Linux_fs/yocto/poky/bitbake/doc/bitbake-user-manual/ |
| H A D | bitbake-user-manual-fetching.rst | 23 fetcher codebase deals with two distinct processes in order: obtaining 33 fetcher = bb.fetch2.Fetch(src_uri, d) 34 fetcher.download() 43 fetcher.unpack(rootdir) 55 fetcher, since those fetcher methods can be (and are) called with 72 For each URL passed to the fetcher, the fetcher calls the submodule that 80 In the former case, the URL is passed to the ``wget`` fetcher, which does not 82 fetcher does know how to use HTTP as a transport. 111 non-local archive downloads, the fetcher code can verify SHA-256 and MD5 180 As mentioned, the Git fetcher has its own unpack method that is [all …]
|
| H A D | bitbake-user-manual-ref-variables.rst | 41 :ref:`Azure Storage fetcher <bitbake-user-manual/bitbake-user-manual-fetching:fetchers>` 42 This variable can be defined to be used by the fetcher to authenticate 57 Specifies a space-delimited list of hosts that the fetcher is allowed 93 fetcher does not attempt to use the host listed in :term:`SRC_URI` after 270 When set to "1", causes BitBake's fetcher module to only search 449 Disables network access in the BitBake fetcher modules. With this 553 Defines the behavior of the fetcher when it interacts with source 984 Defines the command the BitBake fetcher module executes when running 996 files. The "local" fetcher module uses these directories when 1345 submodules. Depending on the fetcher BitBake uses, various URL [all …]
|
| /OK3568_Linux_fs/yocto/poky/bitbake/ |
| H A D | ChangeLog | 18 - svn fetcher: Add _buildsvncommand function 20 - Rewrite svn fetcher to make adding extra operations easier 25 - Add SRCREV support for svn fetcher 35 - Fix local fetcher's localpath return values 63 - Handle paths in svn fetcher module parameter 65 - Add bzr fetcher 68 - bzr fetcher tweaks from Robert Schuster (#2913) 69 - Add mercurial (hg) fetcher from Robert Schuster (#2913) 93 - Change the wget fetcher failure handling to avoid lockfile problems 94 - Add support for branches in git fetcher (Otavio Salvador, Michael Lauer) [all …]
|
| H A D | README | 40 You can run this with "bitbake-selftest". In particular the fetcher is well covered since 42 recommended before submitting patches, particularly to the fetcher and datastore. We also
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/geotestplugin/ |
| H A D | qgeotiledmappingmanagerengine_test.h | 92 QGeoTileFetcherTest *fetcher = new QGeoTileFetcherTest(this); in QGeoTiledMappingManagerEngineTest() local 94 …fetcher->setFinishRequestImmediately(parameters.value(QStringLiteral("finishRequestImmediately")).… in QGeoTiledMappingManagerEngineTest() 109 fetcher->setTileSize(tileSize()); in QGeoTiledMappingManagerEngineTest() 110 setTileFetcher(fetcher); in QGeoTiledMappingManagerEngineTest()
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/fetch2/ |
| H A D | README | 1 There are expectations of users of the fetcher code. This file attempts to document 21 e) fetcher output is deterministic (i.e. if you fetch configuration XXX now it 24 so the git fetcher has to resolve them with the network. We use git revisions 28 so that access behind firewalls works (the fetcher sets these in the 44 k) Where fixes or changes to behaviour in the fetcher are made, we ask that 46 have fairly extensive test coverage of the fetcher as it is the only way
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | go.bbclass | 79 fetcher = bb.fetch2.Fetch(src_uri, d) 80 for url in fetcher.urls: 81 if fetcher.ud[url].type == 'git': 82 if fetcher.ud[url].parm.get('destsuffix') is None: 84 … fetcher.ud[url].parm['destsuffix'] = os.path.join(s_dirname, 'src', d.getVar('GO_IMPORT')) + '/' 85 fetcher.unpack(d.getVar('WORKDIR'))
|
| H A D | utility-tasks.bbclass | 48 fetcher = bb.fetch2.Fetch(src_uri, d) 49 fetcher.checkstatus()
|
| H A D | uninative.bbclass | 58 # the current fetcher url handling 71 fetcher = bb.fetch2.Fetch([srcuri], localdata, cache=False) 72 fetcher.download() 73 localpath = fetcher.localpath(srcuri)
|
| H A D | base.bbclass | 158 fetcher = bb.fetch2.Fetch(src_uri, d) 159 fetcher.download() 175 fetcher = bb.fetch2.Fetch(src_uri, d) 176 fetcher.unpack(d.getVar('WORKDIR')) 639 # HTTP/FTP use the wget fetcher 744 fetcher = bb.fetch2.Fetch([s], d) 745 local = fetcher.localpath(s) 777 fetcher = bb.fetch2.Fetch(src_uri, d) 778 fetcher.clean()
|
| H A D | devupstream.bbclass | 16 # - If the fetcher requires native tools (such as subversion-native) then
|
| H A D | archiver.bbclass | 184 # destsuffix (git fetcher) and subdir (everything else) are allowed to be 220 # to be set when using the git fetcher, otherwise SRCREV cannot 354 fetcher = bb.fetch2.Fetch(src_uri, d) 356 for ud in fetcher.expanded_urldata():
|
| /OK3568_Linux_fs/yocto/meta-rockchip/classes/ |
| H A D | local-git.bbclass | 12 fetcher = Fetch(d.getVar('SRC_URI').split(), d) 13 urldata = fetcher.ud
|
| /OK3568_Linux_fs/yocto/poky/documentation/migration-guides/ |
| H A D | migration-3.1.rst | 166 npm fetcher changes 169 The npm fetcher has been completely reworked in this release. The npm 170 fetcher now only fetches the package source itself and no longer the 171 dependencies; there is now also an npmsw fetcher which explicitly 178 generic ``name`` parameter. All recipes using the npm fetcher will need 192 fetcher changes. Other than producing working and more complete recipes
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/ |
| H A D | qgeotiledmappingmanagerengine.cpp | 72 void QGeoTiledMappingManagerEngine::setTileFetcher(QGeoTileFetcher *fetcher) in setTileFetcher() argument 78 fetcher->setParent(this); in setTileFetcher() 79 d->fetcher_ = fetcher; in setTileFetcher()
|
| H A D | qgeotiledmappingmanagerengine_p.h | 103 void setTileFetcher(QGeoTileFetcher *fetcher);
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/recipetool/ |
| H A D | create_npm.py | 256 fetcher = bb.fetch2.Fetch([url_local], d) 257 fetcher.download() 258 fetcher.unpack(srctree)
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-core/psplash/ |
| H A D | psplash_git.bb | 28 fetcher = bb.fetch2.Fetch([uri], d) 29 flocal = os.path.basename(fetcher.localpath(uri)) 31 outsuffix = fetcher.ud[uri].parm.get("outsuffix")
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/nokia/ |
| H A D | qgeotiledmappingmanagerengine_nokia.cpp | 119 …QGeoTileFetcherNokia *fetcher = new QGeoTileFetcherNokia(parameters, networkManager, this, tileSiz… in QGeoTiledMappingManagerEngineNokia() local 120 setTileFetcher(fetcher); in QGeoTiledMappingManagerEngineNokia() 205 QMetaObject::invokeMethod(fetcher, "fetchCopyrightsData", Qt::QueuedConnection); in QGeoTiledMappingManagerEngineNokia() 206 QMetaObject::invokeMethod(fetcher, "fetchVersionData", Qt::QueuedConnection); in QGeoTiledMappingManagerEngineNokia()
|
| /OK3568_Linux_fs/buildroot/package/netsurf/ |
| H A D | 0003-fix-compilation-without-curl.patch | 24 #include "javascript/fetcher.h"
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/classes/ |
| H A D | gitpkgv.bbclass | 62 fetcher = bb.fetch2.Fetch(src_uri, d) 63 ud = fetcher.ud
|
| /OK3568_Linux_fs/kernel/arch/alpha/lib/ |
| H A D | ev6-copy_user.S | 56 beq $3, $destaligned # .. U .. .. : 2nd (one cycle fetcher stall)
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-support/strongswan/files/ |
| H A D | CVE-2022-40617.patch | 17 the fetcher thread (depending on the plugin) for as long as the default
|
| /OK3568_Linux_fs/buildroot/package/strongswan/ |
| H A D | Config.in | 74 bool "Enable CURL fetcher plugin to fetch files via libcurl"
|