From: Jukka Kaartinen <jukka.kaartinen@xxxxxxxxxxxxxx> Me, Jouni Högander and Lukas Bulwahn are working on to improve syzkaller with configuration bisect feature: https://github.com/google/syzkaller/pull/1689 For that we need to set kernel configurations without human interaction. Currently there are no tools to set config options on if it has dependencies without human interaction if dependencies are not known beforehand. I found this old patch from Dan Carpenter https://patchwork.kernel.org/patch/6387181/ that can handle the dependencies using only commandline and with a small feature added it can be automated to say "yes" to all dependencies. Dan Carpenter (1): kconfig: a new command line tool to set configs Jukka Kaartinen (1): kconfig: Extend kconfig with setall option scripts/kconfig/Makefile | 7 + scripts/kconfig/kconfig | 83 ++++++++++ scripts/kconfig/lconf.c | 328 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 418 insertions(+) create mode 100755 scripts/kconfig/kconfig create mode 100644 scripts/kconfig/lconf.c -- 2.17.1