diff options
| author | Stanislav Bogatyrev <bogatyrev_stanislav@gmail.com> | 2010-08-29 00:10:59 +0200 | 
|---|---|---|
| committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-08-29 00:14:40 +0200 | 
| commit | e8fdc08dc39ea28e5e098f696477e4a13f4ebd94 (patch) | |
| tree | 609821ec9dcdc5246b3b8fa264eba403fa25f4c5 | |
| parent | 62b4c67b094131db9d1f715a5cef0fd042396338 (diff) | |
| download | buildroot-novena-e8fdc08dc39ea28e5e098f696477e4a13f4ebd94.tar.gz buildroot-novena-e8fdc08dc39ea28e5e098f696477e4a13f4ebd94.zip | |
uClibc: fix ppc e500 handling
Closes #2449
Signed-off-by: Stanislav Bogatyrev <bogatyrev_stanislav@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| -rw-r--r-- | CHANGES | 1 | ||||
| -rw-r--r-- | toolchain/uClibc/uclibc.mk | 8 | 
2 files changed, 2 insertions, 7 deletions
| @@ -24,6 +24,7 @@  	#635:  util-linux fails to build in 2009.08  	#2239: netcat package installs its binary to target as avr32-linux... +	#2449: Minor fixes for squashfs makefile and correct PowerPC e500 ...  2010.08-rc1, Released July 30th, 2010: diff --git a/toolchain/uClibc/uclibc.mk b/toolchain/uClibc/uclibc.mk index b9ef5512a..4fb9393a9 100644 --- a/toolchain/uClibc/uclibc.mk +++ b/toolchain/uClibc/uclibc.mk @@ -217,13 +217,7 @@ ifeq ($(UCLIBC_TARGET_ARCH),sparc)  	$(SED) 's/^.*$(UCLIBC_SPARC_TYPE)[^B].*/$(UCLIBC_SPARC_TYPE)=y/g' $(UCLIBC_DIR)/.oldconfig  endif  ifeq ($(UCLIBC_TARGET_ARCH),powerpc) -ifeq ($(BR2_powerpc_8540),y) -	TARGET_POWERPC_CORE_E500:=y -endif -ifeq ($(BR2_powerpc_e500mc),y) -	TARGET_POWERPC_CORE_E500:=y -endif -ifeq ($(TARGET_POWERPC_CORE_E500),y) +ifeq ($(BR2_powerpc_8540)$(BR2_powerpc_e500mc),y)  	/bin/echo "# CONFIG_CLASSIC is not set" >> $(UCLIBC_DIR)/.oldconfig  	/bin/echo "CONFIG_E500=y" >> $(UCLIBC_DIR)/.oldconfig  else | 
