| /u-boot/tools/u_boot_pylib/ |
| A D | README.rst | 9 The module can be installed with pip:: 11 pip install u_boot_pylib
|
| /u-boot/doc/build/ |
| A D | documentation.rst | 21 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 D | make_pip.sh | 100 python3 -m pip install --upgrade build 101 python3 -m pip install --upgrade twine
|
| /u-boot/scripts/dtc/ |
| A D | README | 51 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 D | sh_pfc.c | 589 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 D | octeon_fdt.c | 349 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 D | cvmx-helper-board.c | 435 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 D | python_cq.rst | 34 pip install pylint==2.11.1 35 pip install -r test/py/requirements.txt 36 pip install asteval pyopenssl
|
| A D | py_testing.rst | 29 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 D | patman.rst | 49 pip install patch-manager
|
| /u-boot/arch/mips/mach-octeon/include/mach/ |
| A D | cvmx-ciu-defs.h | 374 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 D | cvmx-wqe.h | 333 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 D | cvmx-npi-defs.h | 1775 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.yml | 81 - 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.yml | 91 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 D | Makefile | 526 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 D | sh_pfc.h | 114 int register_pinmux(struct pinmux_info *pip); 115 int unregister_pinmux(struct pinmux_info *pip);
|
| /u-boot/board/synopsys/hsdk/ |
| A D | README | 88 "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 D | Dockerfile | 100 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 D | stih407-clock.dtsi | 267 "clk-pix-pip",
|
| A D | stih410-clock.dtsi | 277 "clk-pix-pip",
|
| /u-boot/tools/patman/ |
| A D | README.rst | 49 pip install patch-manager
|
| A D | patman.rst | 49 pip install patch-manager
|
| /u-boot/tools/binman/ |
| A D | README.rst | 103 pip install binary-manager 385 pip install tools/patman tools/dtoc tools/binman 395 pip install .
|
| A D | binman.rst | 103 pip install binary-manager 385 pip install tools/patman tools/dtoc tools/binman 395 pip install .
|