aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kconfig/lexer.l (follow)
AgeCommit message (Collapse)AuthorFilesLines
2019-05-14kconfig: use snprintf for formatting pathnamesJacob Garber1-1/+2
Valid pathnames will never exceed PATH_MAX, but these file names are unsanitized and can cause buffer overflow if set incorrectly. Use snprintf to avoid this. This was flagged during a Coverity scan of the coreboot project, which also uses kconfig for its build system. Signed-off-by: Jacob Garber <jgarber1@ualberta.ca> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2019-02-13kconfig: rename zconf.y to parser.yMasahiro Yamada1-1/+1
Use a more logical name. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2019-02-13kconfig: rename zconf.l to lexer.lMasahiro Yamada1-0/+470
Use a more logical name. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>