[PATCH] Bug in UUID determiniation in fs/fat.c

2009-01-20 Thread Daniel Mierswa
I found that during playing with ls -a. The UUID needs to be right-shifted 16 times since it's a 32bit value and we need two 16bit values. :) -- Mierswa, Daniel If you still don't like it, that's ok: that's why I'm boss. I simply know better than you do. --- Linus Torvalds, comp.o

[PATCH] (ata.mod) Fix read/write, improve status check

2009-01-20 Thread Christian Franke
This patch fixes these open issues: - grub_pio_read/write() check the ERR bit without ensuring !BSY. - ata_read fails if (batch % size) == 0. - ata_write does not work at all, it uses the read cmd. Christian 2009-01-20 Christian Franke * disk/ata.c (grub_ata_wait_status): Replac

present stage of grub2

2009-01-20 Thread J.Bakshi
Dear all, What is the present stage of grub2 ? can it be used now to get all the fancy screen etc ? I have seen the ubuntu is using the grub2 excellently ? IS it possible to get the same in debian lenny with out any patch ? kindly enlighten me and please suggest me where can I get in depth docu

Re: [PATCH] (ata.mod) Fix ATAPI protocol

2009-01-20 Thread Christian Franke
Marco Gerards wrote: > > Committed, plus an additional wait in grub_atapi_identify. > > Great! :-) > > > Open issues: > > - grub_pio_read/write() check the ERR bit without ensuring !BSY. > > - ata_read fails if (batch % size) == 0. > > - ata_write does not work at all, it uses the read cmd. > >

Re: [PATCH] (ata.mod) Fix ATAPI protocol

2009-01-20 Thread Marco Gerards
Christian Franke writes: > Christian Franke wrote: >> Marco Gerards wrote: >> >>> Christian Franke <...> writes: >>> >>> This patch fixes the data I/O protocol of the ATA PACKET command. The current implementation does not read the byte count registers. ATAPI read may not work