| /openbmc/openbmc/ |
| H A D | setup | 55 vendor=${cfg%%/*} 56 vendor=${vendor##meta-} 57 vendor=${vendor%%-openbmc} 88 echo "${vendor}/${name}" 112 vendor=${m%%/*} 115 if [[ ! "$vendors" =~ -$vendor- ]]; then 116 vendors="$vendors -$vendor-" 117 echo "* $vendor"
|
| /openbmc/webui-vue/src/env/locales/ |
| H A D | README.md | 3 This directory contains environment/vendor-specific translation bundles that are 4 merged on top of the base, vendor-neutral locales in `src/locales/`. 10 <vendor>/ 15 <vendor-variant>/ 16 en-US.json # optional, only when variant overrides vendor root 24 - Shared vendor folder: `src/env/locales/nvidia/` 33 Variant keys overwrite vendor root keys on conflict. 37 - Keep `src/locales/` vendor‑neutral. Put vendor‑specific strings here. 38 - Prefer the vendor root folder when multiple projects share strings to avoid 40 - Only add a variant folder if it truly needs to override vendor root strings. [all …]
|
| /openbmc/u-boot/lib/efi_loader/ |
| H A D | efi_variable.c | 67 const efi_guid_t *vendor) in efi_to_native() argument 78 pos += sprintf(pos, "efi_%pUl_", vendor); in efi_to_native() 164 const efi_guid_t *vendor, u32 *attributes, in efi_get_variable() argument 173 EFI_ENTRY("\"%ls\" %pUl %p %p %p", variable_name, vendor, attributes, in efi_get_variable() 176 if (!variable_name || !vendor || !data_size) in efi_get_variable() 179 ret = efi_to_native(&native_name, variable_name, vendor); in efi_get_variable() 265 const efi_guid_t *vendor, in parse_uboot_variable() argument 300 uuid_str_to_bin(guid, (unsigned char *)vendor, UUID_STR_FORMAT_GUID); in parse_uboot_variable() 325 const efi_guid_t *vendor) in efi_get_next_variable_name() argument 335 EFI_ENTRY("%p \"%ls\" %pUl", variable_name_size, variable_name, vendor); in efi_get_next_variable_name() [all …]
|
| H A D | efi_root_node.c | 15 struct efi_device_path_vendor vendor; member 44 dp->vendor.dp.type = DEVICE_PATH_TYPE_HARDWARE_DEVICE; in efi_root_node_register() 45 dp->vendor.dp.sub_type = DEVICE_PATH_SUB_TYPE_VENDOR; in efi_root_node_register() 46 dp->vendor.dp.length = sizeof(struct efi_device_path_vendor); in efi_root_node_register() 47 dp->vendor.guid = efi_u_boot_guid; in efi_root_node_register()
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/minio/ |
| H A D | src_uri.inc | 4 …bbletea;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/c… 9 …name=pb;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/c… 14 …umanize;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/d… 19 …e=color;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/f… 24 …=go-ole;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/g… 29 …go-json;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/g… 34 …e=shlex;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/g… 39 …me=uuid;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/g… 44 …usetrap;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/i… 49 …name=go;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/github.com/j… [all …]
|
| /openbmc/qemu/target/i386/ |
| H A D | host-cpu.c | 107 void host_cpu_vendor_fms(char *vendor, int *family, int *model, int *stepping) in host_cpu_vendor_fms() argument 112 x86_cpu_vendor_words2str(vendor, ebx, edx, ecx); in host_cpu_vendor_fms() 134 char vendor[CPUID_VENDOR_SZ + 1] = { 0 }; in host_cpu_instance_init() local 143 host_cpu_vendor_fms(vendor, &family, &model, &stepping); in host_cpu_instance_init() 144 object_property_set_str(OBJECT(cpu), "vendor", vendor, &error_abort); in host_cpu_instance_init() 165 char vendor[CPUID_VENDOR_SZ + 1]; in is_host_cpu_intel() local 167 host_cpu_vendor_fms(vendor, NULL, NULL, NULL); in is_host_cpu_intel() 169 return g_str_equal(vendor, CPUID_VENDOR_INTEL); in is_host_cpu_intel()
|
| /openbmc/u-boot/test/dm/ |
| H A D | pci.c | 29 u16 vendor, device; in dm_test_pci_busdev() local 35 vendor = 0; in dm_test_pci_busdev() 36 ut_assertok(dm_pci_read_config16(swap, PCI_VENDOR_ID, &vendor)); in dm_test_pci_busdev() 37 ut_asserteq(SANDBOX_PCI_VENDOR_ID, vendor); in dm_test_pci_busdev() 47 vendor = 0; in dm_test_pci_busdev() 48 ut_assertok(dm_pci_read_config16(swap, PCI_VENDOR_ID, &vendor)); in dm_test_pci_busdev() 49 ut_asserteq(SANDBOX_PCI_VENDOR_ID, vendor); in dm_test_pci_busdev() 139 u16 vendor, device; in dm_test_pci_mixed() local 147 vendor = 0; in dm_test_pci_mixed() 148 ut_assertok(dm_pci_read_config16(swap, PCI_VENDOR_ID, &vendor)); in dm_test_pci_mixed() [all …]
|
| /openbmc/u-boot/drivers/pci/ |
| H A D | pci_sandbox.c | 19 u16 vendor; member 56 u16 vendor, device; in sandbox_pci_read_config() local 60 vendor = priv->vendev[devfn].vendor; in sandbox_pci_read_config() 62 if (offset == PCI_VENDOR_ID && vendor) in sandbox_pci_read_config() 63 *valuep = vendor; in sandbox_pci_read_config() 104 priv->vendev[devfn].vendor = fdt32_to_cpu(cell[2]); in sandbox_pci_probe()
|
| H A D | pci_common.c | 271 pci_dev_t pci_find_device(unsigned int vendor, unsigned int device, int index) in pci_find_device() argument 275 ids[0].vendor = vendor; in pci_find_device() 285 u16 vendor, device; in pci_hose_find_devices() local 305 pci_read_config_word(bdf, PCI_VENDOR_ID, &vendor); in pci_hose_find_devices() 308 for (i = 0; ids[i].vendor != 0; i++) { in pci_hose_find_devices() 309 if (vendor == ids[i].vendor && in pci_hose_find_devices()
|
| H A D | pci.c | 284 unsigned int vendor, in pci_find_config() argument 292 for (table = hose->config_table; table && table->vendor; table++) { in pci_find_config() 293 if ((table->vendor == PCI_ANY_ID || table->vendor == vendor) && in pci_find_config() 338 unsigned short vendor, device, class; in pci_hose_scan_bus() local 363 pci_hose_read_config_word(hose, dev, PCI_VENDOR_ID, &vendor); in pci_hose_scan_bus() 365 if (vendor == 0xffff || vendor == 0x0000) in pci_hose_scan_bus() 378 board_pci_fixup_dev(hose, dev, vendor, device, class); in pci_hose_scan_bus() 390 vendor, device, pci_class_str(class >> 8)); in pci_hose_scan_bus() 398 cfg = pci_find_config(hose, class, vendor, device, in pci_hose_scan_bus()
|
| /openbmc/entity-manager/configurations/ |
| H A D | VENDORS.md | 4 organized into vendor-specific subdirectories. This begs the question "what is a 5 vendor"? 10 clearly "the vendor" of said component. Where the situation is less clear is 14 for identifying the vendor: 17 sale of a component is always the vendor. "Sale" does not require retail but 24 vendor for the assembled product and any sub-components which are exclusively 32 vendor. 37 claims to be the vendor of a device, they probably are, unless there is strong
|
| /openbmc/webui-vue/docs/guide/guidelines/ |
| H A D | internationalization.md | 81 To keep the base translation files vendor-neutral, vendor-specific strings live 84 - Place shared vendor strings in the vendor root folder (e.g., 85 `src/env/locales/vendor/`) 87 `src/env/locales/vendor-variant/`) 90 2. Vendor root overlays (e.g., `src/env/locales/vendor/`) 91 3. Variant overlays (e.g., `src/env/locales/vendor-variant/`) 92 - Variant keys overwrite vendor root keys on conflict 99 - If multiple vendor projects share strings, prefer the vendor root folder so 102 Example: moving vendor-only dump type labels
|
| /openbmc/u-boot/arch/x86/cpu/ |
| H A D | pci.c | 61 u16 vendor; in pci_assign_irqs() local 66 pci_read_config16(bdf, PCI_VENDOR_ID, &vendor); in pci_assign_irqs() 67 if (vendor == 0xffff || vendor == 0x0000) in pci_assign_irqs()
|
| H A D | cpu.c | 116 const char *cpu_vendor_name(int vendor) in cpu_vendor_name() argument 120 if (vendor < ARRAY_SIZE(x86_vendor_name) && in cpu_vendor_name() 121 x86_vendor_name[vendor]) in cpu_vendor_name() 122 name = x86_vendor_name[vendor]; in cpu_vendor_name()
|
| H A D | cpu_x86.c | 31 const char *vendor = cpu_vendor_name(gd->arch.x86_vendor); in cpu_x86_get_vendor() local 33 if (size < (strlen(vendor) + 1)) in cpu_x86_get_vendor() 36 strcpy(buf, vendor); in cpu_x86_get_vendor()
|
| /openbmc/openbmc/poky/meta/recipes-devtools/rust/files/ |
| H A D | repro-issue-fix-with-cc-crate-hashmap.patch | 11 diff --git a/vendor/cc-1.2.0/src/command_helpers.rs b/vendor/cc-1.2.0/src/command_helpers.rs 13 --- a/vendor/cc-1.2.0/src/command_helpers.rs 14 +++ b/vendor/cc-1.2.0/src/command_helpers.rs 59 diff --git a/vendor/cc-1.2.0/.cargo-checksum.json b/vendor/cc-1.2.0/.cargo-checksum.json 61 --- a/vendor/cc-1.2.0/.cargo-checksum.json 62 +++ b/vendor/cc-1.2.0/.cargo-checksum.json 67 diff --git a/vendor/cc-1.0.99/src/command_helpers.rs b/vendor/cc-1.0.99/src/command_helpers.rs 69 --- a/vendor/cc-1.0.99/src/command_helpers.rs 70 +++ b/vendor/cc-1.0.99/src/command_helpers.rs 110 diff --git a/vendor/cc-1.1.22/src/command_helpers.rs b/vendor/cc-1.1.22/src/command_helpers.rs [all …]
|
| /openbmc/openbmc/poky/meta/classes/ |
| H A D | go-vendor.bbclass | 5 # Handle Go vendor support for offline builds 13 # downloaded during the fetch-phase and unpacked into the modules 'vendor' 14 # folder. Additionally a manifest file is generated for the 'vendor' folder 22 destsuffix = "git/src/import/vendor.fetch" 46 linkname = os.path.join(source_dir, *['src', go_import, 'vendor']) 61 default_destsuffix = "git/src/import/vendor.fetch" 66 linkname = os.path.join(source_dir, *['src', go_import, 'vendor']) 67 vendor_dir = os.path.join(source_dir, *['src', 'import', 'vendor']) 68 import_dir = os.path.join(source_dir, *['src', 'import', 'vendor.fetch']) 71 # Nothing to do except re-establish link to actual vendor folder [all …]
|
| /openbmc/openbmc/poky/meta/lib/oe/ |
| H A D | cve_check.py | 220 vendor, product = product.split(":", 1) 222 vendor = "*" 224 cpe_id = 'cpe:2.3:*:{}:{}:{}:*:*:*:*:*:*:*'.format(vendor, product, version) 306 vendor = "*" 311 vendor = status_split[2].strip() 325 status_out["vendor"] = vendor 347 vendor = "*" 349 vendor, product = product.split(":", 1) 351 if (vendor == detailed_status["vendor"] or detailed_status["vendor"] == "*") and \
|
| /openbmc/u-boot/drivers/virtio/ |
| H A D | virtio_blk.c | 93 if (uc_priv->vendor >> 16) in virtio_blk_bind() 94 sprintf(desc->vendor, "%s", (char *)&uc_priv->vendor); in virtio_blk_bind() 96 sprintf(desc->vendor, "%04x", uc_priv->vendor); in virtio_blk_bind()
|
| /openbmc/openbmc/poky/meta/recipes-devtools/clang/ |
| H A D | llvm-project-source.inc | 30 # space separated list of additional distro vendor values we want to support e.g. 47 for vendor in vendors.split(): 49 vendor = vendor.lstrip('-') 50 # generate possible multilib vendor names for yoe 52 vendors_to_add.extend([vendor + 'ml' + variant for variant in multilib_variants]) 54 if vendor != "oe": 55 vendors_to_add.append(vendor)
|
| /openbmc/qemu/include/standard-headers/linux/ |
| H A D | virtio_bt.h | 27 uint16_t vendor; member 34 uint16_t vendor; member
|
| /openbmc/docs/ |
| H A D | hw-vendor-repos-policy.md | 25 Both hardware-specific and vendor-specific repositories should meet the 68 A hardware vendor feature is defined as one of the following: 70 1. A function that is specific to the vendor hardware 73 vendor which the BMC must interact with 81 Some hardware vendor features which have no real synergy with OpenBMC, for 87 A vendor-specific feature is defined as one of the following: 89 1. A vendor-specific data format or protocol 92 2. A function that requires a specific hardware vendor feature 94 To add a vendor-specific repository to OpenBMC, it should meet the following 121 for hosting a hardware/vendor specific repository within the openbmc github [all …]
|
| /openbmc/qemu/ui/ |
| H A D | x_keymap.c | 24 const char *vendor = ServerVendor(dpy); in check_for_xwin() local 26 trace_xkeymap_vendor(vendor); in check_for_xwin() 28 if (strstr(vendor, "Cygwin/X")) { in check_for_xwin()
|
| /openbmc/smbios-mdr/src/ |
| H A D | tpm.cpp | 56 for (i = 0; i < vendorIdLength && tpmInfo->vendor[i] != '\0'; i++) in tpmVendor() 58 if (std::isprint(tpmInfo->vendor[i])) in tpmVendor() 60 vendorId[i] = tpmInfo->vendor[i]; in tpmVendor()
|
| /openbmc/qemu/include/hw/misc/ |
| H A D | grlib_ahb_apb_pnp.h | 35 uint8_t vendor, uint16_t device, int slave, 38 uint8_t vendor, uint16_t device, uint8_t version,
|