Bläddra i källkod

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>
Peter Korsgaard 15 år sedan
förälder
incheckning
319a4751c4
2 ändrade filer med 2 tillägg och 2 borttagningar
  1. 0 2
      Makefile
  2. 2 0
      target/Makefile.in

+ 0 - 2
Makefile

@@ -320,8 +320,6 @@ ifeq ($(BR2_ENABLE_LOCALE_PURGE),y)
 TARGETS+=target-purgelocales
 endif
 
-include fs/common.mk
-
 # target stuff is last so it can override anything else
 include target/Makefile.in
 

+ 2 - 0
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.