diff options
author | Simon Glass | 2013-03-11 06:50:01 +0000 |
---|---|---|
committer | Tom Rini | 2013-03-15 16:14:00 -0400 |
commit | 660c60c4e70c1f8369e7fc4e23b3bc10e01f1199 (patch) | |
tree | b6db87d77f0c533d49b8e472e77d3ddb42b6d14f /arch/powerpc/lib | |
parent | c2240d4dbef98f0bc5f5e99324d1eef8d6e9acdf (diff) |
ppc: Enable generic board support
This enables generic board support so that ppc boards can define
CONFIG_SYS_GENERIC_BOARD.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/powerpc/lib')
-rw-r--r-- | arch/powerpc/lib/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/lib/Makefile b/arch/powerpc/lib/Makefile index 86cf02ace41..59c723b0709 100644 --- a/arch/powerpc/lib/Makefile +++ b/arch/powerpc/lib/Makefile @@ -59,8 +59,10 @@ SOBJS-y += reloc.o COBJS-$(CONFIG_BAT_RW) += bat_rw.o ifndef CONFIG_SPL_BUILD +ifndef CONFIG_SYS_GENERIC_BOARD COBJS-y += board.o endif +endif COBJS-y += bootm.o COBJS-y += cache.o COBJS-y += extable.o |