Home
last modified time | relevance | path

Searched refs:images_noffset (Results 1 – 6 of 6) sorted by relevance

/openbmc/u-boot/cmd/
H A Dsource.c33 int images_noffset; in get_default_image() local
35 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH); in get_default_image()
36 if (images_noffset < 0) in get_default_image()
39 return fdt_getprop(fit, images_noffset, FIT_DEFAULT_PROP, NULL); in get_default_image()
/openbmc/u-boot/common/
H A Dimage-fit.c135 noffset = fdt_next_node(fit, images_noffset, &ndepth); in fit_get_subimage_count()
347 int images_noffset; in fit_print_contents() local
377 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH); in fit_print_contents()
378 if (images_noffset < 0) { in fit_print_contents()
631 int noffset, images_noffset; in fit_image_get_node() local
634 if (images_noffset < 0) { in fit_image_get_node()
637 return images_noffset; in fit_image_get_node()
1311 int images_noffset; in fit_all_image_verify() local
1318 if (images_noffset < 0) { in fit_all_image_verify()
1530 int noffset, confs_noffset, images_noffset; in fit_conf_find_compat() local
[all …]
H A Dupdate.c235 int images_noffset, ndepth, noffset; in update_tftp() local
290 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH); in update_tftp()
293 noffset = fdt_next_node(fit, images_noffset, &ndepth); in update_tftp()
/openbmc/u-boot/tools/
H A Dimage-host.c682 int images_noffset, confs_noffset; in fit_add_verification_data() local
687 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH); in fit_add_verification_data()
688 if (images_noffset < 0) { in fit_add_verification_data()
690 FIT_IMAGES_PATH, fdt_strerror(images_noffset)); in fit_add_verification_data()
691 return images_noffset; in fit_add_verification_data()
695 for (noffset = fdt_first_subnode(fit, images_noffset); in fit_add_verification_data()
H A Dfit_image.c757 int images_noffset; in fit_extract_contents() local
773 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH); in fit_extract_contents()
774 if (images_noffset < 0) { in fit_extract_contents()
776 FIT_IMAGES_PATH, fdt_strerror(images_noffset)); in fit_extract_contents()
781 count = fit_get_subimage_count(fit, images_noffset); in fit_extract_contents()
789 noffset = fdt_next_node(fit, images_noffset, &ndepth); in fit_extract_contents()
/openbmc/u-boot/include/
H A Dimage.h972 int fit_get_subimage_count(const void *fit, int images_noffset);