mirror of
https://xff.cz/git/u-boot/
synced 2025-08-31 16:22:36 +02:00
imagetool: replace image registration function by linker_lists feature
The registration was introduced in commit f86ed6a8d5
This commit also removes all registration functions, and the member "next"
from image_type_params struct
Signed-off-by: Guilherme Maciel Ferreira <guilherme.maciel.ferreira@gmail.com>
This commit is contained in:
committed by
Tom Rini
parent
067d156075
commit
a93648d197
@@ -2312,25 +2312,18 @@ fail:
|
||||
/*
|
||||
* mxsimage parameters
|
||||
*/
|
||||
static struct image_type_params mxsimage_params = {
|
||||
.name = "Freescale MXS Boot Image support",
|
||||
.header_size = 0,
|
||||
.hdr = NULL,
|
||||
.check_image_type = mxsimage_check_image_types,
|
||||
.verify_header = mxsimage_verify_header,
|
||||
.print_header = mxsimage_print_header,
|
||||
.set_header = mxsimage_set_header,
|
||||
.check_params = mxsimage_check_params,
|
||||
.vrec_header = mxsimage_generate,
|
||||
};
|
||||
|
||||
void init_mxs_image_type(void)
|
||||
{
|
||||
register_image_type(&mxsimage_params);
|
||||
}
|
||||
|
||||
#else
|
||||
void init_mxs_image_type(void)
|
||||
{
|
||||
}
|
||||
U_BOOT_IMAGE_TYPE(
|
||||
mxsimage,
|
||||
"Freescale MXS Boot Image support",
|
||||
0,
|
||||
NULL,
|
||||
mxsimage_check_params,
|
||||
mxsimage_verify_header,
|
||||
mxsimage_print_header,
|
||||
mxsimage_set_header,
|
||||
NULL,
|
||||
mxsimage_check_image_types,
|
||||
NULL,
|
||||
mxsimage_generate
|
||||
);
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user