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
+14
-16
@@ -905,19 +905,17 @@ static int kwbimage_check_params(struct image_tool_params *params)
|
||||
/*
|
||||
* kwbimage type parameters definition
|
||||
*/
|
||||
static struct image_type_params kwbimage_params = {
|
||||
.name = "Marvell MVEBU Boot Image support",
|
||||
.header_size = 0, /* no fixed header size */
|
||||
.hdr = NULL,
|
||||
.vrec_header = kwbimage_generate,
|
||||
.check_image_type = kwbimage_check_image_types,
|
||||
.verify_header = kwbimage_verify_header,
|
||||
.print_header = kwbimage_print_header,
|
||||
.set_header = kwbimage_set_header,
|
||||
.check_params = kwbimage_check_params,
|
||||
};
|
||||
|
||||
void init_kwb_image_type (void)
|
||||
{
|
||||
register_image_type(&kwbimage_params);
|
||||
}
|
||||
U_BOOT_IMAGE_TYPE(
|
||||
kwbimage,
|
||||
"Marvell MVEBU Boot Image support",
|
||||
0,
|
||||
NULL,
|
||||
kwbimage_check_params,
|
||||
kwbimage_verify_header,
|
||||
kwbimage_print_header,
|
||||
kwbimage_set_header,
|
||||
NULL,
|
||||
kwbimage_check_image_types,
|
||||
NULL,
|
||||
kwbimage_generate
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user