Commit 444c91e6 authored by Paul Mackerras's avatar Paul Mackerras Committed by Paul Mackerras

PPC32: moved the compatibility padding entries in the aux vector

to the bottom of the aux table.
parent d25f2caa
/*
* BK Id: SCCS/s.elf.h 1.14 08/21/01 16:07:48 trini
* BK Id: %F% %I% %G% %U% %#%
*/
#ifndef __PPC_ELF_H
#define __PPC_ELF_H
......@@ -100,12 +100,13 @@ extern int ucache_bsize;
*/
#define ARCH_DLINFO \
do { \
/* Handle glibc compatibility. */ \
NEW_AUX_ENT(AT_IGNOREPPC, AT_IGNOREPPC); \
NEW_AUX_ENT(AT_IGNOREPPC, AT_IGNOREPPC); \
/* Cache size items */ \
NEW_AUX_ENT(AT_DCACHEBSIZE, dcache_bsize); \
NEW_AUX_ENT(AT_ICACHEBSIZE, icache_bsize); \
NEW_AUX_ENT(AT_UCACHEBSIZE, ucache_bsize); \
/* Now handle glibc compatibility. */ \
NEW_AUX_ENT(AT_IGNOREPPC, AT_IGNOREPPC); \
NEW_AUX_ENT(AT_IGNOREPPC, AT_IGNOREPPC); \
} while (0)
#endif /* __KERNEL__ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment