Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Pappy's Kernel Seeds Part V
View unanswered posts
View posts from last 24 hours

Goto page Previous  1, 2, 3, 4, 5, 6 ... 13, 14, 15  Next  
Reply to topic    Gentoo Forums Forum Index Unsupported Software
View previous topic :: View next topic  
Author Message
Wallsandfences
Guru
Guru


Joined: 29 Mar 2010
Posts: 378

PostPosted: Sun Jan 20, 2013 1:51 pm    Post subject: Reply with quote

Hi,
Code:
not syncing: VFS: Unable to mount root fs on unknown block(0,0)
Back to top
View user's profile Send private message
Wallsandfences
Guru
Guru


Joined: 29 Mar 2010
Posts: 378

PostPosted: Sun Jan 20, 2013 2:03 pm    Post subject: Reply with quote

I changed my .config and recompiled the kernel but it did not help!
Back to top
View user's profile Send private message
NeddySeagoon
Administrator
Administrator


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

PostPosted: Sun Jan 20, 2013 2:05 pm    Post subject: Reply with quote

Wallsandfences,

Code:
unknown block(0,0)
means that your kernel cannot communicate with your hard drive at all.
What does your fdisk -l show ?

Code:
CONFIG_FB_VESA=y
must be off, as the Intel KMS drivers provides a framebuffer. That will be you next problem once, you get root mounted.
_________________
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
Wallsandfences
Guru
Guru


Joined: 29 Mar 2010
Posts: 378

PostPosted: Sun Jan 20, 2013 2:24 pm    Post subject: Reply with quote

I downgraded from grub2 to grub, what I seem to cope with better. The Kernel now boots!

Anyway, there are issues: under 'Wireless LAN devices' there are only 5 options or so (instead of forty), and I can't choose my intel wlan-adapter (iwl3945)

Rüdiger
Back to top
View user's profile Send private message
NeddySeagoon
Administrator
Administrator


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

PostPosted: Sun Jan 20, 2013 2:35 pm    Post subject: Reply with quote

Wallsandfences,

Start a new thread please.

You some other kernel option off that all the things that are hidden depend on.

The kernel help for your wireless, which you can't see in make menuconfig shows
Code:
Intel PRO/Wireless 3945ABG/BG Network Connection (iwl3945) (IWL3945)

CONFIG_IWL3945:

Select to build the driver supporting the:

Intel PRO/Wireless 3945ABG/BG Network Connection

This driver uses the kernel's mac80211 subsystem.

In order to use this driver, you will need a microcode (uCode)
image for it. You can obtain the microcode from:

<http://intellinuxwireless.org/>.

The microcode is typically installed in /lib/firmware. You can
look in the hotplug script /etc/hotplug/firmware.agent to
determine which directory FIRMWARE_DIR is set to when the script
runs.

If you want to compile the driver as a module ( = code which can be
inserted in and removed from the running kernel whenever you want),
say M here and read <file:Documentation/kbuild/modules.txt>. The
module will be called iwl3945.

Symbol: IWL3945 [=n]
Type : tristate
Prompt: Intel PRO/Wireless 3945ABG/BG Network Connection (iwl3945)
Defined at drivers/net/wireless/iwlegacy/Kconfig:37
Depends on: NETDEVICES [=y] && WLAN [=y] && PCI [=y] && MAC80211 [=y]
Location:
-> Device Drivers
-> Network device support (NETDEVICES [=y])
-> Wireless LAN (WLAN [=y])
Selects: IWLEGACY [=n]

Look at the Depends on: line. Unless those options are either =y or =m the configuration option you need will be hidden.
I'm using make xconfig here to see this, which you can set to show all options, even hidden ones.

Its perfectly possible that one or more of the options you need is hidden because of something it depends on being set to =n ... and so on.
_________________
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
Wallsandfences
Guru
Guru


Joined: 29 Mar 2010
Posts: 378

PostPosted: Sun Jan 20, 2013 3:55 pm    Post subject: Reply with quote

Thanks, Neddy, that solved it!

Rüdiger
Back to top
View user's profile Send private message
pappy_mcfae
Watchman
Watchman


Joined: 27 Dec 2007
Posts: 5999
Location: Pomona, California.

PostPosted: Mon Jan 21, 2013 9:25 am    Post subject: Reply with quote

