diff options
author | Igor Grinberg <grinberg@compulab.co.il> | 2014-11-03 09:32:18 (GMT) |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-11-06 16:04:40 (GMT) |
commit | a937fd1682625b1f87b555e2af9117fcb2999d7c (patch) | |
tree | 6f39f972c9387f7af48fde11ecc941829debba62 /board/compulab/common/Makefile | |
parent | 52d848695c36d2b6ce688d1403653653e82583b4 (diff) | |
download | u-boot-fsl-qoriq-a937fd1682625b1f87b555e2af9117fcb2999d7c.tar.xz |
compulab: refactor board revision handling
Move board revision handling code to a common location
for further reuse.
Signed-off-by: Igor Grinberg <grinberg@compulab.co.il>
Reviewed-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'board/compulab/common/Makefile')
-rw-r--r-- | board/compulab/common/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/board/compulab/common/Makefile b/board/compulab/common/Makefile index 4044ac9..e343bf0 100644 --- a/board/compulab/common/Makefile +++ b/board/compulab/common/Makefile @@ -6,5 +6,6 @@ # SPDX-License-Identifier: GPL-2.0+ # -obj-$(CONFIG_SYS_I2C) += eeprom.o -obj-$(CONFIG_LCD) += omap3_display.o +obj-y += common.o +obj-$(CONFIG_SYS_I2C) += eeprom.o +obj-$(CONFIG_LCD) += omap3_display.o |