From Bugzilla Helper: User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.8a4) Gecko/20040927 Description of problem: The SUSE distributions have an additional make target called 'cloneconfig'. This target creates a .config file that matches the currently running kernel. All it does is copy /proc/config.gz to .config and then configure the kernel. However, the real value of this is that all SUSE version ship with /proc/config.gz turned on by default. This makes it trivial to rebuild the kernel with the same options as it was installed. At our company, we have a driver that works with several different 2.4 and 2.6 kernels, and our number one problem is getting our customers to have a properly configured kernel so that they can build our driver. Customers who have SUSE Linux are much easier to work with than users of other distros, mainly because of 'cloneconfig'. Version-Release number of selected component (if applicable): How reproducible: Always Steps to Reproduce: N/A Additional info:
cp /boot/config-`uname -r` .config make oldconfig The /proc stuff is not going to be enabled, as it serves no purpose other than to waste memory for 99% of users.