> hm, then what is the standard way to make a new kernel option default-Y?
> At least for the development kernel, a default-enabled kksymoops sounds
> like the right way to go.
There isn't really any. You can do
define_bool CONFIG_KALLSYMS y
for two releases and hope to propagate it into people's .config before
making it an actual choice in config.in.
Or you can hack something up like
if [ "$CONFIG_KALLSYMS" = "" ]; then
define_bool CONFIG_KALLSYMS y
fi
bool 'kallsyms' CONFIG_KALLSYMS
which gives the desired effect in make oldconfig, but may magically break
make xconfig or so.
So no, just hope for people to read the help text and enable it.
--Kai
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/