X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=tools%2Fmxsimage.c;h=045b35a39b380c3e5cc5c754b894d035ed541080;hb=bb2637be096b842ee25b96c7cfe4f26e55fb7026;hp=7bd9deef5f0cca908ea775e9e741647faf90d07f;hpb=4b0561d84198f8d696fd51cfc27aeac8c7482a8c;p=oweals%2Fu-boot.git diff --git a/tools/mxsimage.c b/tools/mxsimage.c index 7bd9deef5f..045b35a39b 100644 --- a/tools/mxsimage.c +++ b/tools/mxsimage.c @@ -17,7 +17,7 @@ #include -#include "mkimage.h" +#include "imagetool.h" #include "mxsimage.h" #include @@ -2149,11 +2149,11 @@ static int mxsimage_check_image_types(uint8_t type) } static void mxsimage_set_header(void *ptr, struct stat *sbuf, int ifd, - struct mkimage_params *params) + struct image_tool_params *params) { } -int mxsimage_check_params(struct mkimage_params *params) +int mxsimage_check_params(struct image_tool_params *params) { if (!params) return -1; @@ -2194,7 +2194,7 @@ static int mxsimage_verify_print_header(char *file, int silent) char *imagefile; static int mxsimage_verify_header(unsigned char *ptr, int image_size, - struct mkimage_params *params) + struct image_tool_params *params) { struct sb_boot_image_header *hdr; @@ -2292,7 +2292,7 @@ static int sb_build_image(struct sb_image_ctx *ictx, return 0; } -static int mxsimage_generate(struct mkimage_params *params, +static int mxsimage_generate(struct image_tool_params *params, struct image_type_params *tparams) { int ret; @@ -2338,7 +2338,7 @@ static struct image_type_params mxsimage_params = { void init_mxs_image_type(void) { - mkimage_register(&mxsimage_params); + register_image_type(&mxsimage_params); } #else