|
@@ -16,13 +16,15 @@
|
|
|
* I've snaffled the value from the microblaze binutils source code
|
|
|
* /binutils/microblaze/include/elf/microblaze.h
|
|
|
*/
|
|
|
-#define EM_XILINX_MICROBLAZE 0xbaab
|
|
|
-#define ELF_ARCH EM_XILINX_MICROBLAZE
|
|
|
+#define EM_MICROBLAZE 189
|
|
|
+#define EM_MICROBLAZE_OLD 0xbaab
|
|
|
+#define ELF_ARCH EM_MICROBLAZE
|
|
|
|
|
|
/*
|
|
|
* This is used to ensure we don't load something for the wrong architecture.
|
|
|
*/
|
|
|
-#define elf_check_arch(x) ((x)->e_machine == EM_XILINX_MICROBLAZE)
|
|
|
+#define elf_check_arch(x) ((x)->e_machine == EM_MICROBLAZE \
|
|
|
+ || (x)->e_machine == EM_MICROBLAZE_OLD)
|
|
|
|
|
|
/*
|
|
|
* These are used to set parameters in the core dumps.
|