aboutsummaryrefslogtreecommitdiffstats
path: root/dts
diff options
context:
space:
mode:
authorMasahiro Yamada2014-02-04 02:24:28 -0600
committerTom Rini2014-02-19 10:07:50 -0600
commit6825a95b0ba72c4e5667d02d8b31986e2e9abd5a (patch)
treef4c6e81fa45afba6662781eeee3f32b11f0b090d /dts
parent22433fc54b19b0578c43a9983fa45f22ca262a0f (diff)
downloadu-boot-6825a95b0ba72c4e5667d02d8b31986e2e9abd5a.tar.gz
u-boot-6825a95b0ba72c4e5667d02d8b31986e2e9abd5a.tar.xz
u-boot-6825a95b0ba72c4e5667d02d8b31986e2e9abd5a.zip
kbuild: use Linux Kernel build scripts
Now we are ready to switch over to real Kbuild. This commit disables temporary scripts: scripts/{Makefile.build.tmp, Makefile.host.tmp} and enables real Kbuild scripts: scripts/{Makefile.build,Makefile.host,Makefile.lib}. This switch is triggered by the line in scripts/Kbuild.include -build := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.build.tmp obj +build := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.build obj We need to adjust some build scripts for U-Boot. But smaller amount of modification is preferable. Additionally, we need to fix compiler flags which are locally added or removed. In Kbuild, it is not allowed to change CFLAGS locally. Instead, ccflags-y, asflags-y, cppflags-y, CFLAGS_$(basetarget).o, CFLAGS_REMOVE_$(basetarget).o are prepared for that purpose. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Tested-by: Gerhard Sittig <gsi@denx.de>
Diffstat (limited to 'dts')
-rw-r--r--dts/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/dts/Makefile b/dts/Makefile
index d81f32d914..cc6ecf66eb 100644
--- a/dts/Makefile
+++ b/dts/Makefile
@@ -36,7 +36,7 @@ process_lds = \
36 $(1) | sed -r -n 's/^OUTPUT_$(2)[ ("]*([^")]*).*/\1/p' 36 $(1) | sed -r -n 's/^OUTPUT_$(2)[ ("]*([^")]*).*/\1/p'
37 37
38# Run the compiler and get the link script from the linker 38# Run the compiler and get the link script from the linker
39GET_LDS = $(CC) $(CFLAGS) $(LDFLAGS) -Wl,--verbose 2>&1 39GET_LDS = $(CC) $(c_flags) $(ld_flags) -Wl,--verbose 2>&1
40 40
41$(obj)/dt.o: $(DT_BIN) 41$(obj)/dt.o: $(DT_BIN)
42 # We want the output format and arch. 42 # We want the output format and arch.