summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorPeter Korsgaard2010-05-21 16:19:11 +0200
committerPeter Korsgaard2010-05-21 16:19:11 +0200
commit319a4751c4a3a0209f628a7470a6d8e400d3479d (patch)
treea2c0605649a325e5928f73d6a24f8c1138aa341d /target
parentqt: update x86x86fix for 32bit pc hosts (diff)
downloadbuildroot-319a4751c4a3a0209f628a7470a6d8e400d3479d.tar.gz
buildroot-319a4751c4a3a0209f628a7470a6d8e400d3479d.tar.xz
buildroot-319a4751c4a3a0209f628a7470a6d8e400d3479d.zip
Makefile: move filesystem stuff after u-boot build again
Otherwise u-boot tools / kernel modules are only added to target AFTER the filesystems are built. Long term u-boot/kernel stuff should get splitted from target/device, but this is the safest solution for now. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'target')
-rw-r--r--target/Makefile.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/target/Makefile.in b/target/Makefile.in
index afe96a7f0..ffcdbb64e 100644
--- a/target/Makefile.in
+++ b/target/Makefile.in
@@ -62,6 +62,8 @@ ifeq ($(BR2_TARGET_UBOOT),y)
include target/u-boot/Makefile.in
endif
+include fs/common.mk
+
# kernel rules
# We already did add the kernel target to TARGETS and now just pull in the rules
# to actually build this target.