Commit 00b1ff61 authored by Philippe Reynes's avatar Philippe Reynes Committed by Peter Korsgaard
Browse files

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: default avatarPhilippe Reynes <tremyfr@yahoo.fr>
[ThomasDS: rebased, update commit message]
Signed-off-by: default avatarThomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent 1a2f21b1
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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))