From patchwork Tue Oct 9 22:46:33 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Yann E. MORIN" X-Patchwork-Id: 1571761 Return-Path: X-Original-To: patchwork-linux-kbuild@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id A8A2DE0004 for ; Tue, 9 Oct 2012 22:46:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755016Ab2JIWqk (ORCPT ); Tue, 9 Oct 2012 18:46:40 -0400 Received: from smtp08.smtpout.orange.fr ([80.12.242.130]:32425 "EHLO smtp.smtpout.orange.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755638Ab2JIWqj (ORCPT ); Tue, 9 Oct 2012 18:46:39 -0400 Received: from treguer.bzh.lan ([90.32.124.216]) by mwinf5d15 with ME id 9Amb1k0064gEsci03AmdFm; Wed, 10 Oct 2012 00:46:37 +0200 From: "Yann E. MORIN" To: linux-kbuild@vger.kernel.org Cc: Michal Marek , "Yann E. MORIN" Subject: [PATCH 3/3] kconfig: get CONFIG_ prefix from the environment Date: Wed, 10 Oct 2012 00:46:33 +0200 Message-Id: <1349822793-1227-4-git-send-email-yann.morin.1998@free.fr> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1349822793-1227-1-git-send-email-yann.morin.1998@free.fr> References: <1349822793-1227-1-git-send-email-yann.morin.1998@free.fr> Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org Currently, the CONFIG_ prefix is hard-coded in the kconfig frontends executables. This means that two projects that use kconfig with different prefixes can not share the same kconfig frontends. Instead of hard-coding the prefix in the frontends, get it from the environment, and revert back to hard-coded value if not found. Signed-off-by: "Yann E. MORIN" --- scripts/kconfig/gconf.c | 2 +- scripts/kconfig/lkc.h | 2 ++ scripts/kconfig/nconf.c | 1 + 3 files changed, 4 insertions(+), 1 deletions(-) diff --git a/scripts/kconfig/gconf.c b/scripts/kconfig/gconf.c index adc2306..f2bee70 100644 --- a/scripts/kconfig/gconf.c +++ b/scripts/kconfig/gconf.c @@ -10,6 +10,7 @@ # include #endif +#include #include "lkc.h" #include "images.c" @@ -22,7 +23,6 @@ #include #include #include -#include //#define DEBUG diff --git a/scripts/kconfig/lkc.h b/scripts/kconfig/lkc.h index 25862fd..afa592a 100644 --- a/scripts/kconfig/lkc.h +++ b/scripts/kconfig/lkc.h @@ -41,6 +41,8 @@ extern "C" { #define __stringify(x...) __stringify_1(x) static inline const char *CONFIG_prefix(void) { + if( getenv( "CONFIG_" ) ) + return getenv( "CONFIG_" ); return __stringify(CONFIG_); } #ifdef CONFIG_ diff --git a/scripts/kconfig/nconf.c b/scripts/kconfig/nconf.c index 8854fd1..1bb76f4 100644 --- a/scripts/kconfig/nconf.c +++ b/scripts/kconfig/nconf.c @@ -7,6 +7,7 @@ */ #define _GNU_SOURCE #include +#include #include "lkc.h" #include "nconf.h"