Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Same Problem after reboot everytime I install
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Installing Gentoo
View previous topic :: View next topic  
Author Message
Ballerbaer
n00b
n00b


Joined: 27 Jun 2006
Posts: 10

PostPosted: Sat Dec 09, 2006 2:34 pm    Post subject: Same Problem after reboot everytime I install Reply with quote

Hi,
I've problems everytime I install gentoo 2006.1 with the 2.6.18 kernel. Never had those before with an older version ( 2005.1 I think, lost the cd so I don't know :cry:).
Now I've already installed the whole system 4 times but I always get that error at reboot. I have no idea what's wrong.
After I select gentoo at grub there comes that message:
Code:
TCP established hash table entries: 131072 ( order: 8, ... )
   TCP bind hash table entries: 65536(order: 7, ... )
      TCP: Hash tables configured ( established 131k bind 65k )
Machine check exception polling timer started
   highmem bounce pool size: 64 Pages
      NTFS driver 2.1.27 [ Flags: R/W ]
           io scheduler noop-registered
io scheduler cfg registered (default)
   lp: driver loaded but no device found
       Real Time clock driver v 1.12ac
           Non-volatile memory


I've tried several different Kernel-options, configurations etc. but its always the same!
Everything at installation works fine until the reboot. I only get the error of an old portage which i emerge after emerge --sync.
The kernel options I use are ones which I set before at 2.6.17 kernel.

The only thing which changes is after the line 'highmem bounce pool size: 64 Pages' if I deavtivate e.g. the NTFS driver support.
But the thing with the tcp table comes everytime.
Hope that someone out there can help me.
I like Gentoo and I want it back :wink:

System:
Pentium 4 HT
1,5 GB RAM
ATI X800
Marvel Yukon based NIC
C-Media based Soundcard
AC'97 based Soundcard
Back to top
View user's profile Send private message
NeddySeagoon
Administrator
Administrator


Joined: 05 Jul 2003
Posts: 54237
Location: 56N 3W

PostPosted: Sat Dec 09, 2006 2:59 pm    Post subject: Reply with quote

Ballerbaer,

Welcome to gentoo.

Theres no errors in your post, only informational messages. There may be a hint of a problem in this line
Quote:
The kernel options I use are ones which I set before at 2.6.17 kernel.
you cannot just copy the .config file between kernel versions.
In the destination kernel you must run
Code:
make oldconfig
too and answer its questions.
This makes sure you have a legal .config for the new kernel.

Not running make oldconfig before you run make leads to all sorts of strange kernel behavior.
_________________
Regards,

NeddySeagoon

Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail.
Back to top
View user's profile Send private message
Ballerbaer
n00b
n00b


Joined: 27 Jun 2006
Posts: 10

PostPosted: Sat Dec 09, 2006 3:58 pm    Post subject: Reply with quote

Hi, thanks for the fast answer.

With 'the kernel options I use are ones which i set before at 2.6.17' I meant I use similar options as in 2.6.17.
I make menuconfig at new kernel as normal and set all settings in the menu.
So I build a completely new kernel.

My old kernel is deleted. Sorry for my bad english.
Back to top
View user's profile Send private message
NeddySeagoon
Administrator
Administrator


Joined: 05 Jul 2003
Posts: 54237
Location: 56N 3W

PostPosted: Sat Dec 09, 2006 4:13 pm    Post subject: Reply with quote

Ballerbaer,

Your English is fine. I was really clutching at straws because there is no error in your original post.

What happens next ?
Does the system hang or boot to a prompt ?

Is there a kernel panic or some other error message ?
_________________
Regards,

NeddySeagoon

Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail.
Back to top
View user's profile Send private message
Ballerbaer
n00b
n00b


Joined: 27 Jun 2006
Posts: 10

PostPosted: Sat Dec 09, 2006 4:43 pm    Post subject: Reply with quote

No it stops at that point and nothing more happens.

So, i only see that message I posted.
Back to top
View user's profile Send private message
NeddySeagoon
Administrator
Administrator


Joined: 05 Jul 2003
Posts: 54237
Location: 56N 3W

PostPosted: Sat Dec 09, 2006 4:55 pm    Post subject: Reply with quote

Ballerbaer,

That makes it really difficult to diagnose because the kernel console output is not synchronised with what its actually doing.

