build: add missing $(AR)->$(cmd_link_o_target) updateSeems people fixed their files to use libfoo.o, but didn't actuallyupdate the creation targets to use $(cmd_link_o_target). Update therest of
build: add missing $(AR)->$(cmd_link_o_target) updateSeems people fixed their files to use libfoo.o, but didn't actuallyupdate the creation targets to use $(cmd_link_o_target). Update therest of the Makefile's found with grep.Signed-off-by: Mike Frysinger <vapier@gentoo.org>Tested-by: Simon Glass <sjg@chromium.org>
show more ...
punt unused clean/distclean targetsThe top level Makefile does not do any recursion into subdirs whencleaning, so these clean/distclean targets in random arch/board dirsnever get used. Punt them
punt unused clean/distclean targetsThe top level Makefile does not do any recursion into subdirs whencleaning, so these clean/distclean targets in random arch/board dirsnever get used. Punt them all.MAKEALL didn't report any errors related to this that I could see.Signed-off-by: Mike Frysinger <vapier@gentoo.org>
arm: tegra2: fix out-of-tree buildThe out-of-tree build fails because the Makefiles in question depend onsource files of another directory but do not explicitly mkdir thatdirectory.As a matter
arm: tegra2: fix out-of-tree buildThe out-of-tree build fails because the Makefiles in question depend onsource files of another directory but do not explicitly mkdir thatdirectory.As a matter of fact, other Makefiles under board/*/ directory that referto source files under another directory explicitly call mkdir.This patch adds explicit mkdir's to the Makefiles in question, andverifies that out-of-tree build is working.Signed-off-by: Che-Liang Chiou <clchiou@chromium.org>Cc: Albert Aribaud <albert.u.boot@aribaud.net>
arm: Tegra2: Move clk/mux init to board_early_init_f, add GPIO initSigned-off-by: Tom Warren <twarren@nvidia.com>
arm: Tegra2: Add support for NVIDIA Harmony boardSigned-off-by: Tom Warren <twarren@nvidia.com>
12