summaryrefslogtreecommitdiff
path: root/extra/config/zconf.tab.h
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-10-31 18:20:21 +0000
committerEric Andersen <andersen@codepoet.org>2002-10-31 18:20:21 +0000
commit6737908f74ff566748864548cf35bb1da8e64af6 (patch)
tree6eeafda4548f49d960e1b597c880a810a08a66f0 /extra/config/zconf.tab.h
parentc734e7ca57f520e55236b21eaef16ac40099a378 (diff)
Ok, this commit is _huge_ and its gonna change the world. I've
been working on a new config system on and off for about 6 months now, but I've never been fully satisfied. Well, I'm finally am happy with the new config system, so here it is. This completely removes the old uClibc configuration system, and replaces it with an entirely new system based on LinuxKernelConf, from http://www.xs4all.nl/~zippel/lc/ As it turns out, Linus has just merged LinuxKernelConf into Linux 2.5.45, so it looks like I made the right choice. I have thus far updated only x86. I'll be updating the other architectures shortly. -Erik
Diffstat (limited to 'extra/config/zconf.tab.h')
-rw-r--r--extra/config/zconf.tab.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/extra/config/zconf.tab.h b/extra/config/zconf.tab.h
new file mode 100644
index 000000000..1dcffa989
--- /dev/null
+++ b/extra/config/zconf.tab.h
@@ -0,0 +1,53 @@
+#ifndef BISON_ZCONF_TAB_H
+# define BISON_ZCONF_TAB_H
+
+#ifndef YYSTYPE
+typedef union
+{
+ int token;
+ char *string;
+ struct symbol *symbol;
+ struct expr *expr;
+ struct menu *menu;
+} yystype;
+# define YYSTYPE yystype
+# define YYSTYPE_IS_TRIVIAL 1
+#endif
+# define T_MAINMENU 257
+# define T_MENU 258
+# define T_ENDMENU 259
+# define T_SOURCE 260
+# define T_CHOICE 261
+# define T_ENDCHOICE 262
+# define T_COMMENT 263
+# define T_CONFIG 264
+# define T_HELP 265
+# define T_HELPTEXT 266
+# define T_IF 267
+# define T_ENDIF 268
+# define T_DEPENDS 269
+# define T_REQUIRES 270
+# define T_OPTIONAL 271
+# define T_PROMPT 272
+# define T_DEFAULT 273
+# define T_TRISTATE 274
+# define T_BOOLEAN 275
+# define T_INT 276
+# define T_HEX 277
+# define T_WORD 278
+# define T_STRING 279
+# define T_UNEQUAL 280
+# define T_EOF 281
+# define T_EOL 282
+# define T_CLOSE_PAREN 283
+# define T_OPEN_PAREN 284
+# define T_ON 285
+# define T_OR 286
+# define T_AND 287
+# define T_EQUAL 288
+# define T_NOT 289
+
+
+extern YYSTYPE zconflval;
+
+#endif /* not BISON_ZCONF_TAB_H */