I'll guess that you don't have a real time clock card in your computer, so the driver
Code:
       Real Time clock driver v 1.12ac
           Non-volatile memory
is loading a driver that can't find any hardware. It may not matter.

Also
Code:
highmem bounce pool size: 64 Pages
says you have himem enabled. Thats only needed if you have more that 1Gb of RAM.
Setting himem incorrectly can cause boot hangs when the krnel tries to use memory thats not actually installed.
_________________
Regards,

NeddySeagoon

Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail.
Back to top
View user's profile Send private message
Ballerbaer
n00b
n00b


Joined: 27 Jun 2006
Posts: 10

PostPosted: Sat Dec 09, 2006 5:24 pm    Post subject: Reply with quote

Hi again,

ok i gave it a try. I have turned off the himem support ( I have 1,5GB thats why it was turned on, i used the 4GB option ).
But what makes me very confused is that the RTC Clock driver is turned off in my kernel and was all the time. ( Searched at
Device Drivers --> Real Time Clock --> RTC class ).

Now I got the same message but without the line with the himem. The line with Real Time CLock driver.. is still there.
Back to top
View user's profile Send private message
NeddySeagoon
Administrator
Administrator


Joined: 05 Jul 2003
Posts: 54237
Location: 56N 3W

PostPosted: Sat Dec 09, 2006 5:53 pm    Post subject: Reply with quote

Ballerbaer,

Start chopping things out of your kernel that are not needed for booting.

If you post the lspci output and your kernel .config file, I'll look it over
_________________
Regards,

NeddySeagoon

Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail.
Back to top
View user's profile Send private message
erik258
Advocate
Advocate


Joined: 12 Apr 2005
Posts: 2650
Location: Twin Cities, Minnesota, USA

PostPosted: Sun Dec 10, 2006 2:26 am    Post subject: Reply with quote

Code:
dan@pascal ~ $ cat /usr/src/linux/.config | grep RTC
CONFIG_HPET_EMULATE_RTC=y
CONFIG_RTC=y
# CONFIG_HPET_RTC_IRQ is not set
CONFIG_SND_RTCTIMER=y
# CONFIG_RTC_CLASS is not set

Ballerbaer,
as you can see, the RTC class is not important, but CONFIG_RTC definitely is.

oh yeah, and turn >1G support back on. If i read mr seagoon correctly, you'll be fine as long as you do have >1G ram.
_________________
Configuring a Firewall? Try my iptables configuration
LinuxCommando.com is my blog for linux-related scraps and tidbits. Stop by for a visit!
Back to top
View user's profile Send private message
Ballerbaer
n00b
n00b


Joined: 27 Jun 2006
Posts: 10

PostPosted: Sun Dec 10, 2006 6:54 pm    Post subject: Reply with quote

Ok, new day new try.
I removed all unnecessary options in the kernel ( like Network-Card drivers etc. ).
I set the RTC options as erik posted.
Too I set back the himem support to 4GB.

Same Problem at all. Perhaps I should try an older kernel version :?:

I will post you my lspci output and my .config file:

lspci:
Code:

00:00.0 Host bridge: Intel Corporation 82865G/PE/P DRAM Controller/Host-Hub Interface (rev 02)
00:01.0 PCI bridge: Intel Corporation 82865G/PE/P PCI to AGP Controller (rev 02)
00:1d.0 USB Controller: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB UHCI Controller #1 (rev 02)
00:1d.1 USB Controller: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB UHCI Controller #2 (rev 02)
00:1d.2 USB Controller: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB UHCI Controller #3 (rev 02)
00:1d.3 USB Controller: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB UHCI Controller #4 (rev 02)
00:1d.7 USB Controller: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB2 EHCI Controller (rev 02)
00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev c2)
00:1f.0 ISA bridge: Intel Corporation 82801EB/ER (ICH5/ICH5R) LPC Interface Bridge (rev 02)
00:1f.1 IDE interface: Intel Corporation 82801EB/ER (ICH5/ICH5R) IDE Controller (rev 02)
00:1f.3 SMBus: Intel Corporation 82801EB/ER (ICH5/ICH5R) SMBus Controller (rev 02)
01:00.0 VGA compatible controller: ATI Technologies Inc R420 JI [Radeon X800PRO]
01:00.1 Display controller: ATI Technologies Inc Unknown device 4a69
02:03.0 FireWire (IEEE 1394): VIA Technologies, Inc. IEEE 1394 Host Controller (rev 80)
02:05.0 Ethernet controller: Marvell Technology Group Ltd. 88E8001 Gigabit Ethernet Controller (rev 13)
02:09.0 Multimedia audio controller: C-Media Electronics Inc CM8738 (rev 10)


