| /openbmc/u-boot/drivers/mtd/ |
| H A D | mtdpart.c | 66 bool mtd_partitions_used(struct mtd_info *master) in mtd_partitions_used() argument 70 list_for_each_entry(slave, &master->partitions, node) { in mtd_partitions_used() 532 static int do_del_mtd_partitions(struct mtd_info *master) in do_del_mtd_partitions() argument 537 list_for_each_entry_safe(slave, next, &master->partitions, node) { in do_del_mtd_partitions() 557 int del_mtd_partitions(struct mtd_info *master) in del_mtd_partitions() argument 561 debug("Deleting MTD partitions on \"%s\":\n", master->name); in del_mtd_partitions() 564 ret = do_del_mtd_partitions(master); in del_mtd_partitions() 570 static struct mtd_info *allocate_partition(struct mtd_info *master, in allocate_partition() argument 582 master->name); in allocate_partition() 589 slave->type = master->type; in allocate_partition() [all …]
|
| /openbmc/docs/ |
| H A D | features.md | 41 https://github.com/openbmc/openbmc-test-automation/blob/master/README.md 42 [bmcweb]: https://github.com/openbmc/bmcweb/blob/master/README.md 44 https://github.com/openbmc/bmcweb/blob/master/DEVELOPING.md#redfish 46 …https://github.com/openbmc/phosphor-dbus-interfaces/tree/master/yaml/xyz/openbmc_project/Certs/REA… 48 …https://github.com/openbmc/phosphor-dbus-interfaces/blob/master/yaml/xyz/openbmc_project/Chassis/R… 50 https://github.com/openbmc/phosphor-dbus-interfaces/blob/master/README.md 52 https://github.com/openbmc/docs/blob/master/architecture/object-mapper.md 54 https://github.com/openbmc/entity-manager/blob/master/README.md 56 …https://github.com/openbmc/phosphor-dbus-interfaces/tree/master/yaml/xyz/openbmc_project/Common/Fa… 58 https://github.com/openbmc/docs/blob/master/architecture/code-update/code-update.md [all …]
|
| /openbmc/qemu/docs/devel/ |
| H A D | codebase.rst | 15 `MAINTAINERS <https://gitlab.com/qemu-project/qemu/-/blob/master/MAINTAINERS>`_ 48 * `accel <https://gitlab.com/qemu-project/qemu/-/tree/master/accel>`_: 53 `target <https://gitlab.com/qemu-project/qemu/-/tree/master/target>`_. 54 * `audio <https://gitlab.com/qemu-project/qemu/-/tree/master/audio>`_: 56 * `authz <https://gitlab.com/qemu-project/qemu/-/tree/master/authz>`_: 58 * `backends <https://gitlab.com/qemu-project/qemu/-/tree/master/backends>`_: 61 * `block <https://gitlab.com/qemu-project/qemu/-/tree/master/block>`_: 63 * `bsd-user <https://gitlab.com/qemu-project/qemu/-/tree/master/bsd-user>`_: 67 * `chardev <https://gitlab.com/qemu-project/qemu/-/tree/master/chardev>`_: 69 * `common-user <https://gitlab.com/qemu-project/qemu/-/tree/master/common-user>`_: [all …]
|
| /openbmc/openpower-proc-control/procedures/p9/ |
| H A D | start_host.cpp | 41 const auto& master = *(targets.begin()); in startHost() local 47 writeReg(master, P9_LL_MODE_REG, 0x00000001); in startHost() 58 writeReg(master, P9_FSI_A_SI1S, 0x20000000); in startHost() 61 writeReg(master, P9_FSI2PIB_TRUE_MASK, 0x60000000); in startHost() 64 writeReg(master, P9_FSI2PIB_INTERRUPT, 0xFFFFFFFF); in startHost() 84 writeRegWithMask(master, P9_SBE_CTRL_STATUS, sbeSide, 0x00004000); in startHost() 87 writeRegWithMask(master, P9_CBS_CS, 0x00000000, 0x80000000); in startHost() 90 writeRegWithMask(master, P9_CBS_CS, 0x80000000, 0x80000000); in startHost()
|
| H A D | start_host_mpreboot.cpp | 47 const auto& master = *(targets.begin()); in startHostMpReboot() local 53 writeReg(master, P9_LL_MODE_REG, 0x00000001); in startHostMpReboot() 64 writeReg(master, P9_FSI_A_SI1S, 0x20000000); in startHostMpReboot() 67 writeReg(master, P9_FSI2PIB_TRUE_MASK, 0x60000000); in startHostMpReboot() 70 writeReg(master, P9_FSI2PIB_INTERRUPT, 0xFFFFFFFF); in startHostMpReboot() 90 writeRegWithMask(master, P9_SBE_CTRL_STATUS, sbeSide, 0x00004000); in startHostMpReboot()
|
| /openbmc/hiomapd/ |
| H A D | backend.h | 141 static inline int backend_init(struct backend *master, struct backend *with, in backend_init() argument 146 assert(master); in backend_init() 149 with->flash_size = master->flash_size; in backend_init() 150 *master = *with; in backend_init() 154 master->erase_size_shift = 33; in backend_init() 155 master->block_size_shift = 34; in backend_init() 158 if (!(master && master->ops && master->ops->init)) in backend_init() 161 rc = master->ops->init(master, data); in backend_init() 165 assert(master->erase_size_shift < 32); in backend_init() 166 assert(master->block_size_shift < 32); in backend_init() [all …]
|
| /openbmc/qemu/io/ |
| H A D | channel-tls.c | 37 ret = qio_channel_write(tioc->master, buf, len, errp); in qio_channel_tls_write_handler() 54 ret = qio_channel_read(tioc->master, buf, len, errp); in qio_channel_tls_read_handler() 65 qio_channel_tls_new_server(QIOChannel *master, in qio_channel_tls_new_server() argument 76 tioc->master = master; in qio_channel_tls_new_server() 77 ioc->follow_coroutine_ctx = master->follow_coroutine_ctx; in qio_channel_tls_new_server() 78 if (qio_channel_has_feature(master, QIO_CHANNEL_FEATURE_SHUTDOWN)) { in qio_channel_tls_new_server() 81 object_ref(OBJECT(master)); in qio_channel_tls_new_server() 99 trace_qio_channel_tls_new_server(tioc, master, creds, aclname); in qio_channel_tls_new_server() 108 qio_channel_tls_new_client(QIOChannel *master, in qio_channel_tls_new_client() argument 119 tioc->master = master; in qio_channel_tls_new_client() [all …]
|
| /openbmc/openbmc/poky/meta/recipes-core/base-passwd/base-passwd/ |
| H A D | 0005-Add-kvm-group.patch | 9 group.master | 1 + 12 diff --git a/group.master b/group.master 14 --- a/group.master 15 +++ b/group.master
|
| H A D | 0004-Add-an-input-group-for-the-dev-input-devices.patch | 9 group.master | 1 + 12 diff --git a/group.master b/group.master 14 --- a/group.master 15 +++ b/group.master
|
| H A D | 0007-Add-wheel-group.patch | 15 group.master | 1 + 18 diff --git a/group.master b/group.master 20 --- a/group.master 21 +++ b/group.master
|
| H A D | 0003-Remove-for-root-since-we-do-not-have-an-etc-shadow.patch | 9 passwd.master | 2 +- 12 diff --git a/passwd.master b/passwd.master 14 --- a/passwd.master 15 +++ b/passwd.master
|
| H A D | 0001-Add-a-shutdown-group.patch | 13 group.master | 1 + 16 diff --git a/group.master b/group.master 18 --- a/group.master 19 +++ b/group.master
|
| H A D | 0002-Use-bin-sh-instead-of-bin-bash-for-the-root-user.patch | 11 passwd.master | 2 +- 14 diff --git a/passwd.master b/passwd.master 16 --- a/passwd.master 17 +++ b/passwd.master
|
| H A D | 0001-base-passwd-Add-the-sgx-group.patch | 16 group.master | 1 + 19 diff --git a/group.master b/group.master 21 --- a/group.master 22 +++ b/group.master
|
| /openbmc/qemu/ |
| H A D | .gitpublish | 7 base = master 12 base = master 18 base = master 24 base = master 30 base = master 36 base = master 42 base = master 48 base = master
|
| /openbmc/openbmc/poky/meta/recipes-core/base-passwd/ |
| H A D | base-passwd_3.6.7.bb | 1 SUMMARY = "Base system master password/group files" 2 …master copies of the user database files (/etc/passwd and /etc/group). The update-passwd tool is … 44 install -o root -g root -p -m 644 ${S}/passwd.master ${D}${datadir}/base-passwd/ 45 sed -i 's#:/root:#:${ROOT_HOME}:#' ${D}${datadir}/base-passwd/passwd.master 46 sed -i 's#/usr/sbin/nologin#${NOLOGIN}#' ${D}${datadir}/base-passwd/passwd.master 47 install -o root -g root -p -m 644 ${S}/group.master ${D}${datadir}/base-passwd/ 59 # Install passwd.master and group.master to sysconfdir 62 install -p -m 644 ${STAGING_DIR_TARGET}${datadir}/base-passwd/\$i.master \ 86 # We have to do this here as prior to this, passwd/group.master 91 f = open(d.expand("${STAGING_DATADIR}/base-passwd/passwd.master"), 'r') [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-dbs/mongodb/mongodb/ |
| H A D | 0001-asio-Dont-use-experimental-with-clang.patch | 11 src/third_party/asio-master/asio/include/asio/detail/string_view.hpp | 4 ++-- 14 diff --git a/src/third_party/asio-master/asio/include/asio/detail/string_view.hpp b/src/third_party… 16 --- a/src/third_party/asio-master/asio/include/asio/detail/string_view.hpp 17 +++ b/src/third_party/asio-master/asio/include/asio/detail/string_view.hpp
|
| /openbmc/qemu/tests/unit/ |
| H A D | test-crypto-secret.c | 393 Object *master = object_new_with_props( in test_secret_crypt_raw() local 419 object_unparent(master); in test_secret_crypt_raw() 426 Object *master = object_new_with_props( in test_secret_crypt_base64() local 451 object_unparent(master); in test_secret_crypt_base64() 458 Object *master = object_new_with_props( in test_secret_crypt_short_key() local 478 object_unparent(master); in test_secret_crypt_short_key() 484 Object *master = object_new_with_props( in test_secret_crypt_short_iv() local 504 object_unparent(master); in test_secret_crypt_short_iv() 510 Object *master = object_new_with_props( in test_secret_crypt_missing_iv() local 529 object_unparent(master); in test_secret_crypt_missing_iv() [all …]
|
| /openbmc/qemu/hw/intc/ |
| H A D | i8259_common.c | 92 ISADevice *i8259_init_chip(const char *name, ISABus *bus, bool master) in i8259_init_chip() argument 99 qdev_prop_set_uint32(dev, "iobase", master ? 0x20 : 0xa0); in i8259_init_chip() 100 qdev_prop_set_uint32(dev, "elcr_addr", master ? 0x4d0 : 0x4d1); in i8259_init_chip() 101 qdev_prop_set_uint8(dev, "elcr_mask", master ? 0xf8 : 0xde); in i8259_init_chip() 102 qdev_prop_set_bit(dev, "master", master); in i8259_init_chip() 123 if (s->master) { in pic_get_statistics() 141 s->master ? 0 : 1, s->irr, s->imr, s->isr, in pic_print_info() 200 DEFINE_PROP_BIT("master", PICCommonState, master, 0, false),
|
| /openbmc/openbmc/meta-openembedded/meta-filesystems/recipes-filesystems/zfs/zfs/ |
| H A D | aaf28a4630af60496c9d33db1d06a7d7d8983422.patch | 8 /mnt/b/yoe/master/build/tmp/work/imx8qm_var_som-yoe-linux/zfs/2.1.9-r0/build/../zfs-2.1.9/module/zf… 11 /mnt/b/yoe/master/build/tmp/work/imx8qm_var_som-yoe-linux/zfs/2.1.9-r0/build/../zfs-2.1.9/module/zf… 14 /mnt/b/yoe/master/build/tmp/work/imx8qm_var_som-yoe-linux/zfs/2.1.9-r0/build/../zfs-2.1.9/module/zf… 17 /mnt/b/yoe/master/build/tmp/work/imx8qm_var_som-yoe-linux/zfs/2.1.9-r0/build/../zfs-2.1.9/module/zf… 20 /mnt/b/yoe/master/build/tmp/work/imx8qm_var_som-yoe-linux/zfs/2.1.9-r0/build/../zfs-2.1.9/module/zf… 23 /mnt/b/yoe/master/build/tmp/work/imx8qm_var_som-yoe-linux/zfs/2.1.9-r0/build/../zfs-2.1.9/module/zf… 26 /mnt/b/yoe/master/build/tmp/work/imx8qm_var_som-yoe-linux/zfs/2.1.9-r0/build/../zfs-2.1.9/module/zf… 29 /mnt/b/yoe/master/build/tmp/work/imx8qm_var_som-yoe-linux/zfs/2.1.9-r0/build/../zfs-2.1.9/module/zf… 32 /mnt/b/yoe/master/build/tmp/work/imx8qm_var_som-yoe-linux/zfs/2.1.9-r0/build/../zfs-2.1.9/module/zf…
|
| /openbmc/openbmc/poky/scripts/ |
| H A D | sstate-sysroot-cruft.sh | 156 sort | sed "s#^${SYSROOTS}##g" > ${OUTPUT}/master.list.all.txt 157 sort -u ${OUTPUT}/master.list.all.txt > ${OUTPUT}/master.list.txt # -u because some directories are… 161 diff ${OUTPUT}/master.list.all.txt ${OUTPUT}/master.list.txt > ${OUTPUT}/duplicates.txt 162 diff ${OUTPUT}/master.list.txt ${OUTPUT}/sysroot.list.txt > ${OUTPUT}/diff.all.txt
|
| /openbmc/u-boot/doc/device-tree-bindings/spi/ |
| H A D | spi-cadence.txt | 21 - cdns,tshsl-ns : Added delay in master reference clocks (ref_clk) for 22 the length that the master mode chip select outputs 24 - cdns,tsd2d-ns : Delay in master reference clocks (ref_clk) between one 27 - cdns,tchsh-ns : Delay in master reference clocks between last bit of 30 - cdns,tslch-ns : Delay in master reference clocks between setting
|
| /openbmc/qemu/include/io/ |
| H A D | channel-tls.h | 48 QIOChannel *master; member 91 qio_channel_tls_new_server(QIOChannel *master, 121 qio_channel_tls_new_client(QIOChannel *master,
|
| /openbmc/u-boot/doc/ |
| H A D | README.srio-pcie-boot-corenet | 53 b) Program slave's U-Boot image, UCode, and ENV parameters into master's 56 environment for master. 61 d) Restart up master and it will boot up normally from its NorFlash. 65 image stored in master's NorFlash. 67 and ENV stored in master's NorFlash. 71 all the above master's steps, and wait to be released by master. In the 78 from master. 90 For master, U-Boot image should be generated normally. 92 For example, master U-Boot image used on P4080DS should be compiled with 106 UCode, ENV stored in master's NorFlash, and any other configurations [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/autofs/autofs/ |
| H A D | 0008-include-libgen.h-for-basename.patch | 17 daemon/master.c | 1 + 33 diff --git a/daemon/master.c b/daemon/master.c 35 --- a/daemon/master.c 36 +++ b/daemon/master.c
|