public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user] PATA in gentoo-sources-2.6.26-r3
@ 2008-11-27 18:47 Thanasis
  2008-11-27 20:01 ` Joshua Murphy
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Thanasis @ 2008-11-27 18:47 UTC (permalink / raw
  To: gentoo-user List

Yesterday, I tried upgrading from gentoo-sources-2.6.25-r9 to 2.6.26-r3, 
but the new kernel can not mount the root filesystem, because it's on a 
RAID1 on an SIL680 controller.
In the previous kernel I had  CONFIG_PATA_SIL680=y , but in the new 
.config I cannot find any PATA.
 
# grep -i pata .config
(gives nothing)

Has it been removed from the newer kernels?




^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-user] PATA in gentoo-sources-2.6.26-r3
  2008-11-27 18:47 [gentoo-user] PATA in gentoo-sources-2.6.26-r3 Thanasis
@ 2008-11-27 20:01 ` Joshua Murphy
  2008-11-27 22:33 ` Neil Bothwick
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Joshua Murphy @ 2008-11-27 20:01 UTC (permalink / raw
  To: gentoo-user

On Thu, Nov 27, 2008 at 1:47 PM, Thanasis <thanasis@asyr.hopto.org> wrote:
> Yesterday, I tried upgrading from gentoo-sources-2.6.25-r9 to 2.6.26-r3, but
> the new kernel can not mount the root filesystem, because it's on a RAID1 on
> an SIL680 controller.
> In the previous kernel I had  CONFIG_PATA_SIL680=y , but in the new .config
> I cannot find any PATA.
>
> # grep -i pata .config
> (gives nothing)
>
> Has it been removed from the newer kernels?
>
>
>

Looks like linux-2.6.27-gentoo-r4 has it, at the very least.

severn linux # pwd -P
/usr/src/linux-2.6.27-gentoo-r4
severn linux # grep SIL680 .config
# CONFIG_PATA_SIL680 is not set

-- 
Poison [BLX]
Joshua M. Murphy



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-user] PATA in gentoo-sources-2.6.26-r3
  2008-11-27 18:47 [gentoo-user] PATA in gentoo-sources-2.6.26-r3 Thanasis
  2008-11-27 20:01 ` Joshua Murphy
@ 2008-11-27 22:33 ` Neil Bothwick
  2008-11-28  8:25   ` Thanasis
  2008-11-27 23:04 ` Volker Armin Hemmann
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 8+ messages in thread
From: Neil Bothwick @ 2008-11-27 22:33 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 769 bytes --]

On Thu, 27 Nov 2008 20:47:24 +0200, Thanasis wrote:

> Yesterday, I tried upgrading from gentoo-sources-2.6.25-r9 to
> 2.6.26-r3, but the new kernel can not mount the root filesystem,
> because it's on a RAID1 on an SIL680 controller.
> In the previous kernel I had  CONFIG_PATA_SIL680=y , but in the new 
> .config I cannot find any PATA.
>  
> # grep -i pata .config
> (gives nothing)

Grepping .config is a bad way of looking for options. If option A
disables B, A will appear as not set and B will not be mentioned. The
proper way is to use the / key to search in make menuconfig, which will
show you that you need ATA_SFF enabled to see many of the PATA and SATA
drivers now.


-- 
Neil Bothwick

Planet 98% full! Delete Windows users? (Y/y)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 197 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-user] PATA in gentoo-sources-2.6.26-r3
  2008-11-27 18:47 [gentoo-user] PATA in gentoo-sources-2.6.26-r3 Thanasis
  2008-11-27 20:01 ` Joshua Murphy
  2008-11-27 22:33 ` Neil Bothwick
@ 2008-11-27 23:04 ` Volker Armin Hemmann
  2008-11-28  8:25 ` Thanasis
  2008-11-28  9:14 ` Justin
  4 siblings, 0 replies; 8+ messages in thread
From: Volker Armin Hemmann @ 2008-11-27 23:04 UTC (permalink / raw
  To: gentoo-user

On Donnerstag 27 November 2008, Thanasis wrote:
> Yesterday, I tried upgrading from gentoo-sources-2.6.25-r9 to 2.6.26-r3,
> but the new kernel can not mount the root filesystem, because it's on a
> RAID1 on an SIL680 controller.
> In the previous kernel I had  CONFIG_PATA_SIL680=y , but in the new
> .config I cannot find any PATA.
>
> # grep -i pata .config
> (gives nothing)
>
> Has it been removed from the newer kernels?

no, in the ata submenu enable the SFF stuff.




^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-user] PATA in gentoo-sources-2.6.26-r3
  2008-11-27 22:33 ` Neil Bothwick
@ 2008-11-28  8:25   ` Thanasis
  0 siblings, 0 replies; 8+ messages in thread
