changed back again to kernel 2.6.17.11 for multiple driver issues SCRATCH_INSTALL

git-svn-id: svn://192.168.202.10@303 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mattf
2006-09-27 14:55:48 +00:00
parent 045126f71c
commit c77b8aaecb
+18 -17
View File
@@ -176,13 +176,14 @@ compile the 2.4 kernel that comes with Slackware(2.4.31) start with OPTION 2:
OPTION 1: compile Linux kernel 2.6.17 *RECOMMENDED*
1. cd /usr/src
2. wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.17.13.tar.gz
3. gunzip linux-2.6.17.13.tar.gz
4. tar xvf linux-2.6.17.13.tar
2. wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.17.11.tar.gz
3. gunzip linux-2.6.17.11.tar.gz
4. tar xvf linux-2.6.17.11.tar
5. mv -f /usr/src/linux /usr/src/linux-old
6. ln -s /usr/src/linux-2.6.17.13 /usr/src/linux
7. make mrproper # prep for kernel assembly
8. make menuconfig # launch configuration menu app
6. ln -s /usr/src/linux-2.6.17.11 /usr/src/linux
7. cd linux
8. make mrproper # prep for kernel assembly
9. make menuconfig # launch configuration menu app
(this part is very dependant upon your own hardware)
(what is mentioned below are only changes beyond what is selected by default)
@@ -239,22 +240,22 @@ OPTION 1: compile Linux kernel 2.6.17 *RECOMMENDED*
(important for new Digium Octasic drivers)
EXIT AND SAVE YOUR CONFIGURATION
9. make clean # clean up the kernel build areas
10. make bzImage # create a kernel bzImage
11. make modules # build the modules into the image
12. make modules_install # install kernel modules
13. cp arch/i386/boot/bzImage /boot/bzImage-XXXX # copy image
10. make clean # clean up the kernel build areas
11. make bzImage # create a kernel bzImage
12. make modules # build the modules into the image
13. make modules_install # install kernel modules
14. cp arch/i386/boot/bzImage /boot/bzImage-XXXX # copy image
(put whatever you want in XXXX, that is your new kernel name)
14. cp System.map /boot/System.map-XXXX # copy system map
15. mv -f /boot/System.map /boot/System.map-orig
16. ln -s /boot/System.map-XXXX /boot/System.map # symlink map
15. vi /etc/lilo.conf # edit the lilo boot config file
15. cp System.map /boot/System.map-XXXX # copy system map
16. mv -f /boot/System.map /boot/System.map-orig
17. ln -s /boot/System.map-XXXX /boot/System.map # symlink map
18. vi /etc/lilo.conf # edit the lilo boot config file
image=/boot/bzImage-XXXX # add the new image in above-
label=test-XXXX # the previous one
root=/dev/hda1 # device of root partition
read-only
16. /sbin/lilo # run the lilo reload script
17. shutdown -r 0 # reboot machine and hope it worked
19. /sbin/lilo # run the lilo reload script
20. shutdown -r 0 # reboot machine and hope it worked