| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | runqemu.py | 24 self.recipe = 'core-image-minimal' 45 bitbake(self.recipe) 51 with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu: 58 with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu: 65 with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu: 71 cmd = "%s %s" % (self.cmd_common, self.recipe) 72 with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu: 79 cmd = "%s %s wic.vmdk" % (self.cmd_common, self.recipe) 80 with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu: 86 cmd = "%s %s wic.vdi" % (self.cmd_common, self.recipe) [all …]
|
| H A D | bblayers.py | 29 recipe = "xcursor-transparent-theme" 30 bb_file = self.get_recipe_basename(recipe) 39 recipe = "xcursor-transparent-theme" 41 recipe_file = self.get_recipe_basename(recipe) 114 def get_recipe_basename(self, recipe): argument 116 result = runCmd("bitbake-layers show-recipes -f %s" % recipe) 118 if recipe in line: 122 self.assertTrue(os.path.isfile(recipe_file), msg = "Can't find recipe file for %s" % recipe)
|
| H A D | devtool.py | 1545 for recipe in recipes: 1548 self.add_command_to_tearDown('bitbake -c clean %s' % recipe) 1549 runCmd('devtool modify %s -x %s' % (recipe, tempdir)) 1587 recipe = 'devtool-upgrade-test1' 1589 oldrecipefile = get_bb_var('FILE', recipe) 1594 self.assertNotIn(recipe, result.output) 1597 result = runCmd('devtool upgrade %s %s -V %s' % (recipe, tempdir, version)) 1601 …self.assertExists(os.path.join(self.workspacedir, 'recipes', recipe, '%s-%s' % (recipe, version)),… 1603 … newrecipefile = os.path.join(self.workspacedir, 'recipes', recipe, '%s_%s.bb' % (recipe, version)) 1607 self.assertIn(recipe, result.output) [all …]
|
| /OK3568_Linux_fs/yocto/poky/documentation/ref-manual/ |
| H A D | devtool-reference.rst | 42 Beginning work on a recipe: 43 add Add a new recipe 44 modify Modify the source for an existing recipe 45 upgrade Upgrade an existing recipe 48 latest-version Report the latest version of an existing recipe 51 Working on a recipe in the workspace: 52 build Build a recipe 53 rename Rename a recipe file in the workspace 54 edit-recipe Edit a recipe file 55 find-recipe Find a recipe file [all …]
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/devtool/ |
| H A D | export.py | 33 def add_recipe(tar, recipe, data): argument 41 arcname = 'sources/%s' % recipe 56 for recipe in recipes: 57 if recipe not in workspace: 58 … logger.error('Recipe (%s) on %s argument not in the current workspace' % (recipe, param)) 83 for recipe in args.include: 84 add_recipe(tar, recipe, workspace[recipe]) 85 exported.append(recipe) 87 for recipe, data in workspace.items(): 88 if recipe not in args.exclude: [all …]
|
| H A D | sdk.py | 247 for recipe in args.recipename: 248 if recipe in workspace: 249 raise DevtoolError('recipe %s is a recipe in your workspace' % recipe) 253 def checkstamp(recipe): argument 254 stampprefix = stampprefixes[recipe] 265 for recipe in args.recipename: 266 rd = parse_recipe(config, tinfoil, recipe, True) 269 stampprefixes[recipe] = '%s.%s' % (rd.getVar('STAMP'), tasks[0]) 270 if checkstamp(recipe): 271 logger.info('%s is already installed' % recipe) [all …]
|
| H A D | search.py | 79 for recipe in tinfoil.all_recipes(): 80 if args.fixed_setup and 'nativesdk' in recipe.inherits(): 84 if keyword_rc.search(recipe.pn): 87 for prov in recipe.provides: 92 for rprov in recipe.rprovides: 96 if match and not recipe.pn in matches: 97 print_match(recipe.pn)
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/ |
| H A D | buildstats.py | 187 for recipe in self.values(): 188 num += len(recipe.tasks) 195 for recipe in bs_json: 196 if recipe['name'] in buildstats: 198 "package ({})".format(recipe['name'])) 199 bsrecipe = BSRecipe(recipe['name'], recipe['epoch'], 200 recipe['version'], recipe['revision']) 201 for task, data in recipe['tasks'].items(): 204 buildstats[recipe['name']] = bsrecipe 353 for recipe in common: [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | copyleft_filter.bbclass | 2 # COPYLEFT_LICENSE_INCLUDE recipe, and False for the 18 COPYLEFT_RECIPE_TYPE[doc] = 'The "type" of the current recipe (e.g. target, native, cross)' 22 COPYLEFT_RECIPE_TYPES[doc] = 'Space separated list of recipe types to include' 26 COPYLEFT_AVAILABLE_RECIPE_TYPES[doc] = 'Space separated list of available recipe types' 30 COPYLEFT_PN_INCLUDE[doc] = 'Space separated list of recipe names to include' 34 COPYLEFT_PN_EXCLUDE[doc] = 'Space separated list of recipe names to exclude' 44 Determine if this recipe's sources should be deployed for compliance 52 included, motive = False, 'recipe type "%s" is excluded' % recipe_type 54 included, motive = False, 'recipe did not match anything' 66 included, motive = True, 'recipe has included licenses: %s' % ', '.join(reason) [all …]
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/layerindexlib/tests/ |
| H A D | layerindexobj.py | 169 recipe = self.index.recipes[1] 170 self.assertEqual(recipe.id, 1) 171 self.assertEqual(recipe.layerbranch_id, 1) 172 self.assertEqual(recipe.layerbranch, self.index.layerBranches[1]) 173 self.assertEqual(recipe.layer_id, 1) 174 self.assertEqual(recipe.layer, self.index.layerItems[1]) 175 self.assertEqual(recipe.filename, 'test_git.bb') 176 self.assertEqual(recipe.filepath, 'recipes-test') 177 self.assertEqual(recipe.fullpath, 'recipes-test/test_git.bb') 178 self.assertEqual(recipe.summary, "") [all …]
|
| /OK3568_Linux_fs/yocto/poky/scripts/contrib/ |
| H A D | image-manifest | 72 recipe = line.split(':', 1)[1].strip() 73 return recipe 82 recipe = pkg2recipe(tinfoil,pkg) 83 if recipe: 84 if not recipe in recipelist: 85 recipelist.append(recipe) 95 for recipe in sorted(recipelist): 96 print('%s' % recipe) 181 recipe = pkg2recipe(tinfoil, args.package) 182 print(' %s package provided by %s' % (args.package, recipe)) [all …]
|
| /OK3568_Linux_fs/yocto/poky/documentation/migration-guides/ |
| H A D | migration-2.4.rst | 85 from the main ``go`` recipe into a separate ``go-runtime`` recipe. 94 - ``acpitests``: This recipe is not maintained. 99 - ``bdwgc``: Nothing in OpenEmbedded-Core requires this recipe. It 102 - ``byacc``: This recipe was only needed by rpm 5.x and has moved to 105 - ``gcc (5.4)``: The 5.4 series dropped the recipe in favor of 6.3 / 111 recipe has been removed. 113 - ``guile``: This recipe was only needed by ``autogen-native`` and 114 ``remake``. The recipe is no longer needed by either of these 117 - ``libclass-isa-perl``: This recipe was previously needed for LSB 4, 120 - ``libdumpvalue-perl``: This recipe was previously needed for LSB 4, [all …]
|
| H A D | migration-general.rst | 25 metadata. For example, suppose you have a recipe in your layer that 26 is a customized version of a core recipe copied from the earlier 29 perhaps an include file used by the recipe) could have changed in a 31 removed from an include file and the customized recipe tries to call 34 You could "forward-port" all your customizations in your recipe so 41 recipe. Doing so isolates your changes from the main recipe, making 44 newer or older version of a recipe in another layer. 52 particular version of the recipe (i.e. its name does not use the % 53 wildcard) and the version of the recipe to which it is appending has 55 match the name of the recipe file. A mismatch between an append file [all …]
|
| H A D | migration-2.5.rst | 15 - ``bind-libs``: The libraries packaged by the bind recipe are in a 21 - ``flex-libfl``: The flex recipe splits out libfl into a separate 26 separate ``grub-bootconf`` recipe. However, the dependency 28 provider making it possible to have your own recipe provide the 30 the configuration back into the ``grub-efi`` recipe. 51 - ``latencytop``: This recipe is no longer maintained upstream. The 54 - ``libpfm4``: The only file that requires this recipe is 60 - ``man``: This recipe has been replaced by modern ``man-db`` 66 - ``nativesdk-postinst-intercept``: This recipe is not maintained. 71 - ``oprofile``: The functionality of this recipe is replaced by [all …]
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/ |
| H A D | api.py | 244 for recipe in recipes_list.split('\n'): 245 recipe_path = recipe[recipe.rfind('recipes-'):] 246 recipe_name = recipe[recipe.rfind('/')+1:].replace('.bb','') 602 recipe, r_created = CustomImageRecipe.objects.get_or_create( 613 recipe.file_path = request.POST["name"] 614 recipe.license = "MIT" 615 recipe.version = "0.1" 616 recipe.save() 625 Q(target=recipe.name))).last() 635 if built_package.recipe is None: [all …]
|
| /OK3568_Linux_fs/yocto/poky/documentation/sdk-manual/ |
| H A D | extensible.rst | 204 - *devtool upgrade*: Updates an existing recipe so that you can 208 ``devtool``. When you use ``devtool add``, a recipe is automatically 209 created. When you use ``devtool modify``, the specified existing recipe 212 the recipe a source tree that is under your control is used in order to 222 The ``devtool add`` command generates a new recipe based on existing 239 scenarios by which you could use ``devtool add`` to generate a recipe 246 access to the code, a recipe, and a controlled area in which to do 259 $ devtool add recipe fetchuri 263 folder. The command then creates a recipe named recipe and a 265 recipe, the command makes an attempt to determine the recipe name. [all …]
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/static/js/ |
| H A D | recipedetails.js | 12 var recipe = {id: $(this).data('recipe'), name: null} variable 13 newCustomImageModalSetRecipes([recipe]); 20 libtoaster.addRmLayer(ctx.recipe.layer_version, 23 var msg = libtoaster.makeLayerAddRmAlertMsg(ctx.recipe.layer_version, 34 if (ctx.recipe.totalPackages === 0){ 46 libtoaster.startABuild(null, ctx.recipe.name,
|
| H A D | layerBtn.js | 61 var recipe = $(this).data('recipe-name'); 63 libtoaster.startABuild(null, recipe, 73 var recipe = $(this).data('recipe-name'); 75 libtoaster.setDefaultImage(null, recipe, 91 var recipe = {id: $(this).data('recipe'), name: null} variable 92 newCustomImageModalSetRecipes([recipe]);
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-sato/webkit/webkitgtk/ |
| H A D | 0001-When-building-introspection-files-do-not-quote-CFLAG.patch | 8 …/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot-native/usr… 9 …/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot-native/usr… 10 …/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot/usr/lib/gl… 11 …/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot/usr/includ… 12 …/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot/usr/includ… 13 …/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot/usr/includ… 15 /srv/work/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot-na… 18 …/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot/usr/includ… 19 …/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot/usr/includ… 21 /srv/work/alex/poky/build-64-alt/tmp/work/core2-64-poky-linux/webkitgtk/2.36.0-r0/recipe-sysroot/us… [all …]
|
| /OK3568_Linux_fs/yocto/meta-clang/recipes-devtools/clang/clang/ |
| H A D | 0032-Correct-library-search-path-for-OpenEmbedded-Host.patch | 11 compiler-rt-native/13.0.1-r0/recipe-sysroot-native/usr/bin/clang 13 -isystem/path/to/x86_64-linux/compiler-rt-native/13.0.1-r0/recipe-sysroot-native/usr/include 15 /path/to/compiler-rt-native/13.0.1-r0/recipe-sysroot-native/usr/share/cmake-3.21/Modules/CMakeCComp… 22 b59da142f2b0:$ /path/to/x86_64-linux/compiler-rt-native/13.0.1-r0/recipe-sysroot-native/usr/bin/cla… 23 programs: =/build/tmp-glibc/work/x86_64-linux/compiler-rt-native/13.0.1-r0/recipe-sysroot-native/us… 24 …rt-native/13.0.1-r0/recipe-sysroot-native/usr/lib/clang/13.0.1:/build/tmp-glibc/work/x86_64-linux/… 27 b59da142f2b0:$ /path/to/x86_64-linux/compiler-rt-native/13.0.1-r0/recipe-sysroot-native/usr/bin/cla… 28 programs: =/build/tmp-glibc/work/x86_64-linux/compiler-rt-native/13.0.1-r0/recipe-sysroot-native/us… 29 …recipe-sysroot-native/usr/lib/clang/13.0.1:/usr/lib/x86_64-wrs-linux/10.2.0://lib/x86_64-wrs-linux…
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/sdkext/cases/ |
| H A D | devtool.py | 73 recipe = "librdfa" 75 self._run('devtool add %s %s' % (recipe, req) ) 77 self._run('devtool build %s' % recipe) 79 self._run('devtool reset %s' % recipe) 83 recipe = 'kernel-module-hello-world' 84 self._run('devtool add %s %s' % (recipe, docfile) ) 86 self._run('devtool build %s' % recipe) 88 self._run('devtool reset %s' % recipe)
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/wic/ |
| H A D | misc.py | 118 recipe = cmd 119 if recipe in NATIVE_RECIPES: 120 recipe = NATIVE_RECIPES[recipe] 122 if provided and "%s-native" % recipe in provided: 167 recipe = NATIVE_RECIPES.get(prog) 168 if recipe: 170 "build it with 'bitbake wic-tools' and try again.\n" % recipe
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/grpc/grpc/ |
| H A D | 0001-Revert-Changed-GRPCPP_ABSEIL_SYNC-to-GPR_ABSEIL_SYNC.patch | 13 | : && /OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0/recipe-sysroot-native/us… 14 urity --sysroot=/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0/recipe-sysroot… 15 …-map=/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0/recipe-sysroot= … 16 ild/oe-core/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0/recipe-sysroot-native= -fvisibility-… 17 /oe-core/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0/recipe-sysroot -Wall -ggdb -std=c++0x … 18 --sysroot=/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0/recipe-sysroot -O2 -… 19 …-map=/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0/recipe-sysroot= … 20 core/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0/recipe-sysroot-native= -fvisibility-inlines… 21 e/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0/recipe-sysroot -Wl,-O1 -Wl,--hash-style=gnu -Wl… 22 …-map=/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/sysdig/0.27.1-r0/recipe-sysroot= … [all …]
|
| /OK3568_Linux_fs/yocto/poky/scripts/ |
| H A D | oe-pkgdata-browser | 72 def packages_in_recipe(pkgdata, recipe): argument 76 data = load(os.path.join(pkgdata, recipe)) 152 recipe = recipe_from_package(self.pkgdata, package) 154 it = self.recipe_iters[recipe] 178 recipe = model[it][RecipeColumns.Recipe] 179 packages = packages_in_recipe(self.pkgdata, recipe) 186 package = recipe if recipe in packages else sorted(packages)[0] 241 for recipe in sorted(os.listdir(pkgdata)): 242 if os.path.isfile(os.path.join(pkgdata, recipe)): 243 self.recipe_iters[recipe] = self.recipe_store.append([recipe])
|
| /OK3568_Linux_fs/yocto/meta-qt5/recipes-qt/qt5/qtwebengine/chromium/ |
| H A D | 0012-chromium-skia-Fix-build-with-gcc-12.patch | 7 …recipe-sysroot-native/usr/bin/x86_64-poky-linux/x86_64-poky-linux-g++ -m64 -march=core2 -mtune=cor… 12 In file included from ../../../../recipe-sysroot/usr/include/c++/12.1.0/utility:73, 17 ../../../../recipe-sysroot/usr/include/c++/12.1.0/initializer_list:90:5: note: candidate: 'template… 20 ../../../../recipe-sysroot/usr/include/c++/12.1.0/initializer_list:90:5: note: template argument … 27 ../../../../recipe-sysroot/usr/include/c++/12.1.0/initializer_list:101:5: note: candidate: 'templat… 30 ../../../../recipe-sysroot/usr/include/c++/12.1.0/initializer_list:101:5: note: template argument… 37 ../../../../recipe-sysroot/usr/include/c++/12.1.0/initializer_list:101:5: note: candidate: 'templat… 40 ../../../../recipe-sysroot/usr/include/c++/12.1.0/initializer_list:101:5: note: template argument…
|