Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3085)

Unified Diff: board/tegra2/harmony/Makefile

Issue 6623073: Chromium: arm: tegra: Add NAND support (Closed) Base URL: http://git.chromium.org/git/u-boot-next.git@chromeos-v2010.09
Patch Set: Restore original common/cmd_cros.c Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: board/tegra2/harmony/Makefile
diff --git a/board/tegra2/harmony/Makefile b/board/tegra2/harmony/Makefile
index b25d4f92041b9273f747f558691cb344181fa0f3..d7d320e217dc5b0978aae5b72bcea8e4e4546f89 100644
--- a/board/tegra2/harmony/Makefile
+++ b/board/tegra2/harmony/Makefile
@@ -30,6 +30,10 @@ ifdef CONFIG_TEGRA2_LCD
$(shell mkdir -p $(obj)../common/lcd)
$(shell mkdir -p $(obj)../common/lcd/gpinit)
endif
+ifdef CONFIG_TEGRA2_NAND
+$(shell mkdir -p $(obj)../common/nand)
+$(shell mkdir -p $(obj)../common/nand/HY27UF084G2B)
+endif
LIB = $(obj)lib$(BOARD).a
@@ -55,6 +59,9 @@ COBJS += ../common/lcd/gpinit/gp-pinmux.o
COBJS += ../common/lcd/gpinit/gp-pinmux-t2-tables.o
COBJS += ../common/lcd/nvboot_lcd.o
endif
+ifdef CONFIG_TEGRA2_NAND
+COBJS += ../common/nand/HY27UF084G2B/tegra2_nand.o
+endif
SRCS := $(COBJS:.o=.c)
OBJS := $(addprefix $(obj),$(COBJS))

Powered by Google App Engine
This is Rietveld 408576698