diff options
author | Paul Sokolovsky <pmiscml@gmail.com> | 2006-10-27 01:07:40 +0000 |
---|---|---|
committer | Paul Sokolovsky <pmiscml@gmail.com> | 2006-10-27 01:07:40 +0000 |
commit | 3903dc969a1710e80c49f78adf2f1639956185b4 (patch) | |
tree | f05878d9299a5ee2e652f13c8b95bf637b83210b /packages/linux/linux-handhelds-2.6-2.6.16/eabi-enums.patch | |
parent | 11d174ab5324bd1e46cc86532dbb3aa3c4f2d700 (diff) |
linux-handhelds-2.6: Prepare to finish upgrade to 2.6.17.
* Aim: support few kernel releases nicely and transparently.
* Issue: different kernel versions/releases (may) have different defconfigs.
* Requirement: we need files dir to be override not just on PN, amd not just on
MACHINE, but additionally on some version string, which doesn't necessarily have
to be PV (for example, current situation is that 2.6.16 vs 2.6.17 need different
defconfigs, while potentially *some* -hh tags may have that need too).
* Solution: I could get per-MACHINE overrides work automagically if FILESPATH is
overriden. So, emulate that with adding both per-version dir (foo) and foo/${MACHINE}
at the same time (and at the right order).
* Rename linux-handhelds-2.6/ to linux-handhelds-2.6-2.6.16/, as it really contains
defconfigs for those kernels. "HEAD" kernel version will still use linux-handhelds-2.6
(i.e. TODO: add 2.6.17 defconfigs to linux-handhelds-2.6/).
Diffstat (limited to 'packages/linux/linux-handhelds-2.6-2.6.16/eabi-enums.patch')
-rw-r--r-- | packages/linux/linux-handhelds-2.6-2.6.16/eabi-enums.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/packages/linux/linux-handhelds-2.6-2.6.16/eabi-enums.patch b/packages/linux/linux-handhelds-2.6-2.6.16/eabi-enums.patch new file mode 100644 index 0000000000..9e5e9ec571 --- /dev/null +++ b/packages/linux/linux-handhelds-2.6-2.6.16/eabi-enums.patch @@ -0,0 +1,16 @@ +Index: linux-2.6.16/arch/arm/Makefile +=================================================================== +--- linux-2.6.16.orig/arch/arm/Makefile 2006-03-20 05:53:29.000000000 +0000 ++++ linux-2.6.16/arch/arm/Makefile 2006-04-24 20:10:27.000000000 +0100 +@@ -57,7 +57,7 @@ + tune-$(CONFIG_CPU_V6) :=$(call cc-option,-mtune=arm1136j-s,-mtune=strongarm) + + ifeq ($(CONFIG_AEABI),y) +-CFLAGS_ABI :=-mabi=aapcs -mno-thumb-interwork ++CFLAGS_ABI :=-mabi=aapcs-linux -mno-thumb-interwork + else + CFLAGS_ABI :=$(call cc-option,-mapcs-32,-mabi=apcs-gnu) $(call cc-option,-mno-thumb-interwork,) + endif + + + |