/openbmc/openbmc/poky/bitbake/lib/bb/tests/ |
H A D | fetch.py | 2486 ud = fetcher.ud[fetcher.urls[0]] 2512 ud = fetcher.ud[fetcher.urls[0]] 2535 ud = fetcher.ud[fetcher.urls[0]] 2559 ud = fetcher.ud[fetcher.urls[0]] 2566 ud = fetcher.ud[fetcher.urls[1]] 2605 ud = fetcher.ud[fetcher.urls[0]] 2620 ud = fetcher.ud[fetcher.urls[0]] 2639 ud = fetcher.ud[fetcher.urls[0]] 2659 ud = fetcher.ud[fetcher.urls[0]] 2669 ud = fetcher.ud[fetcher.urls[0]] [all …]
|
/openbmc/openbmc/poky/bitbake/doc/bitbake-user-manual/ |
H A D | bitbake-user-manual-fetching.rst | 34 fetcher.download() 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 266 .. _cvs-fetcher: 335 .. _svn-fetcher: 378 .. _git-fetcher: 488 .. _gitsm-fetcher: 647 .. _repo-fetcher: 671 .. _az-fetcher: 699 .. _gcp-fetcher: [all …]
|
H A D | bitbake-user-manual-ref-variables-context.rst | 26 by BitBake to determine if BitBake's fetcher shall search only
|
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 56 Specifies a space-delimited list of hosts that the fetcher is allowed 92 fetcher does not attempt to use the host listed in :term:`SRC_URI` after 285 When set to "1", causes BitBake's fetcher module to only search 481 Disables network access in the BitBake fetcher modules. With this 636 Defines the behavior of the fetcher when it interacts with source 1067 Defines the command the BitBake fetcher module executes when running 1079 files. The "local" fetcher module uses these directories when 1456 submodules. Depending on the fetcher BitBake uses, various URL [all …]
|
/openbmc/openbmc/poky/bitbake/ |
H A D | ChangeLog | 18 - svn fetcher: Add _buildsvncommand function 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) 160 - Add osc fetcher (from Joshua Lock in Poky) 208 - Add ssh fetcher 209 - Add perforce fetcher 253 - git fetcher cleanup and efficency improvements [all …]
|
H A D | README | 46 You can run this with "bitbake-selftest". In particular the fetcher is well covered since 48 recommended before submitting patches, particularly to the fetcher and datastore. We also
|
/openbmc/openbmc/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
|
/openbmc/openbmc/poky/meta/classes/ |
H A D | go-vendor.bbclass | 62 fetcher = bb.fetch2.Fetch(src_uri, d) 80 for url in fetcher.urls: 81 srcuri = fetcher.ud[url].host + fetcher.ud[url].path 84 if not fetcher.ud[url].parm.get('is_go_dependency'): 87 destsuffix = fetcher.ud[url].parm.get('destsuffix') 98 module_path = fetcher.ud[url].parm.get('go_module_path') 100 subdir = fetcher.ud[url].parm.get('go_subdir') 103 pathMajor = fetcher.ud[url].parm.get('go_pathmajor')
|
H A D | archiver.bbclass | 194 # destsuffix (git fetcher) and subdir (everything else) are allowed to be 230 # to be set when using the git fetcher, otherwise SRCREV cannot 364 fetcher = bb.fetch2.Fetch(src_uri, d) 366 for ud in fetcher.expanded_urldata():
|
/openbmc/openbmc/poky/meta/classes-recipe/ |
H A D | go.bbclass | 90 fetcher = bb.fetch2.Fetch(src_uri, d) 91 for url in fetcher.urls: 92 if fetcher.ud[url].type == 'git': 93 if fetcher.ud[url].parm.get('destsuffix') is None: 95 … fetcher.ud[url].parm['destsuffix'] = os.path.join(s_dirname, 'src', d.getVar('GO_IMPORT')) + '/' 96 fetcher.unpack(d.getVar('WORKDIR'))
|
H A D | cargo_common.bbclass | 142 fetcher = bb.fetch2.Fetch(src_uri, d) 143 for url in fetcher.urls: 144 ud = fetcher.ud[url]
|
H A D | devupstream.bbclass | 22 # - If the fetcher requires native tools (such as subversion-native) then
|
/openbmc/openbmc/poky/meta/classes-global/ |
H A D | utility-tasks.bbclass | 54 fetcher = bb.fetch2.Fetch(src_uri, d) 55 fetcher.checkstatus()
|
H A D | uninative.bbclass | 66 # the current fetcher url handling 79 fetcher = bb.fetch2.Fetch([srcuri], localdata, cache=False) 80 fetcher.download() 81 localpath = fetcher.localpath(srcuri)
|
H A D | base.bbclass | 149 fetcher = bb.fetch2.Fetch(src_uri, d) 150 fetcher.download() 166 fetcher = bb.fetch2.Fetch(src_uri, d) 167 fetcher.unpack(d.getVar('WORKDIR')) 622 # HTTP/FTP use the wget fetcher 708 fetcher = bb.fetch2.Fetch([s], d) 709 local = fetcher.localpath(s) 741 fetcher = bb.fetch2.Fetch(src_uri, d) 742 fetcher.clean()
|
H A D | sstate.bbclass | 769 fetcher = bb.fetch2.Fetch([srcuri], localdata, cache=False) 770 fetcher.checkstatus() 771 fetcher.download() 1042 fetcher = bb.fetch2.Fetch(srcuri.split(), localdata2, 1044 fetcher.checkstatus() 1074 # Have to setup the fetcher environment here rather than in each thread as it would race
|
/openbmc/openbmc/poky/documentation/migration-guides/ |
H A D | migration-3.1.rst | 168 npm fetcher changes 171 The npm fetcher has been completely reworked in this release. The npm 172 fetcher now only fetches the package source itself and no longer the 173 dependencies; there is now also an npmsw fetcher which explicitly 180 generic ``name`` parameter. All recipes using the npm fetcher will need 194 fetcher changes. Other than producing working and more complete recipes
|
H A D | release-notes-4.0.4.rst | 39 - bitbake: bitbake-user-manual: npm fetcher: improve description of :term:`SRC_URI` format 44 - bitbake: doc: bitbake-user-manual: add explicit target for crates fetcher
|
H A D | migration-1.6.rst | 94 .. _migration-1.6-bitbake-fetcher: 99 The SVK fetcher has been removed from BitBake.
|
H A D | migration-2.3.rst | 194 "rsh" Parameter:* The SVN fetcher now takes an "ssh" parameter 198 fetcher passes the new parameter through the ``SVN_SSH`` environment 202 …":ref:`bitbake-user-manual/bitbake-user-manual-fetching:subversion (svn) fetcher (\`\`svn://\`\`)`"
|
/openbmc/openbmc/poky/scripts/lib/recipetool/ |
H A D | create_npm.py | 264 fetcher = bb.fetch2.Fetch([url_local], d) 265 fetcher.download() 266 fetcher.unpack(srctree)
|
/openbmc/openbmc/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")
|
/openbmc/openbmc/poky/meta-poky/classes/ |
H A D | poky-bleeding.bbclass | 3 # expands anything containing PV, else the parse process won't trigger the fetcher to
|
/openbmc/openbmc/meta-openembedded/meta-oe/classes/ |
H A D | gitpkgv.bbclass | 62 fetcher = bb.fetch2.Fetch(src_uri, d) 63 ud = fetcher.ud
|
/openbmc/linux/arch/alpha/lib/ |
H A D | ev6-copy_user.S | 56 beq $3, $destaligned # .. U .. .. : 2nd (one cycle fetcher stall)
|