diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/elf/ChangeLog | 8 | ||||
-rw-r--r-- | include/elf/arm.h | 1 |
3 files changed, 9 insertions, 4 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 4dcfe10..cd33a61 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,7 +1,3 @@ -2015-12-16 Mickael Guene <mickael.guene@st.com> - - * elf/arm.h: Add new arm relocations. - 2015-12-01 Alan Modra <amodra@gmail.com> * bout.h: Invoke aout N_* macros with pointer to diff --git a/include/elf/ChangeLog b/include/elf/ChangeLog index 5b98c66..93b00016 100644 --- a/include/elf/ChangeLog +++ b/include/elf/ChangeLog @@ -1,3 +1,11 @@ +2015-12-22 Mickael Guene <mickael.guene@st.com> + + * arm.h: Add arm SHF_ARM_NOREAD section flag. + +2015-12-16 Mickael Guene <mickael.guene@st.com> + + * arm.h: Add new arm relocations. + 2015-12-14 Yoshinori Sato <ysato@users.sourceforge.jp> * rx.h (E_FLAG_RX_V2): New RXv2 type. diff --git a/include/elf/arm.h b/include/elf/arm.h index 5691118..4f09b6a 100644 --- a/include/elf/arm.h +++ b/include/elf/arm.h @@ -82,6 +82,7 @@ /* ARM-specific values for sh_flags. */ #define SHF_ENTRYSECT 0x10000000 /* Section contains an entry point. */ +#define SHF_ARM_NOREAD 0x20000000 /* Section contains code that can be place on no read memory area. */ #define SHF_COMDEF 0x80000000 /* Section may be multiply defined in the input to a link step. */ /* ARM-specific program header flags. */ |