libattr: remove libattr because it is clashing with udev/attr and is not used by...
[openembedded.git] / recipes / linux / linux-efika-2.6.20 / 0005-powerpc-Restore-proper-link-order-in-platform.txt
blob0b4bbe337630bba457758ffec5a5f76eadbcf608
1 From 720e2caeeff0d9585d5627d29ffd660a5a9d9f88 Mon Sep 17 00:00:00 2001
2 From: Sylvain Munaut <tnt@246tNt.com>
3 Date: Sat, 23 Dec 2006 20:43:39 +0100
4 Subject: [PATCH] [PATCH] powerpc: Restore 'proper' link order in platform
6 The 52xx was put before CHRP to allow EFIKA to be recognized
7 properly. Now the efika tree is fixed up in prom_init so
8 no need for this ugly hack. So we restore the 'normal'
9 order.
11 Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
12 ---
13  arch/powerpc/platforms/Makefile |    2 +-
14  1 files changed, 1 insertions(+), 1 deletions(-)
16 diff --git a/arch/powerpc/platforms/Makefile b/arch/powerpc/platforms/Makefile
17 index 507d1b9..44d95ea 100644
18 --- a/arch/powerpc/platforms/Makefile
19 +++ b/arch/powerpc/platforms/Makefile
20 @@ -5,9 +5,9 @@ ifeq ($(CONFIG_PPC64),y)
21  obj-$(CONFIG_PPC_PMAC)         += powermac/
22  endif
23  endif
24 -obj-$(CONFIG_PPC_MPC52xx)      += 52xx/
25  obj-$(CONFIG_PPC_CHRP)         += chrp/
26  obj-$(CONFIG_4xx)              += 4xx/
27 +obj-$(CONFIG_PPC_MPC52xx)      += 52xx/
28  obj-$(CONFIG_PPC_83xx)         += 83xx/
29  obj-$(CONFIG_PPC_85xx)         += 85xx/
30  obj-$(CONFIG_PPC_86xx)         += 86xx/
31 -- 
32 1.4.4.2