.config: ( sorry I did not found a possibility to upload the file so I just took the uncommented lines )
Code:

CONFIG_X86_32=y
CONFIG_GENERIC_TIME=y
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_SEMAPHORE_SLEEPERS=y
CONFIG_X86=y
CONFIG_MMU=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_IOMAP=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
CONFIG_DMI=y
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"

# Code maturity level options
CONFIG_EXPERIMENTAL=y
CONFIG_BROKEN_ON_SMP=y
CONFIG_INIT_ENV_ARG_LIMIT=32

# General setup
CONFIG_LOCALVERSION=""
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
CONFIG_INITRAMFS_SOURCE=""
CONFIG_CC_OPTIMIZE_FOR_SIZE=y
CONFIG_UID16=y
CONFIG_SYSCTL=y
CONFIG_KALLSYMS=y
CONFIG_HOTPLUG=y
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_EPOLL=y
CONFIG_SHMEM=y
CONFIG_SLAB=y
CONFIG_VM_EVENT_COUNTERS=y
CONFIG_RT_MUTEXES=y
CONFIG_BASE_SMALL=0

# Loadable module support
CONFIG_MODULES=y
CONFIG_MODULE_UNLOAD=y
CONFIG_MODULE_FORCE_UNLOAD=y

# IO Schedulers
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_CFQ=y
CONFIG_DEFAULT_CFQ=y
CONFIG_DEFAULT_IOSCHED="cfq"

# Processor type and features
CONFIG_X86_PC=y
CONFIG_MPENTIUM4=y
CONFIG_X86_CMPXCHG=y
CONFIG_X86_XADD=y
CONFIG_X86_L1_CACHE_SHIFT=7
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_X86_WP_WORKS_OK=y
CONFIG_X86_INVLPG=y
CONFIG_X86_BSWAP=y
CONFIG_X86_POPAD_OK=y
CONFIG_X86_CMPXCHG64=y
CONFIG_X86_GOOD_APIC=y
CONFIG_X86_INTEL_USERCOPY=y
CONFIG_X86_USE_PPRO_CHECKSUM=y
CONFIG_X86_TSC=y
CONFIG_PREEMPT_NONE=y
CONFIG_X86_MCE=y
CONFIG_X86_MCE_NONFATAL=y
CONFIG_VM86=y

# Firmware Drivers
CONFIG_HIGHMEM4G=y
CONFIG_PAGE_OFFSET=0xC0000000
CONFIG_HIGHMEM=y
CONFIG_ARCH_FLATMEM_ENABLE=y
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_ARCH_SELECT_MEMORY_MODEL=y
CONFIG_SELECT_MEMORY_MODEL=y
CONFIG_FLATMEM_MANUAL=y
CONFIG_FLATMEM=y
CONFIG_FLAT_NODE_MEM_MAP=y
CONFIG_SPARSEMEM_STATIC=y
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_MTRR=y
CONFIG_REGPARM=y
CONFIG_HZ_100=y
CONFIG_HZ=100
CONFIG_PHYSICAL_START=0x100000
CONFIG_COMPAT_VDSO=y
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y

# Power management options (ACPI, APM)
CONFIG_PM=y

# ACPI (Advanced Configuration and Power Interface) Support
CONFIG_ACPI=y
CONFIG_ACPI_SLEEP=y
CONFIG_ACPI_SLEEP_PROC_FS=y
CONFIG_ACPI_BLACKLIST_YEAR=0
CONFIG_ACPI_EC=y
CONFIG_ACPI_POWER=y
CONFIG_ACPI_SYSTEM=y
CONFIG_X86_PM_TIMER=y

# Bus options (PCI, PCMCIA, EISA, MCA, ISA)
CONFIG_PCI=y
CONFIG_PCI_GOANY=y
CONFIG_PCI_BIOS=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_MMCONFIG=y
CONFIG_ISA_DMA_API=y

