From ff984a2960dd7bd59e5b6a592e1825a20af7d00d Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Tue, 24 Feb 2015 12:47:18 +0100 Subject: target/Makefile: fix for ADK_TARGET_KERNEL_CUSTOMISING=n The prepared kernel config wasn't copied to it's final place. --- target/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/target/Makefile b/target/Makefile index 3291862ba..ddb395b55 100644 --- a/target/Makefile +++ b/target/Makefile @@ -106,6 +106,8 @@ config-prepare: $(ADK_TOPDIR)/.config echo "no miniconfig found for target system"; \ exit 1; \ fi + @cd $(BUILD_DIR) && cmp -s .kernelconfig.board .kernelconfig || \ + cp .kernelconfig.board .kernelconfig endif prepare: $(ADK_TARGET_ARCH)-prepare -- cgit v1.2.3