Revert "simplify mipsel handling"

This reverts commit 3451c43f4938a20aee5a2c0d0fa17c29e40b989b.

Conflicts:

	configure.ac
This commit is contained in:
phcoder 2009-10-18 15:06:47 +02:00
parent a9a6948ac3
commit 4a1eefb623
2 changed files with 14 additions and 3 deletions

View file

@ -25,12 +25,14 @@
/* The size of long. */
#define GRUB_TARGET_SIZEOF_LONG 4
#ifdef __MIPSEL__
#ifdef GRUB_CPU_MIPSEL
/* mipsEL is little-endian. */
#undef GRUB_TARGET_WORDS_BIGENDIAN
#else
#elif defined (GRUB_CPU_MIPS)
/* mips is big-endian. */
#define GRUB_TARGET_WORDS_BIGENDIAN
#elif !defined (GRUB_SYMBOL_GENERATOR)
#error Neither GRUB_CPU_MIPS nor GRUB_CPU_MIPSEL is defined
#endif
#endif /* ! GRUB_TYPES_CPU_HEADER */