Lines Matching refs:dtb
121 dtb, fname, entry = output_fdt_info[etype]
122 dtb_fname = dtb.GetFilename()
124 dtb = fdt.FdtScan(dtb_fname)
125 output_fdt_info[etype] = [dtb, fname, entry]
157 def Prepare(images, dtb): argument
177 main_dtb = dtb
180 output_fdt_info['u-boot-dtb'] = [dtb, 'u-boot.dtb', None]
181 output_fdt_info['u-boot-spl-dtb'] = [dtb, 'spl/u-boot-spl.dtb', None]
182 output_fdt_info['u-boot-tpl-dtb'] = [dtb, 'tpl/u-boot-tpl.dtb', None]
230 dtb = fdt.Fdt(out_fname)
231 dtb.Scan()
232 image_node = dtb.GetNode('/binman')
234 image_node = dtb.GetNode('/binman/%s' % image.image_node)
236 output_fdt_info[etype] = [dtb, None, entry]
249 dtb = output_fdt_info[etype][0]
250 if dtb != main_dtb:
251 yield dtb
271 for dtb, fname, entry in output_fdt_info.values():
272 if dtb != node.GetFdt():
275 other_node = dtb.GetNode(fdt_path_prefix + node.path)