diff options
| author | Simon Glass <sjg@chromium.org> | 2013-03-11 06:49:57 +0000 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-03-15 16:14:00 -0400 | 
| commit | 959daa21d4da6a7d3f1afa682395066bf9a9e48d (patch) | |
| tree | 0f05e184c6af260ad14bab7b4ed8681ced6b3ad0 /arch/arm/lib | |
| parent | ea8c37da8eefbb5253b6c2990269f23abac3e97d (diff) | |
| download | olio-uboot-2014.01-959daa21d4da6a7d3f1afa682395066bf9a9e48d.tar.xz olio-uboot-2014.01-959daa21d4da6a7d3f1afa682395066bf9a9e48d.zip | |
arm: Enable generic board support
This enables generic board support so that ARM boards can define
CONFIG_SYS_GENERIC_BOARD.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/arm/lib')
| -rw-r--r-- | arch/arm/lib/Makefile | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/arch/arm/lib/Makefile b/arch/arm/lib/Makefile index 57111afd9..24c7e7a18 100644 --- a/arch/arm/lib/Makefile +++ b/arch/arm/lib/Makefile @@ -39,7 +39,10 @@ GLCOBJS	+= div0.o  SOBJS-y += crt0.o  ifndef CONFIG_SPL_BUILD +ifndef CONFIG_SYS_GENERIC_BOARD  COBJS-y	+= board.o +endif +  COBJS-y	+= bootm.o  COBJS-$(CONFIG_SYS_L2_PL310) += cache-pl310.o  SOBJS-$(CONFIG_USE_ARCH_MEMSET) += memset.o |