mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
Tell crunchide to deal with arm elf binaries as well.
Rescue can now be built for arm.
This commit is contained in:
parent
bed16055e7
commit
ed575be468
1 changed files with 4 additions and 0 deletions
|
|
@ -156,6 +156,10 @@ ELFNAMEEND(check)(int fd, const char *fn)
|
|||
switch (xe16toh(eh.e_machine)) {
|
||||
case EM_386: break;
|
||||
case EM_ALPHA: break;
|
||||
#ifndef EM_ARM
|
||||
#define EM_ARM 40
|
||||
#endif
|
||||
case EM_ARM: break;
|
||||
#ifndef EM_IA_64
|
||||
#define EM_IA_64 50
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue