Home
last modified time | relevance | path

Searched refs:pip (Results 1 – 25 of 29) sorted by relevance

12

/u-boot/tools/u_boot_pylib/
A DREADME.rst9 The module can be installed with pip::
11 pip install u_boot_pylib
/u-boot/doc/build/
A Ddocumentation.rst21 python3 -m pip install -r doc/sphinx/requirements.txt
44 python3 -m pip install -r doc/sphinx/requirements.txt
67 python3 -m pip install -r doc/sphinx/requirements.txt
87 python3 -m pip install -r doc/sphinx/requirements.txt
/u-boot/scripts/
A Dmake_pip.sh100 python3 -m pip install --upgrade build
101 python3 -m pip install --upgrade twine
/u-boot/scripts/dtc/
A DREADME51 The library can be installed with pip from a local source tree:
53 pip install . [--user|--prefix=/path/to/install_dir]
57 pip install git+git://git.kernel.org/pub/scm/utils/dtc/dtc.git@main
60 first. Generally, using --user or --prefix is not necessary and pip will use the
64 You can also install everything via make if you like, but pip is recommended.
/u-boot/drivers/gpio/
A Dsh_pfc.c589 int register_pinmux(struct pinmux_info *pip) in register_pinmux() argument
591 if (pip != NULL) { in register_pinmux()
592 gpioc = pip; in register_pinmux()
593 debug("%s deregistering\n", pip->name); in register_pinmux()
599 int unregister_pinmux(struct pinmux_info *pip) in unregister_pinmux() argument
601 debug("%s deregistering\n", pip->name); in unregister_pinmux()
602 if (gpioc != pip) in unregister_pinmux()
/u-boot/arch/mips/mach-octeon/
A Docteon_fdt.c349 int node, pip, interface, ethernet; in __octeon_fixup_fdt_mac_addr() local
399 pip = fdt_node_offset_by_compatible(working_fdt, -1, "cavium,octeon-3860-pip"); in __octeon_fixup_fdt_mac_addr()
401 if (pip > 0) in __octeon_fixup_fdt_mac_addr()
404 interface = fdt_subnode_offset(working_fdt, pip, name); in __octeon_fixup_fdt_mac_addr()
525 int pip; in octeon_fdt_find_phy() local
548 pip = fdt_path_offset(fdt, pip_path); in octeon_fdt_find_phy()
549 if (pip < 0) { in octeon_fdt_find_phy()
554 interface = fdt_subnode_offset(fdt, pip, buffer); in octeon_fdt_find_phy()
A Dcvmx-helper-board.c435 int pip, iface, eth; in __pip_eth_node() local
458 pip = fdt_path_offset(fdt_addr, pip_path); in __pip_eth_node()
459 debug("ipdd_port=%d pip_path=%s pip=%d ", ipd_port, pip_path, pip); in __pip_eth_node()
460 if (pip < 0) { in __pip_eth_node()
466 iface = fdt_subnode_offset(fdt_addr, pip, name_buffer); in __pip_eth_node()
1609 int pip, iface, eth; in __cvmx_helper_board_get_port_from_dt() local
1683 pip = fdt_path_offset(fdt_addr, pip_path); in __cvmx_helper_board_get_port_from_dt()
1684 if (pip < 0) { in __cvmx_helper_board_get_port_from_dt()
1691 iface = fdt_subnode_offset(fdt_addr, pip, name_buffer); in __cvmx_helper_board_get_port_from_dt()
/u-boot/doc/develop/
A Dpython_cq.rst34 pip install pylint==2.11.1
35 pip install -r test/py/requirements.txt
36 pip install asteval pyopenssl
A Dpy_testing.rst29 pip for Python 3 are installed. All of the required python modules are
35 pip install -r requirements.txt
99 $ pip install -r test/py/requirements.txt
A Dpatman.rst49 pip install patch-manager
/u-boot/arch/mips/mach-octeon/include/mach/
A Dcvmx-ciu-defs.h374 u64 pip : 1; member
410 u64 pip : 1; member
449 u64 pip : 1; member
492 u64 pip : 1; member
525 u64 pip : 1; member
2320 u64 pip : 1; member
2394 u64 pip : 1; member
2429 u64 pip : 1; member
2469 u64 pip : 1; member
2505 u64 pip : 1; member
[all …]
A Dcvmx-wqe.h333 cvmx_pip_wqe_word2_t pip; member
375 cvmx_pip_wqe_word0_t pip; member
828 bits = work->word0.pip.cn68xx.unused1; in cvmx_wqe_get_unused8()
830 bits = work->word0.pip.cn38xx.unused; in cvmx_wqe_get_unused8()
843 work->word0.pip.cn68xx.unused1 = v; in cvmx_wqe_set_unused8()
845 work->word0.pip.cn38xx.unused = v; in cvmx_wqe_set_unused8()
A Dcvmx-npi-defs.h1775 u64 pip : 1; member
1809 u64 pip : 1; member
1845 u64 pip : 1; member
1877 u64 pip : 1; member
/u-boot/
A D.gitlab-ci.yml81 - pip install -r test/py/requirements.txt
173 - pip install -r doc/sphinx/requirements.txt
210 pip install -r test/py/requirements.txt;
242 - pip install -r test/py/requirements.txt
243 - pip install asteval pylint==2.12.2 pyopenssl
269 - make pip
A D.azure-pipelines.yml91 pip install -r doc/sphinx/requirements.txt
164 pip install -r test/py/requirements.txt
211 pip install -r test/py/requirements.txt
212 pip install asteval pylint==2.12.2 pyopenssl
243 - script: make pip
433 pip install -r test/py/requirements.txt
434 pip install pytest-azurepipelines
A DMakefile526 pylint pylint_err _pip pip pip_test pip_release
2283 PHONY += _pip pip pip_release
2287 pip: PIP_ARGS="-n" target
2289 pip pip_test pip_release: _pip target
/u-boot/include/
A Dsh_pfc.h114 int register_pinmux(struct pinmux_info *pip);
115 int unregister_pinmux(struct pinmux_info *pip);
/u-boot/board/synopsys/hsdk/
A DREADME88 "pyelftools" could be installed with help of "pip" even w/o root rights:
90 python3 -m pip install --user pyelftools
/u-boot/tools/docker/
A DDockerfile100 python3-pip \
268 # Populate the cache for pip to use. Get these via wget as the
274 pip install -r /tmp/pytest-requirements.txt \
/u-boot/arch/arm/dts/
A Dstih407-clock.dtsi267 "clk-pix-pip",
A Dstih410-clock.dtsi277 "clk-pix-pip",
/u-boot/tools/patman/
A DREADME.rst49 pip install patch-manager
A Dpatman.rst49 pip install patch-manager
/u-boot/tools/binman/
A DREADME.rst103 pip install binary-manager
385 pip install tools/patman tools/dtoc tools/binman
395 pip install .
A Dbinman.rst103 pip install binary-manager
385 pip install tools/patman tools/dtoc tools/binman
395 pip install .

Completed in 161 milliseconds

12