Wallsandfences,

I completely forgot about you. I've been hitting my Gentoo-FreeBSD setup fairly hard for the last few days, so I took a bit of time off on a Sunday. My most humble apologies.

I did actually run your .config through my mill, and you were on target more than you were off. Where you were off, though, it was pretty scary. Such is life. My first kernel came with slackware, and I was scared to touch it in any way.

As for your /etc/fstab, that's pretty minimalist. I'm used to something more along these lines:
Code:
none      /proc       proc     defaults 0 0
none      /dev/shm    tmpfs    defaults 0 0
/dev/sdb1 /           reiserfs defaults 1 1
/dev/sda2 none        swap     swap     0 0

You might want to take some time to flesh yours out a bit.

Click here for your new .config. Compile as is.

For the best results, please do the following:

1) Move your .config file out of your kernel source directory.
2) Issue the command make mrproper. This is a destructive step. It returns the source to pristine condition. Unmoved .config files will be deleted!
3) Copy my .config into your source directory.
4) Issue the command make && make modules_install.
5) Install the kernel as you normally would, and reboot.
6) Once it boots, please post /var/log/dmesg so I can see how things loaded.

But yes, definitely do that in your own thread so that if you need anything else, we can go right to you. Don't forget to post the URL for that thread here.

Everyone else,

As wonky as this machine was once I did actually get back to it, I'm amazed I got anything accomplished at all. I did though. I've just uploaded .configs for 2.6.32-hardened-r146, 3.2.37-hardened, and 3.7.3-hardened in both x86 and x86_64 flavors. Enjoy!

Cheers,
Pappy.
_________________
This space left intentionally blank, except for these ASCII symbols.
Back to top
View user's profile Send private message
NeddySeagoon
Administrator
Administrator


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

PostPosted: Mon Jan 21, 2013 6:40 pm    Post subject: Reply with quote

pappy_mcfae,

Does your BSD involvement mean we will be seeing BSD kernel seeds too ?
_________________
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
pappy_mcfae
Watchman
Watchman


Joined: 27 Dec 2007
Posts: 5999
Location: Pomona, California.

PostPosted: Mon Jan 21, 2013 9:16 pm    Post subject: Reply with quote

I would do that, except that the FreeBSD kernel is so much easier to work with, it's not really worth the effort. Those who wish a custom kernel have been working with it enough that it's not a challenge. The documentation is also really good, so while it doesn't mention every little thing you should know about working with the FreeBSD kernel, it gives more than enough clues that someone given to be a geek could use to successfully configure and install their own kernel.

How long I stay with the idea of doing a Gentoo/FreeBSD hybrid depends on how long it takes to get some serious bugs removed. For now, I have X, but I'm limited to fvwm and xterm because pango refuses to finish compiling. No pango means no gtk+. No gtk+ means no Xfce4, and that is just unacceptable. I judge an operating system by how long it takes me to get a functional GUI. Gentoo takes a while, but it's worth it. FreeBSD, in its natural state takes about the same amount of time. The hybrid falls flat on its face, and while it did offer up a GUI rather quickly, the functionality of it is debatable. Without X-based file managers, what's the point of a GUI? At this point, I can only use mc (midnight commander). That's just not an acceptable situation.

Frankly, I enjoy working inside the Linux community more than what I've seen with FreeBSD. I'll still play with FreeBSD, but as long as I continue to oxygenate my blood naturally, I'll continue to be a Gentoo Linux fixture.

Cheers,
Pappy
_________________
This space left intentionally blank, except for these ASCII symbols.
Back to top
View user's profile Send private message
pappy_mcfae
Watchman
Watchman


Joined: 27 Dec 2007
Posts: 5999
Location: Pomona, California.

PostPosted: Tue Jan 22, 2013 9:27 am    Post subject: Reply with quote

Another day, another chance to get the seeds out before the source hits portage. I've just uploaded .configs for 3.0.60, 3.4.27, and 3.7.4 in both x86 and x86_64 flavors. Enjoy!

Cheers,
Pappy
_________________
This space left intentionally blank, except for these ASCII symbols.
Back to top
View user's profile Send private message
pappy_mcfae
Watchman
Watchman


Joined: 27 Dec 2007
Posts: 5999
Location: Pomona, California.

