diff options
author | Amaury Pouly <pamaury@rockbox.org> | 2010-12-01 18:19:36 +0000 |
---|---|---|
committer | Amaury Pouly <pamaury@rockbox.org> | 2010-12-01 18:19:36 +0000 |
commit | db9445abd735d43e14ef1523c620f6bda0811275 (patch) | |
tree | c5ccb6426843b88767c2c8198d130c2c423f1976 | |
parent | 1583b1cd53282efda61ab00da64e627667d9cda9 (diff) | |
download | rockbox-db9445abd735d43e14ef1523c620f6bda0811275.tar.gz rockbox-db9445abd735d43e14ef1523c620f6bda0811275.zip |
sbinfo: fix arm hasentry flags, otherwise elf files are marked as having to entry point...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28718 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | utils/sbinfo/elf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/sbinfo/elf.h b/utils/sbinfo/elf.h index 6835178289..eb990389d9 100644 --- a/utils/sbinfo/elf.h +++ b/utils/sbinfo/elf.h @@ -74,7 +74,7 @@ typedef struct #define EV_CURRENT 1 /* Current version */ -#define EF_ARM_HASENTRY 0x0 +#define EF_ARM_HASENTRY 0x00000002 #define SHN_UNDEF 0 /* Undefined section */ |