[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20130108180525.GA23773@pengutronix.de>
Date: Tue, 8 Jan 2013 19:05:26 +0100
From: Michael Grzeschik <m.grzeschik@...gutronix.de>
To: linux-kernel@...r.kernel.org
Cc: mmarek@...e.cz, sam@...nborg.org, james.hogan@...tec.com,
lliubbo@...il.com
Subject: [PATCH] scripts/link-vmlinux.sh: source variables from KCONFIG_CONFIG
Its possible to superseed the config file with KCONFIG_CONFIG and have
completely no .config in the tree. The current script is sourcing
.config in every case, so the kernel will never build succesfully. This
patch fixes that issue by sourcing KCONFIG_CONFIG instead.
Signed-off-by: Michael Grzeschik <m.grzeschik@...gutronix.de>
---
scripts/link-vmlinux.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/link-vmlinux.sh b/scripts/link-vmlinux.sh
index b3d907e..e62f1e0 100644
--- a/scripts/link-vmlinux.sh
+++ b/scripts/link-vmlinux.sh
@@ -132,7 +132,7 @@ if [ "$1" = "clean" ]; then
fi
# We need access to CONFIG_ symbols
-. ./.config
+. ${KCONFIG_CONFIG}
#link vmlinux.o
info LD vmlinux.o
--
1.7.10.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists