Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 002c39db authored by Cédric Le Goater's avatar Cédric Le Goater Committed by Benjamin Herrenschmidt
Browse files

powerpc/boot: Add little endian support to elf utils

parent 284b52c4
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -26,7 +26,11 @@ int parse_elf64(void *hdr, struct elf_info *info)
	      elf64->e_ident[EI_MAG2]  == ELFMAG2	&&
	      elf64->e_ident[EI_MAG3]  == ELFMAG3	&&
	      elf64->e_ident[EI_CLASS] == ELFCLASS64	&&
#ifdef __LITTLE_ENDIAN__
	      elf64->e_ident[EI_DATA]  == ELFDATA2LSB	&&
#else
	      elf64->e_ident[EI_DATA]  == ELFDATA2MSB	&&
#endif
	      (elf64->e_type            == ET_EXEC ||
	       elf64->e_type            == ET_DYN)	&&
	      elf64->e_machine         == EM_PPC64))