2cd9764770
This prepares for Ebony/440 support by creating an arch/powerpc/platforms/44x directory. It is populated with a single misc_44x.S file, into which is moved the 44x specific reset code from head_44x.S (on the grounds that we should really stop clogging up the head_* files with random asm helper routines). At the same time, we disable the (empty save Kconfig and Makefile) arch/powerpc/platforms/4xx directory from the arch/powerpc/platforms Makefile. Contrary to the comment in arch/powerpc/platforms/4xx/Makefile, attempting to build such an empty Makefile will fail, thus breaking compile for the 44x platforms we're about to add. It can go back in once we start porting some of the 40x platforms (and thus it becomes non-empty). Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
24 lines
720 B
Makefile
24 lines
720 B
Makefile
ifeq ($(CONFIG_PPC_MERGE),y)
|
|
obj-$(CONFIG_PPC_PMAC) += powermac/
|
|
else
|
|
ifeq ($(CONFIG_PPC64),y)
|
|
obj-$(CONFIG_PPC_PMAC) += powermac/
|
|
endif
|
|
endif
|
|
obj-$(CONFIG_PPC_CHRP) += chrp/
|
|
#obj-$(CONFIG_4xx) += 4xx/
|
|
obj-$(CONFIG_44x) += 44x/
|
|
obj-$(CONFIG_PPC_MPC52xx) += 52xx/
|
|
obj-$(CONFIG_PPC_8xx) += 8xx/
|
|
obj-$(CONFIG_PPC_82xx) += 82xx/
|
|
obj-$(CONFIG_PPC_83xx) += 83xx/
|
|
obj-$(CONFIG_PPC_85xx) += 85xx/
|
|
obj-$(CONFIG_PPC_86xx) += 86xx/
|
|
obj-$(CONFIG_PPC_PSERIES) += pseries/
|
|
obj-$(CONFIG_PPC_ISERIES) += iseries/
|
|
obj-$(CONFIG_PPC_MAPLE) += maple/
|
|
obj-$(CONFIG_PPC_PASEMI) += pasemi/
|
|
obj-$(CONFIG_PPC_CELL) += cell/
|
|
obj-$(CONFIG_PPC_PS3) += ps3/
|
|
obj-$(CONFIG_PPC_CELLEB) += celleb/
|
|
obj-$(CONFIG_EMBEDDED6xx) += embedded6xx/
|