diff options
author | Rajeshwari Birje <rajeshwari.s@samsung.com> | 2013-12-26 09:44:17 +0530 |
---|---|---|
committer | Minkyu Kang <mk7.kang@samsung.com> | 2013-12-30 16:50:34 +0900 |
commit | 71ebb33559696ca41fe0db5fa882112464ade9c0 (patch) | |
tree | 6248d58bdec6c294d4aa6c6082ff9d2052bf1d7d /board/samsung/common/Makefile | |
parent | 2931fa4db349c97f882ffda42e901208654b5ca9 (diff) | |
download | u-boot-71ebb33559696ca41fe0db5fa882112464ade9c0.tar.gz |
EXYNOS5: Create a common board file
Create a common board.c file for all functions which are common across
all EXYNOS5 platforms.
exynos_init function is provided for platform specific code.
Signed-off-by: Rajeshwari S Shinde <rajeshwari.s@samsung.com>
Acked-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'board/samsung/common/Makefile')
-rw-r--r-- | board/samsung/common/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/board/samsung/common/Makefile b/board/samsung/common/Makefile index 501d9744e4..22bd6b197e 100644 --- a/board/samsung/common/Makefile +++ b/board/samsung/common/Makefile @@ -8,3 +8,7 @@ obj-$(CONFIG_SOFT_I2C_MULTI_BUS) += multi_i2c.o obj-$(CONFIG_THOR_FUNCTION) += thor.o obj-$(CONFIG_CMD_USB_MASS_STORAGE) += ums.o + +ifndef CONFIG_SPL_BUILD +obj-$(CONFIG_BOARD_COMMON) += board.o +endif |