# Executable file formats
CONFIG_BINFMT_ELF=y

# Networking
CONFIG_NET=y

# Networking options
CONFIG_PACKET=y
CONFIG_PACKET_MMAP=y
CONFIG_UNIX=y
CONFIG_XFRM=y
CONFIG_INET=y
CONFIG_IP_FIB_HASH=y
CONFIG_INET_XFRM_MODE_TRANSPORT=y
CONFIG_INET_XFRM_MODE_TUNNEL=y
CONFIG_TCP_CONG_BIC=y

# IP: Virtual Server Configuration
CONFIG_NETFILTER=y

# Core Netfilter Configuration
CONFIG_NETFILTER_XTABLES=y
CONFIG_NETFILTER_XT_MATCH_LIMIT=y
CONFIG_NETFILTER_XT_MATCH_MAC=y
CONFIG_NETFILTER_XT_MATCH_STATE=y

# IP: Netfilter Configuration
CONFIG_IP_NF_CONNTRACK=y
CONFIG_IP_NF_FTP=y
CONFIG_IP_NF_IPTABLES=y
CONFIG_IP_NF_FILTER=y
CONFIG_IP_NF_TARGET_LOG=y

# Generic Driver Options
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y

# Parallel port support
CONFIG_PARPORT=y
CONFIG_PARPORT_PC=y
CONFIG_PARPORT_1284=y

# Block devices
CONFIG_BLK_DEV_LOOP=y

# ATA/ATAPI/MFM/RLL support
CONFIG_IDE=y
CONFIG_BLK_DEV_IDE=y

# Please see Documentation/ide.txt for help/info on IDE drives
CONFIG_BLK_DEV_IDEDISK=y
CONFIG_BLK_DEV_IDECD=y

# IDE chipset support/bugfixes
CONFIG_BLK_DEV_IDEPCI=y
CONFIG_IDEPCI_SHARE_IRQ=y
CONFIG_BLK_DEV_IDEDMA_PCI=y
CONFIG_IDEDMA_PCI_AUTO=y
CONFIG_BLK_DEV_VIA82CXXX=y
CONFIG_BLK_DEV_IDEDMA=y
CONFIG_IDEDMA_AUTO=y

# SCSI device support
CONFIG_SCSI=y

# SCSI support type (disk, tape, CD-ROM)
CONFIG_BLK_DEV_SD=y

# Network device support
CONFIG_NETDEVICES=y

# Ethernet (10 or 100Mbit)
CONFIG_NET_ETHERNET=y
CONFIG_MII=y

# Tulip family network device support
CONFIG_NET_PCI=y
CONFIG_E100=y

# Input device support
CONFIG_INPUT=y

# Userland interfaces
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_PSAUX=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1280
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=1024
CONFIG_INPUT_EVDEV=y

# Input Device Drivers
CONFIG_INPUT_KEYBOARD=y
CONFIG_KEYBOARD_ATKBD=y
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y

# Hardware I/O ports
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
CONFIG_SERIO_LIBPS2=y

# Character devices
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_HW_CONSOLE=y

# Serial drivers
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_PCI=y
CONFIG_SERIAL_8250_NR_UARTS=4
CONFIG_SERIAL_8250_RUNTIME_UARTS=4

# Non-8250 serial port support
CONFIG_SERIAL_CORE=y
CONFIG_UNIX98_PTYS=y
CONFIG_LEGACY_PTYS=y
CONFIG_LEGACY_PTY_COUNT=256
CONFIG_PRINTER=y

# Watchdog Cards
CONFIG_NVRAM=y
CONFIG_RTC=y

# Ftape, the floppy tape device driver
CONFIG_AGP=y
CONFIG_AGP_VIA=y
CONFIG_DRM=y
CONFIG_DRM_RADEON=y

# I2C support
CONFIG_I2C=y
CONFIG_I2C_CHARDEV=y

# I2C Algorithms
CONFIG_I2C_ALGOBIT=y

# I2C Hardware Bus support
CONFIG_I2C_ISA=y
CONFIG_I2C_VIAPRO=y

# Hardware Monitoring support
CONFIG_HWMON=y
CONFIG_HWMON_VID=y
CONFIG_SENSORS_IT87=y

