diff options
author | Scott Wood <scottwood@freescale.com> | 2012-12-06 13:33:17 +0000 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2012-12-19 17:45:44 -0600 |
commit | 06f60ae3e454e15a410a0d4e96769bf938af8fcb (patch) | |
tree | 782054a8a7c564a760bd612f07c4ec455c1782a9 /arch/powerpc/lib | |
parent | 74752baa738ee9dafe69d726910e26da56f6f722 (diff) |
powerpc/mpc83xx: add support for new SPL
This adds arch support for PPC mpc83xx to boot "minimal" (4K) SPLs
using the new infrastructure.
Existing nand_spl targets are updated to deal with the name change
from nand_init.c to spl_minimal.c (as in theory this isn't limited
to NAND anymore).
Signed-off-by: Scott Wood <scottwood@freescale.com>
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Diffstat (limited to 'arch/powerpc/lib')
-rw-r--r-- | arch/powerpc/lib/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/powerpc/lib/Makefile b/arch/powerpc/lib/Makefile index 844fe8636d..86cf02ace4 100644 --- a/arch/powerpc/lib/Makefile +++ b/arch/powerpc/lib/Makefile @@ -47,7 +47,8 @@ endif endif ifdef MINIMAL -COBJS-y += cache.o +COBJS-y += cache.o time.o +SOBJS-y += ticks.o else SOBJS-y += ppcstring.o |