diff options
author | Philippe Reynes <tremyfr@yahoo.fr> | 2014-05-05 09:52:13 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-05-19 00:31:53 +0200 |
commit | 00b1ff615634c1d90531cc684a657af71b1465d4 (patch) | |
tree | 46699deccbded7ba6f85898fe345e6a9091429b2 /Makefile | |
parent | 1a2f21b1273c91fddb4650b42bce8317566b4410 (diff) | |
download | buildroot-00b1ff615634c1d90531cc684a657af71b1465d4.tar.gz buildroot-00b1ff615634c1d90531cc684a657af71b1465d4.zip |
Makefile: move fs/common.mk above external.mk
The file external.mk was included before fs/common.mk, so it was impossible
to add rootfs targets using the BR2_EXTERNAL mechanism.
This change moves the inclusion of fs/common.mk before external.mk to allow
this.
Signed-off-by: Philippe Reynes <tremyfr@yahoo.fr>
[ThomasDS: rebased, update commit message]
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -387,6 +387,7 @@ include $(sort $(wildcard package/*/*.mk)) include boot/common.mk include linux/linux.mk include system/system.mk +include fs/common.mk include $(BR2_EXTERNAL)/external.mk @@ -400,8 +401,6 @@ ifeq ($(BR2_ECLIPSE_REGISTER),y) TARGETS += toolchain-eclipse-register endif -include fs/common.mk - TARGETS_SOURCE := $(patsubst %,%-source,$(TARGETS)) TARGETS_DIRCLEAN := $(patsubst %,%-dirclean,$(TARGETS)) |