Introduce crunchide to the ELF e_machine MIPS values.

This commit is contained in:
David E. O'Brien 2008-09-03 16:21:28 +00:00
parent 51e8f5a470
commit 22407452f5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=182725

View File

@ -160,6 +160,14 @@ ELFNAMEEND(check)(int fd, const char *fn)
#define EM_ARM 40
#endif
case EM_ARM: break;
#ifndef EM_MIPS
#define EM_MIPS 8
#endif
#ifndef EM_MIPS_RS4_BE /* same as EM_MIPS_RS3_LE */
#define EM_MIPS_RS4_BE 10
#endif
case EM_MIPS: break;
case /* EM_MIPS_RS3_LE */ EM_MIPS_RS4_BE: break;
#ifndef EM_IA_64
#define EM_IA_64 50
#endif