diff options
author | Graeme Russ <graeme.russ@gmail.com> | 2011-12-23 16:51:29 +1100 |
---|---|---|
committer | Graeme Russ <graeme.russ@gmail.com> | 2012-01-04 22:41:32 +1100 |
commit | d47ab0ecde1c9a66acbaf421ddd92c888d2ef344 (patch) | |
tree | 51fcc96108a54f16c31a16f060414da24f10d9c9 /arch/x86/lib/Makefile | |
parent | b156ff09aad5a54b5a47b940ebc26aeeae56ee07 (diff) | |
download | u-boot-imx-d47ab0ecde1c9a66acbaf421ddd92c888d2ef344.zip u-boot-imx-d47ab0ecde1c9a66acbaf421ddd92c888d2ef344.tar.gz u-boot-imx-d47ab0ecde1c9a66acbaf421ddd92c888d2ef344.tar.bz2 |
x86: Split init functions out of board.c
This patch moves towards reducing board.c to simply a set of init cores for
the three initialisation phases (Flash, Flash/RAM, and RAM), a set of three
init function arrays and a init function array processing function
Diffstat (limited to 'arch/x86/lib/Makefile')
-rw-r--r-- | arch/x86/lib/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/lib/Makefile b/arch/x86/lib/Makefile index 57b6896..51836da 100644 --- a/arch/x86/lib/Makefile +++ b/arch/x86/lib/Makefile @@ -34,6 +34,8 @@ COBJS-y += board.o COBJS-y += bootm.o COBJS-y += cmd_boot.o COBJS-y += gcc.o +COBJS-y += init_helpers.o +COBJS-y += init_wrappers.o COBJS-y += interrupts.o COBJS-$(CONFIG_SYS_PCAT_INTERRUPTS) += pcat_interrupts.o COBJS-$(CONFIG_SYS_GENERIC_TIMER) += pcat_timer.o |