mirror of
https://github.com/linux-sunxi/u-boot-sunxi.git
synced 2024-02-12 11:16:03 +08: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
@ -162,19 +162,17 @@ static int fit_check_params(struct image_tool_params *params)
|
||||
(params->lflag && (params->dflag || params->fflag)));
|
||||
}
|
||||
|
||||
static struct image_type_params fitimage_params = {
|
||||
.name = "FIT Image support",
|
||||
.header_size = sizeof(image_header_t),
|
||||
.hdr = (void*)&header,
|
||||
.verify_header = fit_verify_header,
|
||||
.print_header = fit_print_contents,
|
||||
.check_image_type = fit_check_image_types,
|
||||
.fflag_handle = fit_handle_file,
|
||||
.set_header = NULL, /* FIT images use DTB header */
|
||||
.check_params = fit_check_params,
|
||||
};
|
||||
|
||||
void init_fit_image_type (void)
|
||||
{
|
||||
register_image_type(&fitimage_params);
|
||||
}
|
||||
U_BOOT_IMAGE_TYPE(
|
||||
fitimage,
|
||||
"FIT Image support",
|
||||
sizeof(image_header_t),
|
||||
(void *)&header,
|
||||
fit_check_params,
|
||||
fit_verify_header,
|
||||
fit_print_contents,
|
||||
NULL,
|
||||
NULL,
|
||||
fit_check_image_types,
|
||||
fit_handle_file,
|
||||
NULL /* FIT images use DTB header */
|
||||
);
|
||||
|
Reference in New Issue
Block a user