Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 940 → Rev 941

/kernel/trunk/contrib/conf/spmips.conf
22,7 → 22,7
(0x180003fe, tty0, 0, 6, 1),
(0x180003ff, tty0, 0, 7, 1),
(0x1c000000, hfs0, 0, 0, 16),
(0x01000000, initmem0, 0, 0, 0x20000))
(0x01000000, initmem0, 0, 0, 0x100000))
}
 
OBJECT cbus-space TYPE memory-space {
43,7 → 43,7
}
OBJECT initmem0-image TYPE image {
queue: cpu0
size: 0x20000
size: 0x100000
files: (("../../../uspace/init/init", "ro", 0,0))
}
 
/kernel/trunk/arch/mips32/include/elf.h
30,7 → 30,13
#define __mips32_ELF_H__
 
#define ELF_MACHINE EM_MIPS
#define ELF_DATA_ENCODING ELFDATA2MSB
 
#ifdef BIG_ENDIAN
# define ELF_DATA_ENCODING ELFDATA2MSB
#else
# define ELF_DATA_ENCODING ELFDATA2LSB
#endif
 
#define ELF_CLASS ELFCLASS32
 
#endif