From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Message-ID: <4550F19B.4000805@gmail.com> Date: Tue, 07 Nov 2006 22:50:35 +0200 From: "Andrew G. Klepcha" User-Agent: Thunderbird 1.5.0.4 (X11/20060516) MIME-Version: 1.0 To: ALT Linux Sisyphus discussion list References: <45506356.9040003@gmail.com> <58aff4850611070759k52632fddw4dd69529d9da04a0@mail.gmail.com> <4550D47C.7070009@gmail.com> <200611072231.17721@ruslandh> <20061107194631.GA3667@lks.home> <20061107200539.GA6187@lks.home> In-Reply-To: <20061107200539.GA6187@lks.home> Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 8bit Subject: Re: [sisyphus] =?koi8-r?b?R0EtOTY1cC1EUzMg0NLPwszFzcEg0yDV09TBzs/X?= =?koi8-r?b?y8/K?= X-BeenThere: sisyphus@lists.altlinux.org X-Mailman-Version: 2.1.9rc1 Precedence: list Reply-To: ALT Linux Sisyphus discussion list List-Id: ALT Linux Sisyphus discussion list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Nov 2006 20:42:07 -0000 Archived-At: List-Archive: List-Post: Konstantin A. Lepikhov пишет: >> 07.11.06, Konstantin A. Lepikhov написал(а): >>> Hi Хихин! >>> В текущих livecd нет ahci, поэтому можно подсовывать все что угодно, все >>> равно работать не будет ;) >> 2.6.17!!! дружно скандируют массы народа, а им обещают рай в ovz :))) > а че кричать - ahci и в 2.6.16 есть. так а что делать-то? единичные success story, найденные мной в интернете для ситуации IDE привода на дополнительном к i965 JMicron'е -- all-generic-ide в параметры ядру (на альтовских ядрах у меня не прокатывает) еще вроде FC6 проблем не имеет, но ее не хочется :( возможно, я плохо проблему объяснил... вот как это по-английски звучит голосом Alan Cox: --------------------------------------- From: Alan Cox Date: Wed Jul 12 2006 - 09:46:30 EST Prior to 2.6.18rc1 you could install with devices on a JMicron chipset using the "all-generic-ide" option. As of this kernel the AHCI driver grabs the controller and rams it into AHCI mode losing the PATA ports and making CD drives and the like vanish. The all-generic-ide option fails because the AHCI driver grabbed the PCI device and reconfigured it. To fix this three things are needed. #1 We must put the chip into dual function mode #2 The AHCI driver must grab only function 0 (already in your rc1 tree) #3 Something must grab the PATA ports The attached patch is the minimal risk edition of this. It puts the chip into dual function mode so that AHCI will grab the SATA ports without losing the PATA ports. To keep the risk as low as possible the third patch adds the PCI identifiers for the PATA port and the FN check to the ide-generic driver. There is a more featured jmicron driver on its way but that adds risk and the ide-generic support is sufficient to install and run a system. The actual chip setup done by the quirk is the precise setup recommended by the vendor. (The JMB368 appears only in the ide-generic entry as it has no AHCI so does not need the quirk) ---------------------------------------------------