check for ELF payloads in cbfstool
Signed-off-by: Cristi Magherusan <cristi.magherusan@net.utcluj.ro> Acked-by: Cristi Magherusan <cristi.magherusan@net.utcluj.ro> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4678 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
6bd571e060
commit
19a99c6965
|
@ -48,6 +48,12 @@ int parse_elf_to_payload(unsigned char *input, unsigned char **output,
|
||||||
struct cbfs_payload_segment *segs;
|
struct cbfs_payload_segment *segs;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
if(!iself(input)){
|
||||||
|
printf("Fatal error: the payload file is not in ELF format!\n");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
comp_func_ptr compress = compression_function(algo);
|
comp_func_ptr compress = compression_function(algo);
|
||||||
if (!compress)
|
if (!compress)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
Loading…
Reference in New Issue