diff options
author | Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com> | 2006-12-20 16:11:57 +0100 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-01-24 21:08:13 +1100 |
commit | 63ea9c1710f05a7309c272750bbf40134c628f36 (patch) | |
tree | 1bfc753c76e0bac4d020874d43acaf9375540f09 | |
parent | 9ee79a3d372fcb6729893437f4923c5efd1f85db (diff) |
[POWERPC] PS3: Fix uniprocessor kernel build
Allow to build a uniprocessor kernel for PS3.
Signed-off-by: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
-rw-r--r-- | arch/powerpc/platforms/ps3/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/ps3/Makefile b/arch/powerpc/platforms/ps3/Makefile index 3757cfabc8c..1994904f580 100644 --- a/arch/powerpc/platforms/ps3/Makefile +++ b/arch/powerpc/platforms/ps3/Makefile @@ -1,4 +1,5 @@ -obj-y += setup.o mm.o smp.o time.o hvcall.o htab.o repository.o +obj-y += setup.o mm.o time.o hvcall.o htab.o repository.o obj-y += interrupt.o exports.o os-area.o +obj-$(CONFIG_SMP) += smp.o obj-$(CONFIG_SPU_BASE) += spu.o |