Searched refs:dtb_path (Results 1 – 16 of 16) sorted by relevance
| /openbmc/qemu/tests/functional/ |
| H A D | test_arm_bpim2u.py | |
| H A D | test_arm_orangepi.py | |
| H A D | test_arm_cubieboard.py | |
| H A D | test_arm_smdkc210.py | |
| H A D | test_arm_replay.py | |
| H A D | test_aarch64_raspi4.py | |
| H A D | test_arm_raspi2.py | |
| H A D | test_aarch64_imx8mp_evk.py | |
| H A D | test_rx_gdbsim.py | |
| H A D | test_arm_aspeed_rainier.py | |
| H A D | test_arm_quanta_gsj.py | |
| /openbmc/openbmc/poky/meta/classes-recipe/ |
| H A D | kernel-devicetree.bbclass | 40 dtb_path="${B}/arch/${ARCH}/boot/dts/$dtb" 41 if [ ! -e "$dtb_path" ]; then 42 dtb_path="${B}/arch/${ARCH}/boot/$dtb" 44 echo "$dtb_path" 84 dtb_path=`get_real_dtb_path_in_kernel "$dtb"` 90 install -Dm 0644 $dtb_path ${D}/${KERNEL_DTBDEST}/$dtb
|
| H A D | uki.bbclass | 155 dtb_path = "%s/%s" % (deploy_dir_image, dtb) 156 if not os.path.exists(dtb_path): 157 bb.fatal(f"ERROR: cannot find {dtb_path}.") 158 ukify_cmd += " --devicetree %s" % (dtb_path)
|
| H A D | kernel-fitimage.bbclass | 393 dtb_path="${EXTERNAL_KERNEL_DEVICETREE}/${dtb_image_sect}" 394 if [ -f "$dtb_path" ] || [ -L "$dtb_path" ]; then 395 compat=$(fdtget -t s "$dtb_path" / compatible | sed 's/ /", "/g')
|
| /openbmc/openbmc/meta-openembedded/meta-oe/classes/ |
| H A D | fitimage.bbclass | 188 def _fitimage_emit_section_dtb(d, fd, dtb_file, dtb_path, loadaddr, desc): 196 fd.write(f'\t\t\tdata = /incbin/("{dtb_path}/{dtb_file}");\n') 208 def fitimage_emit_section_dtb(d, fd, dtb_file, dtb_path): 211 _fitimage_emit_section_dtb(d, fd, dtb_file, dtb_path, loadaddr, "Flattened Device Tree blob") 216 def fitimage_emit_section_dtb_overlay(d, fd, dtb_file, dtb_path): 219 …_fitimage_emit_section_dtb(d, fd, dtb_file, dtb_path, loadaddr, "Flattened Device Tree Overlay blo… 406 dtb_path, dtb_file = os.path.split(dtb) 408 fitimage_emit_section_dtb(d, fd, dtb_file, dtb_path) 415 dtb_path, dtb_file = os.path.split(dtb) 417 fitimage_emit_section_dtb_overlay(d, fd, dtb_file, dtb_path) [all …]
|
| /openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | fitimage.py | 100 …def _verify_fit_image_signature(self, uboot_tools_bindir, fitimage_path, dtb_path, conf_name=None): argument 108 cmd = '%s -f %s -k %s' % (fit_check_sign_path, fitimage_path, dtb_path) 115 …def _verify_dtb_property(self, dtc_bindir, dtb_path, node_path, property_name, req_property, absen… argument 121 cmd = '%s %s %s %s' % (fdtget_path, dtb_path, node_path, property_name) 638 dtb_path = os.path.join(deploy_dir_image, section.replace('conf-', '')) 639 … self._verify_fit_image_signature(uboot_tools_bindir, fitimage_path, dtb_path, section)
|