# Multimedia devices
CONFIG_VIDEO_DEV=y
CONFIG_VIDEO_V4L1=y
CONFIG_VIDEO_V4L1_COMPAT=y
CONFIG_VIDEO_V4L2=y

# Video Capture Adapters
CONFIG_VIDEO_SAA7134=y

# Digital Video Broadcasting Devices
CONFIG_VIDEO_TUNER=y
CONFIG_VIDEO_BUF=y
CONFIG_VIDEO_IR=y

# Graphics support
CONFIG_FIRMWARE_EDID=y
CONFIG_FB=y
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
CONFIG_FB_MODE_HELPERS=y
CONFIG_VIDEO_SELECT=y
CONFIG_FB_RADEON=y
CONFIG_FB_RADEON_I2C=y

# Console display driver support
CONFIG_VGA_CONSOLE=y
CONFIG_DUMMY_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=y
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y

# Sound
CONFIG_SOUND=y

# Advanced Linux Sound Architecture
CONFIG_SND=y
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=y
CONFIG_SND_HWDEP=y
CONFIG_SND_RAWMIDI=y
CONFIG_SND_SEQUENCER=y
CONFIG_SND_RTCTIMER=y
CONFIG_SND_VERBOSE_PROCFS=y

# Generic devices
CONFIG_SND_MPU401_UART=y
CONFIG_SND_OPL3_LIB=y
CONFIG_SND_AC97_CODEC=y
CONFIG_SND_AC97_BUS=y

# PCI devices
CONFIG_SND_CMIPCI=y
CONFIG_SND_VIA82XX=y

# USB support
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB_ARCH_HAS_OHCI=y
CONFIG_USB_ARCH_HAS_EHCI=y
CONFIG_USB=y

# Miscellaneous USB options
CONFIG_USB_DEVICEFS=y

# USB Host Controller Drivers
CONFIG_USB_EHCI_HCD=y
CONFIG_USB_UHCI_HCD=y

# may also be needed; see USB_STORAGE Help for more information
CONFIG_USB_STORAGE=y

# File systems
CONFIG_EXT2_FS=y
CONFIG_EXT3_FS=y
CONFIG_EXT3_FS_XATTR=y
CONFIG_JBD=y
CONFIG_FS_MBCACHE=y
CONFIG_REISERFS_FS=y
CONFIG_DNOTIFY=y

# CD-ROM/DVD Filesystems
CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
CONFIG_ZISOFS_FS=y

# DOS/FAT/NT Filesystems
CONFIG_FAT_FS=y
CONFIG_VFAT_FS=y
CONFIG_FAT_DEFAULT_CODEPAGE=850
CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"

# Pseudo filesystems
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
CONFIG_RAMFS=y

# Network File Systems
CONFIG_CIFS=y

# Partition Types
CONFIG_PARTITION_ADVANCED=y
CONFIG_MSDOS_PARTITION=y

# Native Language Support
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="iso8859-15"
CONFIG_NLS_CODEPAGE_850=y
CONFIG_NLS_ISO8859_1=y
CONFIG_NLS_ISO8859_15=y
CONFIG_NLS_UTF8=y

# Kernel hacking
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
CONFIG_MAGIC_SYSRQ=y
CONFIG_UNUSED_SYMBOLS=y
CONFIG_LOG_BUF_SHIFT=14
CONFIG_DEBUG_BUGVERBOSE=y
CONFIG_EARLY_PRINTK=y
CONFIG_DOUBLEFAULT=y

# Library routines
CONFIG_CRC32=y
CONFIG_ZLIB_INFLATE=y
CONFIG_PLIST=y
CONFIG_GENERIC_HARDIRQS=y
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_X86_BIOS_REBOOT=y
CONFIG_KTIME_SCALAR=y
Back to top
View user's profile Send private message
cyrillic
Watchman
Watchman


Joined: 19 Feb 2003
Posts: 7313
Location: Groton, Massachusetts USA

PostPosted: Sun Dec 10, 2006 7:42 pm    Post subject: Reply with quote

You might want to try booting with a couple of different kernel options, to see if it gets you further in the boot process.

I would try either one or the other or both together
Code:
video=radeonfb:off
acpi=off



EDIT : I also noticed, your kernel .config is missing the driver for your IDE controller. This will cause a kernel panic later in the boot process.
Back to top
View user's profile Send private message
NeddySeagoon
Administrator
Administrator