PostPosted: Fri Jan 25, 2013 9:49 am    Post subject: Reply with quote

The hardened sources folks are always good for new source, and they don't disappoint tonight. I've just uploaded .configs for 2.6.32-hardened-r147, 3.2.37-hardened-r1, 3.7.4-gentoo, and 3.7.4-hardened in both x86 and x86_64 flavors. Enjoy!

Cheers,
Pappy
_________________
This space left intentionally blank, except for these ASCII symbols.
Back to top
View user's profile Send private message
pappy_mcfae
Watchman
Watchman


Joined: 27 Dec 2007
Posts: 5999
Location: Pomona, California.

PostPosted: Mon Jan 28, 2013 8:26 am    Post subject: Reply with quote

I've just uploaded .configs for 3.0.61, 3.4.28, and 3.7.5 in both x86 and x86_64 flavors. Enjoy!

Cheers,
Pappy
_________________
This space left intentionally blank, except for these ASCII symbols.
Back to top
View user's profile Send private message
pappy_mcfae
Watchman
Watchman


Joined: 27 Dec 2007
Posts: 5999
Location: Pomona, California.

PostPosted: Wed Jan 30, 2013 7:49 am    Post subject: Reply with quote

Yet another mirror gets updated: http://kernel-seeds.grytpype-thynne.org/ has replaced the bloodnoc server. Please update your bookmarks accordingly. To add to the festivities, I've uploaded .configs for 3.7.4-hardened-r1 in both x86 and x86_64 flavors. Enjoy!

Cheers,
Pappy
_________________
This space left intentionally blank, except for these ASCII symbols.
Back to top
View user's profile Send private message
pappy_mcfae
Watchman
Watchman


Joined: 27 Dec 2007
Posts: 5999
Location: Pomona, California.

PostPosted: Sun Feb 03, 2013 7:06 am    Post subject: Reply with quote

The groundhog might think that spring is coming early, but the seeds are already here. I've just uploaded .configs for 2.6.32-hardened-r148, 3.2.37-hardened-r2, and 3.7.5-hardened in both x86 and x86_64 flavors. Enjoy!

Cheers,
Pappy
_________________
This space left intentionally blank, except for these ASCII symbols.
Back to top
View user's profile Send private message
audiodef
Watchman
Watchman


Joined: 06 Jul 2005
Posts: 6639
Location: The soundosphere

PostPosted: Sun Feb 03, 2013 4:54 pm    Post subject: Reply with quote

Don't let Punxsutawney Phil eat them kernels...
_________________
decibel Linux: https://decibellinux.org
Github: https://github.com/Gentoo-Music-and-Audio-Technology
Facebook: https://www.facebook.com/decibellinux
Discord: https://discord.gg/73XV24dNPN
Back to top
View user's profile Send private message
pappy_mcfae
Watchman
Watchman


Joined: 27 Dec 2007
Posts: 5999
Location: Pomona, California.

PostPosted: Mon Feb 04, 2013 8:12 am    Post subject: Reply with quote

Nope. No rodents chewing on the kernels...or the seeds.

The vanilla-sources folks were busy. I just uploaded .configs for 3.0.62, 3.4.29, and 3.7.6 in both x86 and x86_64 flavors. It was another case of getting the seeds done before the source hits portage. I love it when that happens. Enjoy!

Cheers,
Pappy
_________________
This space left intentionally blank, except for these ASCII symbols.
Back to top
View user's profile Send private message
pappy_mcfae
Watchman
Watchman


Joined: 27 Dec 2007
Posts: 5999
Location: Pomona, California.

PostPosted: Wed Feb 06, 2013 9:33 am    Post subject: Reply with quote

Ah, the wonder of Gentoo and distributed computing. While this machine was moving up in FreeBSD world, hopefully not to die so soon thereafter, I was able to create seeds with a machine I got from Audiodef for helping him sort out some weirdness on his server. I still needed my main machine to distribute the files to the mirrors, as this is the machine with the right ssh key. Old laptops never die, okay, they eventually do, but that old P-4 celeron runs pretty good.

I've just uploaded .configs for 3.2.38 in both x86 and x86_64 flavors. Enjoy!

Now, back to FreeBSD to see about getting X to work again.

Cheers,
Pappy
_________________
This space left intentionally blank, except for these ASCII symbols.
Back to top
View user's profile Send private message
pappy_mcfae
Watchman
Watchman


