Home
last modified time | relevance | path

Searched refs:need (Results 1 – 25 of 1463) sorted by relevance

12345678910>>...59

/openbmc/u-boot/drivers/mtd/ubi/
H A Dmisc.c95 int need = ubi->beb_rsvd_level - ubi->beb_rsvd_pebs; in ubi_update_reserved() local
97 if (need <= 0 || ubi->avail_pebs == 0) in ubi_update_reserved()
100 need = min_t(int, need, ubi->avail_pebs); in ubi_update_reserved()
101 ubi->avail_pebs -= need; in ubi_update_reserved()
102 ubi->rsvd_pebs += need; in ubi_update_reserved()
103 ubi->beb_rsvd_pebs += need; in ubi_update_reserved()
104 ubi_msg(ubi, "reserved more %d PEBs for bad PEB handling", need); in ubi_update_reserved()
/openbmc/qemu/target/openrisc/
H A Dmmu.c39 target_ulong addr, int need, bool super) in get_phys_mmu() argument
52 if (need & PAGE_EXEC) { in get_phys_mmu()
83 need, match, valid, right, (need & right) ? "OK" : "FAIL"); in get_phys_mmu()
86 if (likely(need & right)) { in get_phys_mmu()
91 if (need & valid) { in get_phys_mmu()
92 return need & PAGE_EXEC ? EXCP_IPF : EXCP_DPF; in get_phys_mmu()
94 return need & PAGE_EXEC ? EXCP_ITLBMISS : EXCP_DTLBMISS; in get_phys_mmu()
123 int need = (access_type == MMU_INST_FETCH ? PAGE_EXEC in openrisc_cpu_tlb_fill() local
126 excp = get_phys_mmu(cpu, &phys_addr, &prot, addr, need, super); in openrisc_cpu_tlb_fill()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/yajl/yajl/
H A DCVE-2022-24795.patch40 need = buf->len;
42 - while (want >= (need - buf->used)) need <<= 1;
47 + while (want >= (need - buf->used)) {
48 + if (need >= (size_t)((size_t)(-1)<<1)>>1) {
49 + /* need would overflow. */
52 + need <<= 1;
55 if (need != buf->len) {
56 buf->data = (unsigned char *) YA_REALLOC(buf->alloc, buf->data, need);
/openbmc/u-boot/doc/device-tree-bindings/clock/
H A Drockchip,rk3399-dmc.txt4 - rockchip,cru: this driver should access cru regs, so need get cru here
5 - rockchip,pmucru: this driver should access pmucru regs, so need get pmucru here
6 - rockchip,pmugrf: this driver should access pmugrf regs, so need get pmugrf here
7 - rockchip,pmusgrf: this driver should access pmusgrf regs, so need get pmusgrf here
8 - rockchip,cic: this driver should access cic regs, so need get cic here
/openbmc/openbmc/poky/documentation/toaster-manual/
H A Dstart.rst9 This chapter describes how you need to prepare your system in order to
15 Before you can use Toaster, you need to first set up your build system
19 also need to do an additional install of pip3. ::
37 You need to install the packages that Toaster requires. Use this
49 If you need to remove something, the following works::
/openbmc/qemu/docs/devel/
H A Dblock-coroutine-wrapper.rst7 coroutine_fn specifier. Still, sometimes we need to call them from
8 non-coroutine context; for this we need to start a coroutine, run the
10 BDRV_POLL_WHILE() loop. To run a coroutine we need a function with one
24 ``bdrv_co_foo(<some args>)`` and need a non-coroutine interface for it,
28 1. You need ``bdrv_foo`` declaration somewhere (for example, in
36 2. You need to feed this declaration to block-coroutine-wrapper script.
H A Dbuild-environment.rst37 You first need to enable `Sources List <https://wiki.debian.org/SourcesList>`_.
47 You first need to install `Homebrew <https://brew.sh/>`_. Then, use it to
57 You first need to install `MSYS2 <https://www.msys2.org/>`_.
74 Note: Dependencies need to be installed again if you use a different MSYS2
79 # update MSYS2 itself, you need to reopen your shell at the end.
112 Meson detects x86_64 processes emulated, so you need to manually set the cpu,
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-ninja/
H A Dno-scikit-build.patch1 We don't need to build ninja so there's no need to use scikit-build,
2 as we just need the python module with it's one ninja() function.
/openbmc/openbmc-test-automation/docs/
H A Dredfish_request_via_mTLS.md44 - Original robot code of redfish request doesn’t need to modify. It will send
59 purposes. Therefore, some test cases need to write a new one to match it for
61 username) Some cases don’t need to be tested because the purpose of them are
69 not need to use mTLS to authenticate login and logout. It can be replaced as
77 don't need to create a session first. Therefore, there is no need to test
/openbmc/openbmc/poky/bitbake/lib/bb/tests/runqueue-tests/classes/
H A Dbase.bbclass154 # Return - False - We need this dependency
169 # We only need to trigger populate_lic through direct dependencies
173 # We only need to trigger packagedata through direct dependencies
174 # but need to preserve packagedata on packagedata links
187 # do_package_write_* and do_package doesn't need do_package
190 # do_package_write_* need do_populate_sysroot as they're mainly postinstall dependencies
193 # do_package/packagedata/package_qa don't need do_populate_sysroot
207 # Native/Cross populate_sysroot need their dependencies
210 # Target populate_sysroot depended on by cross tools need to be installed
217 # Target populate_sysroot need their dependencies
/openbmc/u-boot/doc/
H A DREADME.nios213 To add a new board/configuration (eg, mysystem) to u-boot, you will need
32 You will need to add additional properties to the dts. Please find an
41 2. If you use SPI/EPCS or I2C, you will need to add aliases to number
47 Next, you will need a default config file. You may start with
55 You will need to change the names of board header file and device tree,
86 You will need to change the environment variables location and setting,
/openbmc/openbmc/poky/documentation/migration-guides/
H A Dmigration-4.2.rst83 to include such checksums. So, in case you need to add the list of checksums
126 recipes or bbappends, you will need to switch to using :term:`PACKAGE_PREPROCESS_FUNCS`
165 workspace layer enabled and you wish to retain it, you will need to manually
169 need it).
179 available on the build host. Most use cases with runqemu only need
185 However, if you need the qemu machine to be reachable from the
204 if triggered. If you prefer to avoid this you will need to adjust the value
235 image symlink creation, you also now need to set :term:`IMAGE_NAME` to still have
244 code reading this from ``/etc/os-release`` it may need to be updated.
247 signing. If you do not need this and wish to reclaim some space/avoid the dependency
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-dbs/psqlodbc/
H A Dpsqlodbc_16.00.0000.bb9 You need to install this package if you want to use an application that \
11 access a PostgreSQL database. This package would need to be installed \
13 server can be on a different machine and does not need any additional \
61 # The tests need a local PostgreSQL server running
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/libabigail/libabigail/
H A D0001-Check-for-correct-fts-module.patch8 libc to need a standalone fts implementation, and fts-standalone is an
39 +# need to explicitly link to the standalone musl-fts.
44 dnl get a bad one. Add define to CFLAGS (not AC_DEFINE it) since we need to
49 -dnl On musl, we need to find fts-standalone
56 dnl Note that we need to use at least elfutils 0.159 but
/openbmc/openbmc/poky/meta/recipes-devtools/gcc/
H A Dlibgcc-initial.inc4 # We need a libgcc to build glibc. Tranditionally we therefore built
19 # libgcc-initial is tricky as we need to imitate the non-threaded and
26 # handler" capable libgcc (libgcc_eh.a). Since we know glibc doesn't need
42 # We really only want this built by things that need it, not any recrdeptask
/openbmc/openbmc/meta-openembedded/meta-initramfs/recipes-core/images/
H A Dinitramfs-kexecboot-image.bb5 # an assignment to IMAGE_FSTYPES so we need anon python
16 # We really need just kexecboot, kexec and ubiattach
/openbmc/qemu/libdecnumber/dpd/
H A Ddecimal128.c201 Int need; /* .. */ in decimal128ToNumber() local
248 need=12; /* process 12 declets */ in decimal128ToNumber()
251 if (sourhi) need=11; /* declets to process */ in decimal128ToNumber()
252 else if (sourmh) need=10; in decimal128ToNumber()
253 else if (sourml) need=7; in decimal128ToNumber()
254 else if (sourlo) need=4; in decimal128ToNumber()
258 decDigitsFromDPD(dn, sourar, need); /* process declets */ in decimal128ToNumber()
/openbmc/phosphor-power/phosphor-regulators/docs/config_file/
H A Dset_device.md12 Use "set_device" if you need to change the hardware device used by actions. For
13 example, you need to check a bit in two different I/O expanders to detect a
/openbmc/docs/designs/oem/ibm/
H A Dsystem-power-mode.md12 the system power mode and idle power save modes. We need the ability to set and
21 an Active state. Anytime the OCC state changes to active, the BMC will need to
23 need to send the commands if the user changes the mode or idle power save
34 runtime, the BMC will need to send the mode and the idle power saver settings to
57 Defaults will need to be configurable by the system owner (via JSON file)
69 Code will need to trigger off of OCC state changes. The kernel currently sends a
102 Documentation impact - need to document new parameters Performance impact -
/openbmc/openbmc/meta-openembedded/meta-initramfs/recipes-devtools/klibc/files/
H A D0001-arm-Do-not-set-a-fallback-march-and-mtune.patch7 no need to set it inside the makefiles, we will
8 need to compute values for CPU_ARCH and CPU_TUNE
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-prctl/
H A D0001-support-cross-complication.patch39 - sys.stderr.write("You need to install gcc to build this module\n")
45 - sys.stderr.write("You need to install libc development headers to build this module\n")
51 - sys.stderr.write("You need to install libcap development headers to build this module\n")
/openbmc/openbmc/poky/meta/recipes-core/meta/
H A Dtestexport-tarball.bb50 # we need a 'OECORE_NATIVE_SYSROOT=xxx' line in environment setup script.
65 # testexport-tarball doesn't need config site
68 # The recipe doesn't need any default deps
/openbmc/docs/designs/
H A Derror-log-handling-for-phal.md18 initialization, any software/hardware error returned by the pHAL layer need to
91 status need to be returned to the caller so that caller can create PEL on
96 libpdbg library is used for hardware access, any hardware access errors need to
102 need to be created in the [message registry][8].
113 Inventory strings for the targets to Callout/Guard/Deconfig need to be added to
116 Applications need to register callback methods in libekb library to get back the
123 Applications need to register callback methods in libipl library to get back the
130 Applications need to register callback methods to get the debug traces from
/openbmc/openbmc/poky/documentation/dev-manual/
H A Dnew-machine.rst25 To add a new machine, you need to add a new machine configuration file
43 You might also need these variables:
59 machine. You need to either create a new kernel recipe for this machine,
65 apply for setting up a :term:`SRC_URI`. Thus, you need to specify any
66 necessary patches and set :term:`S` to point at the source code. You need to
100 customization is necessary, you need to create a ``machconfig`` file in
/openbmc/openbmc/poky/meta/recipes-devtools/pseudo/
H A Dpseudo.inc45 # We probably don't need to build 32-bit binaries.
68 bbnote "If you need to run 32-bit executables, ensure that NO32LIBS is set to 0."
74 bbwarn "Can't find stubs-32.h, but usually need it to build 32-bit libpseudo."
85 # We need the 32-bit libpseudo on a 64-bit machine...
88 # if we're being rebuilt due to a dependency change, we need to make sure
106 # We need the 32-bit libpseudo on a 64-bit machine.

12345678910>>...59