summaryrefslogtreecommitdiff
path: root/kconfig-frontends/libs/parser/yconf.y.patch
diff options
context:
space:
mode:
authorChristian Eppler <c.eppler@linutonix.de>2013-05-13 16:22:27 +0200
committerChristian Eppler <c.eppler@linutonix.de>2013-05-13 16:22:27 +0200
commit9e05689406c83ae3020ca32a6ec6387466209138 (patch)
tree20a95a65df7e46b584c666ec74850df6d62b3045 /kconfig-frontends/libs/parser/yconf.y.patch
parentcea5039322781f6085dd47954af5584ca3f78911 (diff)
Implement Kconfig build system
Signed-off-by: Christian Eppler <c.eppler@linutonix.de>
Diffstat (limited to 'kconfig-frontends/libs/parser/yconf.y.patch')
-rw-r--r--kconfig-frontends/libs/parser/yconf.y.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/kconfig-frontends/libs/parser/yconf.y.patch b/kconfig-frontends/libs/parser/yconf.y.patch
new file mode 100644
index 0000000..dc8f0e9
--- /dev/null
+++ b/kconfig-frontends/libs/parser/yconf.y.patch
@@ -0,0 +1,29 @@
+--- a/libs/parser/yconf.y 2012-01-12 22:37:17.582339777 +0100
++++ b/libs/parser/yconf.y 2012-03-03 23:55:29.889737630 +0100
+@@ -96,7 +96,7 @@
+
+ %{
+ /* Include zconf.hash.c here so it can see the token constants. */
+-#include "zconf.hash.c"
++#include "hconf.c"
+ %}
+
+ %%
+@@ -496,7 +496,7 @@
+ modules_sym = sym_lookup(NULL, 0);
+ modules_sym->type = S_BOOLEAN;
+ modules_sym->flags |= SYMBOL_AUTO;
+- rootmenu.prompt = menu_add_prompt(P_MENU, "Linux Kernel Configuration", NULL);
++ rootmenu.prompt = menu_add_prompt(P_MENU, ROOTMENU, NULL);
+
+ if (getenv("ZCONF_DEBUG"))
+ zconfdebug = 1;
+@@ -732,7 +732,7 @@
+ }
+ }
+
+-#include "zconf.lex.c"
++#include "lconf.c"
+ #include "util.c"
+ #include "confdata.c"
+ #include "expr.c"