Go to the documentation of this file.
24 #include <asm/byteorder.h>
26 #define OLD_FLAT_VERSION 0x00000002L
27 #define OLD_FLAT_RELOC_TYPE_TEXT 0
28 #define OLD_FLAT_RELOC_TYPE_DATA 1
29 #define OLD_FLAT_RELOC_TYPE_BSS 2
34 # if defined(mc68000) && !defined(CONFIG_COLDFIRE)
36 unsigned long type : 2;
37 # define OLD_FLAT_FLAG_RAM 0x1
38 # elif defined(__BIG_ENDIAN_BITFIELD)
39 unsigned long type : 2;
41 # define OLD_FLAT_FLAG_RAM 0x1
42 # elif defined(__LITTLE_ENDIAN_BITFIELD)
44 unsigned long type : 2;
45 # define OLD_FLAT_FLAG_RAM 0x1
47 # error "Unknown bitfield order for flat files."