]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
kconfig: rename zconf.y to parser.y
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Thu, 24 Jan 2019 10:47:30 +0000 (19:47 +0900)
committerMasahiro Yamada <yamada.masahiro@socionext.com>
Wed, 13 Feb 2019 14:25:58 +0000 (23:25 +0900)
Use a more logical name.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
scripts/kconfig/Makefile
scripts/kconfig/expr.h
scripts/kconfig/lexer.l
scripts/kconfig/parser.y [moved from scripts/kconfig/zconf.y with 100% similarity]

index 9278519dbcf3e706bf94c3c8a6541ce0e3915d1b..7c5dc31c1d95d5ff0efa106ab38351d929c0ae08 100644 (file)
@@ -143,11 +143,12 @@ help:
 
 # ===========================================================================
 # object files used by all kconfig flavours
-common-objs    := confdata.o expr.o lexer.lex.o preprocess.o symbol.o zconf.tab.o
+common-objs    := confdata.o expr.o lexer.lex.o parser.tab.o preprocess.o \
+                  symbol.o
 
-$(obj)/lexer.lex.o: $(obj)/zconf.tab.h
+$(obj)/lexer.lex.o: $(obj)/parser.tab.h
 HOSTCFLAGS_lexer.lex.o := -I$(src)
-HOSTCFLAGS_zconf.tab.o := -I$(src)
+HOSTCFLAGS_parser.tab.o        := -I$(src)
 
 # conf: Used for defconfig, oldconfig and related targets
 hostprogs-y    += conf
index 999edb60cd53e9808cb8b156b80a6341f814cc46..8dde65bc3165b7d5c38ff92a2a9e18df8abeb469 100644 (file)
@@ -172,7 +172,7 @@ struct symbol {
  *         int "BAZ Value"
  *         range 1..255
  *
- * Please, also check zconf.y:print_symbol() when modifying the
+ * Please, also check parser.y:print_symbol() when modifying the
  * list of property types!
  */
 enum prop_type {
index b2d0a3b0bce92294a4d0c7a84ccef12c8ac8a131..c9df1c8b982494cecdf8751ccf0275e14c07d35e 100644 (file)
@@ -15,7 +15,7 @@
 #include <unistd.h>
 
 #include "lkc.h"
-#include "zconf.tab.h"
+#include "parser.tab.h"
 
 #define YY_DECL                static int yylex1(void)