diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-05-05 18:36:59 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-05-05 18:36:59 -0400 |
commit | 03787ff6f9156e43019f3f4b69cb6212b3a47f65 (patch) | |
tree | 05dd4b8de6de3313f1afdaaa7636a4052ad4e634 /scripts | |
parent | 5575eeb7b9f687ca4899e2d8721a9b17265d0060 (diff) | |
parent | 55b441be5cd600bf645a01b14900880a09941d4c (diff) |
Merge tag 'xtensa-next-20140503' of git://github.com/czankel/xtensa-linux
Pull Xtensa fixes from Chris Zankel:
- Fixes allmodconfig, allnoconfig builds
- Adds highmem support
- Enables build-time exception table sorting.
* tag 'xtensa-next-20140503' of git://github.com/czankel/xtensa-linux:
xtensa: ISS: don't depend on CONFIG_TTY
xtensa: xt2000: drop redundant sysmem initialization
xtensa: add support for KC705
xtensa: xtfpga: introduce SoC I/O bus
xtensa: add HIGHMEM support
xtensa: optimize local_flush_tlb_kernel_range
xtensa: dump sysmem from the bootmem_init
xtensa: handle memmap kernel option
xtensa: keep sysmem banks ordered in mem_reserve
xtensa: keep sysmem banks ordered in add_sysmem_bank
xtensa: split bootparam and kernel meminfo
xtensa: enable sorting extable at build time
xtensa: export __{invalidate,flush}_dcache_range
xtensa: Export __invalidate_icache_range
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/sortextable.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/sortextable.c b/scripts/sortextable.c index cc49062acdee..1052d4834a44 100644 --- a/scripts/sortextable.c +++ b/scripts/sortextable.c | |||
@@ -35,6 +35,10 @@ | |||
35 | #define EM_ARCOMPACT 93 | 35 | #define EM_ARCOMPACT 93 |
36 | #endif | 36 | #endif |
37 | 37 | ||
38 | #ifndef EM_XTENSA | ||
39 | #define EM_XTENSA 94 | ||
40 | #endif | ||
41 | |||
38 | #ifndef EM_AARCH64 | 42 | #ifndef EM_AARCH64 |
39 | #define EM_AARCH64 183 | 43 | #define EM_AARCH64 183 |
40 | #endif | 44 | #endif |
@@ -281,6 +285,7 @@ do_file(char const *const fname) | |||
281 | case EM_AARCH64: | 285 | case EM_AARCH64: |
282 | case EM_MICROBLAZE: | 286 | case EM_MICROBLAZE: |
283 | case EM_MIPS: | 287 | case EM_MIPS: |
288 | case EM_XTENSA: | ||
284 | break; | 289 | break; |
285 | } /* end switch */ | 290 | } /* end switch */ |
286 | 291 | ||