Home
last modified time | relevance | path

Searched refs:dtb_path (Results 1 – 16 of 16) sorted by relevance

/openbmc/qemu/tests/functional/
H A Dtest_arm_bpim2u.py
H A Dtest_arm_orangepi.py
H A Dtest_arm_cubieboard.py
H A Dtest_arm_smdkc210.py
H A Dtest_arm_replay.py
H A Dtest_aarch64_raspi4.py
H A Dtest_arm_raspi2.py
H A Dtest_aarch64_imx8mp_evk.py
H A Dtest_rx_gdbsim.py
H A Dtest_arm_aspeed_rainier.py
H A Dtest_arm_quanta_gsj.py
/openbmc/openbmc/poky/meta/classes-recipe/
H A Dkernel-devicetree.bbclass40 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 Duki.bbclass155 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 Dkernel-fitimage.bbclass393 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 Dfitimage.bbclass188 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 Dfitimage.py100 …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)