diff options
| author | Simon Glass <[email protected]> | 2013-03-11 06:49:53 +0000 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2013-03-15 16:13:59 -0400 |
| commit | 1938f4a5b62fc03c52b47697a89b2bb47b77c90c (patch) | |
| tree | de3f0cdbd68d2f74dff99aa134ba080dd5891bdc /common/Makefile | |
| parent | a6741bce507151f561250a00f28bcbfb2372ba02 (diff) | |
Introduce generic pre-relocation board_f.c
This file handles common pre-relocation init for boards which use
the generic framework.
It starts up the console, DRAM, performs relocation and then jumps
to post-relocation init.
Signed-off-by: Simon Glass <[email protected]>
Tested-by: Wolfgang Denk <[email protected]>
Acked-by: Wolfgang Denk <[email protected]>
Diffstat (limited to 'common/Makefile')
| -rw-r--r-- | common/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/Makefile b/common/Makefile index 719fc231b88..a5f5b1a5886 100644 --- a/common/Makefile +++ b/common/Makefile @@ -36,6 +36,9 @@ COBJS-y += s_record.o COBJS-y += xyzModem.o COBJS-y += cmd_disk.o +# boards +COBJS-$(CONFIG_SYS_GENERIC_BOARD) += board_f.o + # core command COBJS-y += cmd_boot.o COBJS-$(CONFIG_CMD_BOOTM) += cmd_bootm.o |