Joined: 05 Jul 2003
Posts: 54237
Location: 56N 3W

PostPosted: Sun Dec 10, 2006 7:54 pm    Post subject: Reply with quote

Ballerbaer,

You are missing the hardware driver for your hard drive. You need these settings (ICH4 and ICH5 are the same.)
CONFIG_BLK_DEV_VIA82CXXX=y is not for you.

I would have expected your system to die with a kernel panic ... unknown-block (0,0) messsage, not just hang.

You don't have a CONFIG_E100=y, rather you have a
Code:
02:05.0 Ethernet controller: Marvell Technology Group Ltd. 88E8001 Gigabit Ethernet Controller (rev 13)
which will be in 1000Mbits settings somewhere.

Do you really have a CONFIG_MPENTIUM4=y on a ICH5 chipset?
Look in your /proc/cpuinfo. Selecting a CPU newer than the one you have is always a showstopper.

Turn off CONFIG_SND_VERBOSE_PROCFS=y and CONFIG_SND_VIA82XX=y thats not for your sound card.
Turn on the CM8738 driver
_________________
Regards,

NeddySeagoon

Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail.
Back to top
View user's profile Send private message
Ballerbaer
n00b
n00b


Joined: 27 Jun 2006
Posts: 10

PostPosted: Sun Dec 10, 2006 9:15 pm    Post subject: Reply with quote

Hi,

I tried both of your solutions. Set the Hard-drive settings neddySeagoon posted,
Disabled CONFIG_BLK_DEV_VIA82CXXX
Disabled Ethernet 100 support.
Enabled Marvel Yukon support again.
Disabled CONFIG_SND_VERBOSE_PROCFS and CONFIG_SND_VIA82XX.
Disabled the radeonfb support
Disabled acpi completely ( sure its a good idea? )

-> Still don't work.

Yes I have an Intel Pentium 4. /proc/cpuinfo says Intel(R) Pentium(R) 4 CPU 2.80GHz.
The CM8738 driver was turned on before.

Thanks for this hints anyway.
Back to top
View user's profile Send private message
erik258
Advocate
Advocate


Joined: 12 Apr 2005
Posts: 2650
Location: Twin Cities, Minnesota, USA

PostPosted: Sun Dec 10, 2006 10:04 pm    Post subject: Reply with quote

take a pic of the screen?
_________________
Configuring a Firewall? Try my iptables configuration
LinuxCommando.com is my blog for linux-related scraps and tidbits. Stop by for a visit!
Back to top
View user's profile Send private message
NeddySeagoon
Administrator
Administrator


Joined: 05 Jul 2003
Posts: 54237
Location: 56N 3W

PostPosted: Sun Dec 10, 2006 10:27 pm    Post subject: Reply with quote

erik258,

... but only after you have a kernel that mounts root, so modules can be read.

Ballerbaer,

You don't have a non standard partition scheme do you?
Get the bzImage file from here Its for a P3 on an Intel chipset motherboard. It should boot to a prompt on your system but it will give you lots of errors about missing modules.

I'be not set up apache to serve files with names beginning with a dot, which is a bit of a shame because it stops you getting the .config
No initrd is needed, just a section in grub.conf like this.

Code:
title NeddySeagoons P3 Kernel
root (hd...)   
kernel /boot/NeddysbzImage root=/dev....
you will need to fill in the unknowns and make the names match
_________________
Regards,

NeddySeagoon

Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail.
Back to top
View user's profile Send private message
Ballerbaer
n00b
n00b


Joined: 27 Jun 2006
Posts: 10

PostPosted: Sun Dec 10, 2006 10:36 pm    Post subject: Reply with quote

Got it working :D

Disabling the support for framebuffer devices completely did it for me.

I posted the whole screen output before erik.

Thank you all for the whole great help you gave me.
You guys are real smart 8) :wink:
Back to top
View user's profile Send private message
NeddySeagoon
Administrator
Administrator


Joined: 05 Jul 2003
Posts: 54237
Location: 56N 3W

PostPosted: Sun Dec 10, 2006 10:42 pm    Post subject: Reply with quote

Ballerbaer,

Well done. If you really want framebuffer support, vesa-tng or vesa should be safe.
_________________
Regards,

NeddySeagoon

Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Installing Gentoo 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