From: Thanasis @ 2008-11-28  8:25 UTC (permalink / raw
  To: gentoo-user

on 11/28/2008 12:33 AM Neil Bothwick wrote the following:
> On Thu, 27 Nov 2008 20:47:24 +0200, Thanasis wrote:
>
>> Yesterday, I tried upgrading from gentoo-sources-2.6.25-r9 to
>> 2.6.26-r3, but the new kernel can not mount the root filesystem,
>> because it's on a RAID1 on an SIL680 controller.
>> In the previous kernel I had  CONFIG_PATA_SIL680=y , but in the new 
>> .config I cannot find any PATA.
>>  
>> # grep -i pata .config
>> (gives nothing)
>
> Grepping .config is a bad way of looking for options. If option A
> disables B, A will appear as not set and B will not be mentioned. The
> proper way is to use the / key to search in make menuconfig, which will
> show you that you need ATA_SFF enabled to see many of the PATA and SATA
> drivers now.
>
>
I just didn't know about the / key.
Very useful.
Thanks Neil.
:-)  
PS: are there any other keys one should know about?




^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-user] PATA in gentoo-sources-2.6.26-r3
  2008-11-27 18:47 [gentoo-user] PATA in gentoo-sources-2.6.26-r3 Thanasis
                   ` (2 preceding siblings ...)
  2008-11-27 23:04 ` Volker Armin Hemmann
@ 2008-11-28  8:25 ` Thanasis
  2008-11-28  9:14 ` Justin
  4 siblings, 0 replies; 8+ messages in thread
From: Thanasis @ 2008-11-28  8:25 UTC (permalink / raw
  To: gentoo-user

on 11/27/2008 08:47 PM Thanasis wrote the following:
> Yesterday, I tried upgrading from gentoo-sources-2.6.25-r9 to 
> 2.6.26-r3, but the new kernel can not mount the root filesystem, 
> because it's on a RAID1 on an SIL680 controller.
> In the previous kernel I had  CONFIG_PATA_SIL680=y , but in the new 
> .config I cannot find any PATA.
>
> # grep -i pata .config
> (gives nothing)
>
> Has it been removed from the newer kernels?
>
>
>
>
Thank you all !
:-)



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-user] PATA in gentoo-sources-2.6.26-r3
  2008-11-27 18:47 [gentoo-user] PATA in gentoo-sources-2.6.26-r3 Thanasis
                   ` (3 preceding siblings ...)
  2008-11-28  8:25 ` Thanasis
@ 2008-11-28  9:14 ` Justin
  2008-11-28 12:17   ` Thanasis
  4 siblings, 1 reply; 8+ messages in thread
From: Justin @ 2008-11-28  9:14 UTC (permalink / raw
  To: gentoo-user

Thanasis schrieb:
> Yesterday, I tried upgrading from gentoo-sources-2.6.25-r9 to 
> 2.6.26-r3, but the new kernel can not mount the root filesystem, 
> because it's on a RAID1 on an SIL680 controller.
> In the previous kernel I had  CONFIG_PATA_SIL680=y , but in the new 
> .config I cannot find any PATA.
>
> # grep -i pata .config
> (gives nothing)
>
> Has it been removed from the newer kernels?
>
>
Did you make a "make oldconfig"?



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-user] PATA in gentoo-sources-2.6.26-r3
  2008-11-28  9:14 ` Justin
@ 2008-11-28 12:17   ` Thanasis
  0 siblings, 0 replies; 8+ messages in thread
From: Thanasis @ 2008-11-28 12:17 UTC (permalink / raw
  To: gentoo-user

on 11/28/2008 11:14 AM Justin wrote the following:
> Thanasis schrieb:
>> Yesterday, I tried upgrading from gentoo-sources-2.6.25-r9 to 
>> 2.6.26-r3, but the new kernel can not mount the root filesystem, 
>> because it's on a RAID1 on an SIL680 controller.
>> In the previous kernel I had  CONFIG_PATA_SIL680=y , but in the new 
>> .config I cannot find any PATA.
>>
>> # grep -i pata .config
>> (gives nothing)
>>
>> Has it been removed from the newer kernels?
>>
>>
> Did you make a "make oldconfig"?
>
>
>
Yes, I did, but probably answered "n" to the question about ATA_SFF :-(



^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2008-11-28 12:17 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-27 18:47 [gentoo-user] PATA in gentoo-sources-2.6.26-r3 Thanasis
2008-11-27 20:01 ` Joshua Murphy
2008-11-27 22:33 ` Neil Bothwick
2008-11-28  8:25   ` Thanasis
2008-11-27 23:04 ` Volker Armin Hemmann
2008-11-28  8:25 ` Thanasis
2008-11-28  9:14 ` Justin
2008-11-28 12:17   ` Thanasis

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox