Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
kernel-2.6.17.6 error
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Kernel & Hardware
View previous topic :: View next topic  
Author Message
vintoo
Tux's lil' helper
Tux's lil' helper


Joined: 26 Jun 2005
Posts: 109

PostPosted: Mon Jul 24, 2006 6:35 am    Post subject: kernel-2.6.17.6 error Reply with quote

Dear All,

i downloaded the tar file of kernel-2.6.17.6 and done following step - :

1) Extracted the Kernel into /usr/src/linux-2.6.17.6
2) sylinked the new dir to the dir linux by ln -sf linux-2.6.17.6 linux
3) Ran make oldconfig
4) make && make modules && make modules_modules
5) copied the new bzImage to /boot as kernel-2.6.17.6
6) copied the System.map > System.map-2.6.17.6
7) Edited the lilo.conf and ran /sbin/lilo

now when i restart my gentoo system it shows me first boot screen but then it all goes blank , i can hear hard drives processing noise but then the screen remains blank , what wrong i am doing here ?

thanks in Advance

Vintoo

http://www.vishal-tech.co.uk
Back to top
View user's profile Send private message
sebaro
Veteran
Veteran


Joined: 03 Jul 2006
Posts: 1141
Location: Romania

PostPosted: Mon Jul 24, 2006 8:14 am    Post subject: Reply with quote

Hi

The way i build my kernel:
> make (kernel & modules)
> make install (cp kernel image and system.map to /boot)
> make modules_install (cp kernel modules to /lib/modules/kernel..)
> nano lilo.conf
> lilo
Back to top
View user's profile Send private message
vintoo
Tux's lil' helper
Tux's lil' helper


Joined: 26 Jun 2005
Posts: 109

PostPosted: Mon Jul 24, 2006 8:22 am    Post subject: Reply with quote

thats what i am doing too mate pls check out what i have wrote there

thanks

Vintoo

http://www.vishal-tech.co.uk/
Back to top
View user's profile Send private message
sebaro
Veteran
Veteran


Joined: 03 Jul 2006
Posts: 1141
Location: Romania

PostPosted: Mon Jul 24, 2006 8:54 am    Post subject: Reply with quote

check again lilo.conf
Back to top
View user's profile Send private message
vintoo
Tux's lil' helper
Tux's lil' helper


Joined: 26 Jun 2005
Posts: 109

PostPosted: Mon Jul 24, 2006 8:59 am    Post subject: Reply with quote

here is my lilo.conf

boot =/dev/hda
lba32
prompt
timeout=50
default=gentoo
vga=792
image=/boot/kernel-2.6.17.6
label=gentoo
read-only
root=/dev/hda4

other=/dev/hda1
label=windows
table=/dev/hda


and i dont think there is anything wrong with it
thanks in advance

Vintoo
http://www.vishal-tech.co.uk/
Back to top
View user's profile Send private message
sebaro
Veteran
Veteran


Joined: 03 Jul 2006
Posts: 1141
Location: Romania

PostPosted: Mon Jul 24, 2006 9:51 am    Post subject: Reply with quote

make a new kernel config
> make menuconfig (xconfig)
and build again
Back to top
View user's profile Send private message
vintoo
Tux's lil' helper
Tux's lil' helper


Joined: 26 Jun 2005
Posts: 109

PostPosted: Mon Jul 24, 2006 10:46 am    Post subject: Reply with quote

do you have any specific reason for that ? why should i build a new one why not make oldconfig will work ?/

i have built the kernels like that in past , just not able to understand why its happening this time

if you have some specific reason then do let me know

Thanks in advance

vintoo

http://www.vishal-tech.co.uk/
Back to top
View user's profile Send private message
Paapaa
l33t
l33t


Joined: 14 Aug 2005
Posts: 955
Location: Finland

PostPosted: Mon Jul 24, 2006 11:09 am    Post subject: Reply with quote

A verification: do you see _anything_ after selecting the kernel in the boot? Does the screen go blank immediately?
Back to top
View user's profile Send private message
sebaro
Veteran
Veteran


Joined: 03 Jul 2006
Posts: 1141
Location: Romania

PostPosted: Mon Jul 24, 2006 11:56 am    Post subject: Reply with quote

when i build a new kernel i use the old config too
but, i open it with make xconfig, maybe there are some new/deprecated options in the new kernel

?do u have the old kernel image
?does it boot
?did u reinstall windows
Back to top
View user's profile Send private message
vintoo
Tux's lil' helper
Tux's lil' helper


Joined: 26 Jun 2005
Posts: 109

PostPosted: Wed Jul 26, 2006 10:57 am    Post subject: Reply with quote

Paapaa

yes the screen goes blank immidiately , any clue ?

Thanks in Advance

Vintoo

http://www.vishal-tech.co.uk/
Back to top
View user's profile Send private message
vintoo
Tux's lil' helper
Tux's lil' helper


Joined: 26 Jun 2005
Posts: 109

PostPosted: Sat Jul 29, 2006 6:00 am    Post subject: Reply with quote

folks no clue ? pls help me

Vintoo
http://www.vishal-tech.co.uk/
Back to top
View user's profile Send private message
vintoo
Tux's lil' helper
Tux's lil' helper


Joined: 26 Jun 2005
Posts: 109

PostPosted: Sun Jul 30, 2006 11:57 am    Post subject: Reply with quote

comeon ppl help me with solving this problem .. its just seems i m missing something , pls help me
Vintoo

http://www.vishal-tech.co.uk/
Back to top
View user's profile Send private message
mirojira
l33t
l33t


Joined: 18 Feb 2006
Posts: 685

PostPosted: Sun Jul 30, 2006 1:27 pm    Post subject: Reply with quote

When I make upgrade of the kernel I have available the old kernel too. Here is part of my LILO:
Quote:
image = /boot/bzImage
initrd=/boot/initramfs-genkernel-x86-2.6.15-gentoo-r1
root=/dev/ram0
append="init=/linuxrc real_root=/dev/sda9"
label = Gentoo
read-only

image = /boot/bzImage.old
initrd=/boot/initrd
root=/dev/ram0
append="init=linuxrc real_root=/dev/sda9"
label = OldGentoo
read-only


I am using initrd, but you can modiffy your LILO and use old kernel until you won't have the new kernel working.

To fix your problem with the new kernel I would suggest to rebuild the new kernel and using menuconfig check if there are not some new/deprecated options as sebaro suggested
Code:

cd /usr/src/linux
make menuconfig
make clean
make
make modules_install
lilo
Back to top
View user's profile Send private message
vintoo
Tux's lil' helper
Tux's lil' helper


Joined: 26 Jun 2005
Posts: 109

PostPosted: Mon Jul 31, 2006 5:12 am    Post subject: Reply with quote

thanks for the reply folks i will check it out and wll buzz you folks again thanks alot for the replies and help

Regards

Vintoo

http://www.vishal-tech.co.uk/
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Kernel & Hardware All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum