Enable the LUV module and debugging options (running 'make menuconfig
ARCH=i386' is easier but the following can be done as well). Also, we will
disable loadable module support, so all modules will be built directly into the
kernel (static modules). This eases our example.
sed -i -e 's/.*CONFIG_LUV .*$/CONFIG_LUV=y/' .config
sed -i -e 's/.*CONFIG_DEBUG_KERNEL .*$/CONFIG_DEBUG_KERNEL=y/' .config
sed -i -e 's/.*CONFIG_DEBUG_INFO .*$/CONFIG_DEBUG_INFO=y/' .config
sed -i -e 's/^CONFIG_MODULES/#CONFIG_MODULES/' .config