Searched refs:image_comp (Results 1 - 4 of 4) sorted by relevance

/u-boot/common/spl/
H A Dspl_fit.c216 uint8_t image_comp = -1, type = -1; local
230 fit_image_get_comp(fit, node, &image_comp);
231 debug("%s ", genimg_get_comp_name(image_comp));
265 (image_comp == IH_COMP_GZIP || image_comp == IH_COMP_LZMA))
307 if (IS_ENABLED(CONFIG_SPL_GZIP) && image_comp == IH_COMP_GZIP) {
314 } else if (IS_ENABLED(CONFIG_SPL_LZMA) && image_comp == IH_COMP_LZMA) {
/u-boot/boot/
H A Dbootm.c1223 uint8_t image_comp; local
1241 if (fit_image_get_comp(fit, noffset, &image_comp))
1242 image_comp = IH_COMP_NONE;
1247 ret = image_decomp(image_comp, 0, data, image_type, load_buf,
1252 ret = handle_decomp_error(image_comp, load_end - 0, buf_size, ret);
H A Dimage.c213 static const struct comp_magic_map image_comp[] = { variable in typeref:struct:comp_magic_map
436 const struct comp_magic_map *cmagic = image_comp;
H A Dimage-fit.c1620 uint8_t image_comp; local
1622 if (fit_image_get_comp(fit, noffset, &image_comp))
1624 return (comp == image_comp);

Completed in 54 milliseconds