aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--init/Kconfig8
-rw-r--r--scripts/kconfig/symbol.c15
2 files changed, 8 insertions, 15 deletions
diff --git a/init/Kconfig b/init/Kconfig
index 288444b4cd8a..0d0bbf218f1f 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -1,3 +1,11 @@
1config ARCH
2 string
3 option env="ARCH"
4
5config KERNELVERSION
6 string
7 option env="KERNELVERSION"
8
1config DEFCONFIG_LIST 9config DEFCONFIG_LIST
2 string 10 string
3 depends on !UML 11 depends on !UML
diff --git a/scripts/kconfig/symbol.c b/scripts/kconfig/symbol.c
index 99e3d02d1cfc..3929e5b35e79 100644
--- a/scripts/kconfig/symbol.c
+++ b/scripts/kconfig/symbol.c
@@ -47,7 +47,6 @@ void sym_init(void)
47{ 47{
48 struct symbol *sym; 48 struct symbol *sym;
49 struct utsname uts; 49 struct utsname uts;
50 char *p;
51 static bool inited = false; 50 static bool inited = false;
52 51
53 if (inited) 52 if (inited)
@@ -56,20 +55,6 @@ void sym_init(void)
56 55
57 uname(&uts); 56 uname(&uts);
58 57
59 sym = sym_lookup("ARCH", 0);
60 sym->type = S_STRING;
61 sym->flags |= SYMBOL_AUTO;
62 p = getenv("ARCH");
63 if (p)
64 sym_add_default(sym, p);
65
66 sym = sym_lookup("KERNELVERSION", 0);
67 sym->type = S_STRING;
68 sym->flags |= SYMBOL_AUTO;
69 p = getenv("KERNELVERSION");
70 if (p)
71 sym_add_default(sym, p);
72
73 sym = sym_lookup("UNAME_RELEASE", 0); 58 sym = sym_lookup("UNAME_RELEASE", 0);
74 sym->type = S_STRING; 59 sym->type = S_STRING;
75 sym->flags |= SYMBOL_AUTO; 60 sym->flags |= SYMBOL_AUTO;