| /openbmc/openbmc/poky/documentation/ref-manual/ |
| H A D | tasks.rst | 17 ":ref:`bitbake-user-manual/bitbake-user-manual-metadata:tasks`" and 18 ":ref:`bitbake-user-manual/bitbake-user-manual-execution:dependencies`" sections in the 39 If no such file is found, the :ref:`ref-tasks-compile` task does nothing. 61 :ref:`ref-tasks-configure` task does nothing. 81 :ref:`ref-classes-deploy` class and should write the output 83 confused with ``${DEPLOY_DIR}``. The :ref:`ref-classes-deploy` class sets up 84 :ref:`ref-tasks-deploy` as a shared state (sstate) task that can be accelerated 93 The :ref:`ref-tasks-deploy` task is not added as a task by default and 95 after :ref:`ref-tasks-compile`, you can add it by doing 100 Adding :ref:`ref-tasks-deploy` after other tasks works the same way. [all …]
|
| H A D | classes.rst | 40 The :ref:`ref-classes-allarch` class is inherited by recipes that do not produce 52 configured for all architectures using :ref:`ref-classes-allarch`. This is the case 56 :ref:`do_package_write_* <ref-tasks-package_write_deb>` tasks to 61 By default, all recipes inherit the :ref:`ref-classes-base` and 62 :ref:`ref-classes-package` classes, which enable 66 inherit the :ref:`ref-classes-allarch` class. 73 The :ref:`ref-classes-archiver` class supports releasing source code and other 76 For more details on the source :ref:`ref-classes-archiver`, see the 77 ":ref:`dev-manual/licenses:maintaining open source license compliance during your product's lifecyc… 87 The :ref:`autotools* <ref-classes-autotools>` classes support packages built with the [all …]
|
| H A D | variables.rst | 60 ":ref:`ref-classes-update-alternatives`" 80 ":ref:`ref-classes-update-alternatives`" 96 ":ref:`ref-classes-update-alternatives`" 122 alternative files in the :ref:`ref-tasks-install` 126 ":ref:`ref-classes-update-alternatives`" section. 129 When inheriting the :ref:`ref-classes-features_check` 142 See the :ref:`ref-classes-grub-efi` class for more 149 When used with the :ref:`ref-classes-archiver` class, 197 When the :ref:`ref-classes-debian` class is inherited, 203 :ref:`ref-classes-debian` class to act on all packages that are [all …]
|
| /openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-bsp/uefi/ |
| H A D | edk2-firmware-sbsa-ref.inc | 1 COMPATIBLE_MACHINE:sbsa-ref = "sbsa-ref" 9 DEPENDS:append:sbsa-ref = " trusted-firmware-a coreutils-native" 11 EDK2_PLATFORM:sbsa-ref = "SbsaQemu" 12 EDK2_PLATFORM_DSC:sbsa-ref = "Platform/Qemu/SbsaQemu/SbsaQemu.dsc" 13 EDK2_BIN_NAME:sbsa-ref = "SBSA_FLASH0.fd" 15 do_compile:prepend:sbsa-ref() { 21 do_install:append:sbsa-ref() {
|
| /openbmc/u-boot/fs/btrfs/ |
| H A D | root.c | 62 struct btrfs_root_ref *ref; in btrfs_lookup_root_ref() local 71 ref = btrfs_path_item_ptr(&path, struct btrfs_root_ref); in btrfs_lookup_root_ref() 72 btrfs_root_ref_to_cpu(ref); in btrfs_lookup_root_ref() 75 *refp = *ref; in btrfs_lookup_root_ref() 78 if (ref->name_len > BTRFS_VOL_NAME_MAX) { in btrfs_lookup_root_ref() 80 ref->name_len); in btrfs_lookup_root_ref() 84 memcpy(name, ref + 1, ref->name_len); in btrfs_lookup_root_ref()
|
| H A D | inode.c | 16 struct btrfs_inode_ref *ref; in btrfs_lookup_inode_ref() local 25 ref = btrfs_path_item_ptr(&path, struct btrfs_inode_ref); in btrfs_lookup_inode_ref() 26 btrfs_inode_ref_to_cpu(ref); in btrfs_lookup_inode_ref() 29 *refp = *ref; in btrfs_lookup_inode_ref() 32 if (ref->name_len > BTRFS_NAME_MAX) { in btrfs_lookup_inode_ref() 34 ref->name_len); in btrfs_lookup_inode_ref() 38 memcpy(name, ref + 1, ref->name_len); in btrfs_lookup_inode_ref() 149 struct btrfs_root_ref ref; in get_parent_inode() local 151 parent = btrfs_lookup_root_ref(root->objectid, &ref, in get_parent_inode() 159 inr = ref.dirid; in get_parent_inode()
|
| H A D | subvolume.c | 85 struct btrfs_root_ref *ref; in list_subvols() local 100 ref = btrfs_path_item_ptr(&path, struct btrfs_root_ref); in list_subvols() 101 btrfs_root_ref_to_cpu(ref); in list_subvols() 108 printf("%.*s\n", (int) ref->name_len, in list_subvols() 109 (const char *) (ref + 1)); in list_subvols()
|
| /openbmc/bmcweb/test/http/ |
| H A D | utility_test.cpp | 131 EXPECT_TRUE(readUrlSegments(*parsed, "redfish", "v1", std::ref(out1))); in TEST() 135 EXPECT_TRUE(readUrlSegments(*parsed, std::ref(out1), std::ref(out2), in TEST() 136 std::ref(out3))); in TEST() 142 EXPECT_TRUE(readUrlSegments(*parsed, "redfish", std::ref(out1), "Chassis")); in TEST() 146 EXPECT_TRUE(readUrlSegments(*parsed, std::ref(out1), "v1", std::ref(out2))); in TEST() 155 readUrlSegments(*parsed, std::ref(out1), "v2", std::ref(out2))); in TEST() 157 EXPECT_FALSE(readUrlSegments(*parsed, "redfish", std::ref(out1), in TEST() 158 std::ref(out2), std::ref(out3))); in TEST() 180 readUrlSegments(url, "redfish", "v1", "Managers", std::ref(managerId), in TEST() 181 "Oem", "OpenBmc", "Fan", "FanZones", std::ref(input))); in TEST()
|
| /openbmc/qemu/block/ |
| H A D | qed-l2-cache.c | 95 entry->ref++; in qed_alloc_l2_cache_entry() 114 entry->ref--; in qed_unref_l2_cache_entry() 115 trace_qed_unref_l2_cache_entry(entry, entry->ref); in qed_unref_l2_cache_entry() 116 if (entry->ref == 0) { in qed_unref_l2_cache_entry() 137 trace_qed_find_l2_cache_entry(l2_cache, entry, offset, entry->ref); in qed_find_l2_cache_entry() 138 entry->ref++; in qed_find_l2_cache_entry() 178 if (entry->ref > 1) { in qed_commit_l2_cache_entry()
|
| /openbmc/openbmc/poky/meta/recipes-extended/bzip2/bzip2/ |
| H A D | Makefile.am | 31 ./bzip2 -1 < sample1.ref > sample1.rb2 32 ./bzip2 -2 < sample2.ref > sample2.rb2 33 ./bzip2 -3 < sample3.ref > sample3.rb2 43 @if cmp sample1.tst sample1.ref; then echo "PASS: sample1 decompress";\ 45 @if cmp sample2.tst sample2.ref; then echo "PASS: sample2 decompress";\ 47 @if cmp sample3.tst sample3.ref; then echo "PASS: sample3 decompress";\ 54 cp $(srcdir)/sample1.ref $(DESTDIR)/ 55 cp $(srcdir)/sample2.ref $(DESTDIR)/ 56 cp $(srcdir)/sample3.ref $(DESTDIR)/
|
| /openbmc/openbmc/poky/documentation/migration-guides/ |
| H A D | release-notes-4.1.1.rst | 131 - ref-manual/faq.rst: update references to products built with OE / Yocto Project 132 - ref-manual/variables.rst: clarify sentence 133 - ref-manual: add a note to ssh-server-dropbear feature 134 - ref-manual: add :term:`CVE_CHECK_SHOW_WARNINGS` 135 - ref-manual: add :term:`CVE_DB_UPDATE_INTERVAL` 136 - ref-manual: add :term:`DEV_PKG_DEPENDENCY` 137 - ref-manual: add :term:`DISABLE_STATIC` 138 - ref-manual: add :term:`FIT_PAD_ALG` 139 - ref-manual: add :term:`KERNEL_DEPLOY_DEPEND` 140 - ref-manual: add missing features [all …]
|
| H A D | migration-5.1.rst | 27 should be changed to :term:`S`. These are commonly in :ref:`ref-tasks-compile`, 28 :ref:`ref-tasks-compile`, :ref:`ref-tasks-install` and :term:`LIC_FILES_CHKSUM`. 35 These are commonly in :ref:`ref-tasks-compile` and :ref:`ref-tasks-install` 46 Files from :ref:`ref-tasks-unpack` now unpack to ``WORKDIR/sources-unpack/`` 50 subdirectory exists in ``sources-unpack`` after :ref:`ref-tasks-unpack` runs, 56 :ref:`ref-tasks-unpack` task output from :term:`WORKDIR`. 80 out the box, older kernels are not supported. See :ref:`4.3 migration notes 100 See :ref:`all supported distributions <system-requirements-supported-distros>`. 107 - After dropping the custom :ref:`ref-tasks-unpack` from the 108 :ref:`ref-classes-go` class, go recipes should now add [all …]
|
| H A D | migration-2.1.rst | 69 :ref:`ref-classes-autotools`, ``module``) and recipes to override this default in order 103 For recipes inheriting the :ref:`ref-classes-autotools` 110 bypasses the standard :ref:`ref-tasks-configure` task 111 from the :ref:`ref-classes-autotools` class and the software the recipe is building 113 of determining the correct size of ``off_t`` during :ref:`ref-tasks-configure`. 116 the default implementation from the :ref:`ref-classes-autotools` class to work such 118 and to remove the overridden :ref:`ref-tasks-configure` task such that the default 126 Previously, for image recipes the :ref:`ref-tasks-rootfs` 129 separate :ref:`ref-tasks-image` tasks for clarity both in 133 you have made customizations that directly modify the :ref:`ref-tasks-rootfs` task [all …]
|
| H A D | migration-1.8.rst | 78 functions such as :ref:`ref-tasks-configure` and :ref:`ref-tasks-install`. For 79 kernel recipes that do not inherit from :ref:`ref-classes-kernel-yocto` or 87 :ref:`module <ref-classes-module>` classes might need to add explicit 88 dependencies on the :ref:`ref-tasks-shared_workdir` kernel task, for example:: 125 Changes have been made to the :ref:`ref-classes-base`, 126 :ref:`ref-classes-autotools`, and :ref:`ref-classes-cmake` classes to clean out 127 generated files when the :ref:`ref-tasks-configure` task needs to be 131 :ref:`ref-tasks-configure` task if a ``Makefile`` exists. Some software packages 158 exists at the time the :ref:`ref-tasks-unpack` task
|
| H A D | release-notes-5.1.rst | 23 - :term:`UNPACKDIR`: allow change of the :ref:`ref-tasks-unpack` task 78 - :ref:`ref-classes-nativesdk` now have :ref:`ref-tasks-package_qa` run when 79 calling :ref:`ref-tasks-populate_sdk`. 84 - The :ref:`ref-classes-toolchain-scripts` class now exports the target 99 - Running tests on target with :ref:`ref-classes-testimage` can now be done 102 - Artifact collection when using the :ref:`ref-classes-testimage` class is 181 - The :ref:`ref-classes-prserv` class now uses a shared sqlite3 database to 217 - Remove support for ``DIRFILES`` of :ref:`ref-classes-package_rpm` as it is 238 - :ref:`ref-classes-cve-check` changes: 240 - The class :ref:`ref-classes-cve-check` now uses a local copy of the NVD [all …]
|
| H A D | migration-4.0.rst | 98 This is allowed by default from :ref:`ref-tasks-fetch` but not from any of our other standard 99 tasks. Recipes shouldn't be accessing the network outside of :ref:`ref-tasks-fetch` as it 122 function has been removed from the :ref:`ref-classes-license` class as 146 :ref:`ref-classes-python_flit_core`, :ref:`ref-classes-python_setuptools_build_meta` 147 and :ref:`ref-classes-python_poetry_core`. 149 - The :ref:`ref-classes-setuptools3` class :ref:`ref-tasks-install` task now 153 entry points, then :ref:`ref-classes-setuptools3_legacy` should 175 :ref:`ref-classes-base` class. If you have references in your configuration to 210 :ref:`bitbake-user-manual/bitbake-user-manual-metadata:appending and prepending (override style syn… 211 and :ref:`bitbake-user-manual/bitbake-user-manual-metadata:removal (override style syntax)`. [all …]
|
| H A D | migration-general.rst | 79 The :ref:`ref-classes-buildhistory` class can be used 84 #. Enable :ref:`ref-classes-buildhistory` before the migration 88 #. Capture the :ref:`ref-classes-buildhistory` output (as 93 deleting the :ref:`ref-classes-buildhistory` output 96 #. Set a tag in the :ref:`ref-classes-buildhistory` output (which is a git repository) before 105 :ref:`ref-classes-buildhistory` output using ``git diff`` or ``buildhistory-diff``. 107 For more information on using :ref:`ref-classes-buildhistory`, see 108 :ref:`dev-manual/build-quality:maintaining build output quality`.
|
| H A D | migration-1.7.rst | 30 The minimum :ref:`overview-manual/development-environment:git` 36 ":ref:`ref-manual/system-requirements:required git, tar, python, make and gcc versions`" 44 The following :ref:`ref-classes-autotools` class changes occurred: 47 :ref:`ref-classes-autotools` class has been changed to use a directory for 57 the :ref:`autotools-brokensep <ref-classes-autotools>` class instead 58 of the :ref:`ref-classes-autotools` or ``autotools_stage`` classes. 159 see the ":doc:`/ref-manual/qa-checks`" chapter. 162 :ref:`ref-tasks-package_qa` task rather than being 163 part of the :ref:`ref-tasks-package` task. This allows 167 will need to disable the :ref:`ref-tasks-package_qa` task as well. [all …]
|
| H A D | migration-3.2.rst | 65 ``make install`` in :ref:`ref-tasks-install` and since ``${B}`` is listed as not to be tracked, 168 - :ref:`already-stripped <qa-check-already-stripped>` 169 - :ref:`compile-host-path <qa-check-compile-host-path>` 170 - :ref:`installed-vs-shipped <qa-check-installed-vs-shipped>` 171 - :ref:`ldflags <qa-check-ldflags>` 172 - :ref:`pn-overrides <qa-check-pn-overrides>` 173 - :ref:`rpaths <qa-check-rpaths>` 174 - :ref:`staticdev <qa-check-staticdev>` 175 - :ref:`unknown-configure-option <qa-check-unknown-configure-option>` 176 - :ref:`useless-rpaths <qa-check-useless-rpaths>` [all …]
|
| /openbmc/openbmc/poky/scripts/ |
| H A D | b4-wrapper-poky.py | 53 ref = None variable 78 ref = re_ref.match(line) variable 79 if ref: 82 if not ref: 86 ref = ref.group(1) variable 184 if subject and ref and series_check.exists():
|
| /openbmc/openbmc/poky/documentation/dev-manual/ |
| H A D | quilt.rst | 15 recipe or have :ref:`ref-classes-rm-work` enabled, the 16 :ref:`devtool workflow <sdk-manual/extensible:using \`\`devtool\`\` in your sdk workflow>` 25 ":ref:`dev-manual/temporary-source-code:finding temporary source code`" section to 49 easiest way to test your changes is by calling the :ref:`ref-tasks-compile` 61 once you run the :ref:`ref-tasks-clean` or :ref:`ref-tasks-cleanall` 64 you use the :ref:`ref-classes-rm-work` feature as described in 65 the ":ref:`dev-manual/disk-space:conserving disk space during builds`"
|
| /openbmc/qemu/docs/devel/ |
| H A D | index.rst | 17 :ref:`development_process` and how the community interacts. Please pay 18 particular attention to the :ref:`coding-style` and 19 :ref:`submitting-a-patch` sections to avoid common pitfalls. 22 through the :ref:`qom` documentation to understand how QEMU's object 26 want to read our :ref:`tcg` documentation, especially the overview of 27 the :ref:`tcg_internals`.
|
| /openbmc/libcper/specification/document/ |
| H A D | cper-json-specification.tex | 61 header & object & A CPER header structure as defined in Section \ref{section:headerstructure}. \\ 63 sectionDescriptors & array & An array of section descriptor objects as defined in Section \ref{sect… 65 sections & array & An array of section objects as defined in Chapter \ref{chapter:sectionchapter}. … 75 sectionDescriptor & object & A section descriptor object as defined in Section \ref{section:section… 77 section & object & A section object as defined in Chapter \ref{chapter:sectionchapter}.\\ 88 revision & object & A CPER revision object structure as defined in Subsection \ref{subsection:revis… 92 severity & object & An error severity structure as described in \ref{subsection:headererrorseverity… 94 validationBits & object & A CPER header validation bitfield as described in Subsection \ref{subsect… 108 notificationType & object & A CPER notification type structure as described in Subsection \ref{subs… 112 flags & object & A CPER header flags structure, as defined in Subsection \ref{subsection:headerflag… [all …]
|
| /openbmc/openbmc/poky/documentation/overview-manual/ |
| H A D | concepts.rst | 37 ":ref:`dev-manual/layers:understanding and creating layers`" 43 ":ref:`overview-manual/concepts:openembedded build system concepts`" 75 ":ref:`bitbake-user-manual/bitbake-user-manual-execution:preferences`" section 108 between recipes files. An example is the :ref:`ref-classes-autotools` class, 111 The ":ref:`ref-manual/classes:Classes`" chapter in the Yocto Project 130 target. :ref:`overview-manual/yp-intro:the yocto project layer model` 149 ":ref:`dev-manual/layers:understanding and creating layers`" 205 Configuration" box of the :ref:`general workflow 230 :ref:`structure-core-script`, which is the 243 :ref:`structure-core-script` script in the context of separate [all …]
|
| /openbmc/u-boot/fs/ubifs/ |
| H A D | log.c | 171 struct ubifs_ref_node *ref; in ubifs_add_bud_to_log() local 176 ref = kzalloc(c->ref_node_alsz, GFP_NOFS); in ubifs_add_bud_to_log() 177 if (!ref) { in ubifs_add_bud_to_log() 231 ref->ch.node_type = UBIFS_REF_NODE; in ubifs_add_bud_to_log() 232 ref->lnum = cpu_to_le32(bud->lnum); in ubifs_add_bud_to_log() 233 ref->offs = cpu_to_le32(bud->start); in ubifs_add_bud_to_log() 234 ref->jhead = cpu_to_le32(jhead); in ubifs_add_bud_to_log() 264 err = ubifs_write_node(c, ref, UBIFS_REF_NODE_SZ, c->lhead_lnum, in ubifs_add_bud_to_log() 274 kfree(ref); in ubifs_add_bud_to_log() 279 kfree(ref); in ubifs_add_bud_to_log() [all …]
|