Hi,
I installed RH9.0.
Now I need to compile and install the linux-wlan driver. The compilation requires the kernel to be at least configured.
So I choose add/remove application and install kernel source from the RH9.0 installation CD. In the directory "/usr/src/linux-2.4.20-8/" I found something new, such as a Makefile, a 'Document' dir, and etc. HOWEVER, I can not find include dir, why? Ofcause, I can not config the kernel compilation without 'include' directory.
Thanks,
Hill
Quote:
|
Originally Posted by jzh first change the current directory to /usr/src/linux-xxx/include
1. if link 'asm' doesn't exist, use 'ln -s asm-i386 asm'
//generate the kernel config file
2. make menuconfig(config...)
//generate the kernel image file, modules
3. make all
//install modules to /lib/modules/
4. make modules_install
//install the kernel image to /boot
5. make install |