Joined: 27 Dec 2007
Posts: 5999
Location: Pomona, California.

PostPosted: Fri Feb 08, 2013 8:26 am    Post subject: Reply with quote

On the BSD front, all is well. Two days almost to recompile everything. I've had worse.

On the seed front, I just uploaded .configs for 3.7.6-gentoo in both x86 and x86_64 flavors. Enjoy!

Good luck to my friends and users on the Eastern Seaboard, waiting for the Nor'easter that's coming. Stay safe. Stay warm. Compile kernels.

Cheers,
Pappy
_________________
This space left intentionally blank, except for these ASCII symbols.
Back to top
View user's profile Send private message
pappy_mcfae
Watchman
Watchman


Joined: 27 Dec 2007
Posts: 5999
Location: Pomona, California.

PostPosted: Sat Feb 09, 2013 7:43 am    Post subject: Reply with quote

I've just uploaded .configs for 3.0.62-gentoo in both x86 and x86_64 flavors. Enjoy!

Cheers,
Pappy
_________________
This space left intentionally blank, except for these ASCII symbols.
Back to top
View user's profile Send private message
pappy_mcfae
Watchman
Watchman


Joined: 27 Dec 2007
Posts: 5999
Location: Pomona, California.

PostPosted: Tue Feb 12, 2013 8:32 am    Post subject: Reply with quote

It's that time again. I just uploaded .configs for 3.0.63, 3.4.30, and 3.7.7 in both x86 and x86_64 flavors. Enjoy!

Cheers,
Pappy
_________________
This space left intentionally blank, except for these ASCII symbols.
Back to top
View user's profile Send private message
pappy_mcfae
Watchman
Watchman


Joined: 27 Dec 2007
Posts: 5999
Location: Pomona, California.

PostPosted: Wed Feb 13, 2013 8:13 am    Post subject: Reply with quote

I've just uploaded .configs for 2.6.32-hardened-r149, 3.2.38-hardened, 3.7.6-hardened, and 3.7.7-gentoo in both x86 and x86_64 flavors. Enjoy!

Cheers,
Pappy
_________________
This space left intentionally blank, except for these ASCII symbols.
Back to top
View user's profile Send private message
pappy_mcfae
Watchman
Watchman


Joined: 27 Dec 2007
Posts: 5999
Location: Pomona, California.

PostPosted: Fri Feb 15, 2013 8:38 am    Post subject: Reply with quote

It's a beautiful night in Pomona. I've just uploaded .configs for 3.0.64, 3.4.31, 3.7.8, and 3.7.8-gentoo in both x86 and x86_64 flavors. Enjoy!

Cheers,
Pappy
_________________
This space left intentionally blank, except for these ASCII symbols.
Back to top
View user's profile Send private message
crshbndct
n00b
n00b


Joined: 18 Oct 2012
Posts: 6

PostPosted: Sun Feb 17, 2013 6:38 am    Post subject: Reply with quote

I just wanted to say thanks for all your hard work with the seeds. I would not have had the best experience with linux, that I have ever had, without them.
Back to top
View user's profile Send private message
pappy_mcfae
Watchman
Watchman


Joined: 27 Dec 2007
Posts: 5999
Location: Pomona, California.

PostPosted: Sun Feb 17, 2013 8:21 am    Post subject: Reply with quote

crshbndct,

You're most welcome, and thank you for your words of praise.

Cheers,
Pappy
_________________
This space left intentionally blank, except for these ASCII symbols.
Back to top
View user's profile Send private message
pappy_mcfae
Watchman
Watchman


Joined: 27 Dec 2007
Posts: 5999
Location: Pomona, California.

PostPosted: Sun Feb 17, 2013 8:30 am    Post subject: Reply with quote

It's that time of evening. Dinner is done, so are the dishes, and portage dropped some fresh source! I've just uploaded .configs for 2.6.32-hardened-r150, 3.2.38-hardened-r1, and 3.7.8-hardened in both x86 and x86_64 flavors. Enjoy!
_________________
This space left intentionally blank, except for these ASCII symbols.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Unsupported Software All times are GMT
Goto page Previous  1, 2, 3, 4, 5, 6 ... 13, 14, 15  Next
Page 5 of 15

 
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