Signed-off Marc Bertens <[email protected]> In my earlier mail i forgot one file to patch.
On Tue, 2010-05-25 at 23:22 +0200, mbertens wrote: > Ok, new try > > Please check it, if there is still something not > correct please let me known, then ill fix the problem. > > Thanks > > Marc > > > On Tue, 2010-05-25 at 23:05 +0200, mbertens wrote: > > Still wrong, i saw of later comments in the mail that i need to fix, so > > disregard my previous message. > > > > On Tue, 2010-05-25 at 23:02 +0200, mbertens wrote: > > > I made a new diff, please check it, if there is still something not > > > correct please let me known, then ill fix the problem. > > > > > > Marc > > > > > > > > > On Tue, 2010-05-25 at 10:34 -0600, Myles Watson wrote: > > > > > > > > > -----Original Message----- > > > > > From: mbertens [mailto:[email protected]] > > > > > Sent: Tuesday, May 25, 2010 10:21 AM > > > > > To: Myles Watson > > > > > Cc: Coreboot mailinglist > > > > > Subject: Re: [coreboot] Patch for Nokia-IP530, now with working PIRQ > > > > > table > > > > > > > > > > Signed-off Marc Bertens <[email protected]> > > > > > > > > > > > > +<<<<<<< .mine > > > > +config VENDOR_NOKIA > > > > + bool "Nokia" > > > > +======= > > > > config VENDOR_WYSE > > > > bool "Wyse" > > > > +>>>>>>> .r5583 > > > > > > > > This means that there was a conflict. When your patch is ready there > > > > shouldn't be any conflicts, and it should be obvious why you're making > > > > the > > > > changes. One thing that might help you would be to check out another > > > > copy > > > > of coreboot and test patches on that unmodified repository. > > > > > > > > Thanks, > > > > Myles > > > > > > > > > > > -- > > > coreboot mailing list: [email protected] > > > http://www.coreboot.org/mailman/listinfo/coreboot > -- > coreboot mailing list: [email protected] > http://www.coreboot.org/mailman/listinfo/coreboot
Index: src/arch/i386/boot/pirq_routing.c =================================================================== --- src/arch/i386/boot/pirq_routing.c (revision 5591) +++ src/arch/i386/boot/pirq_routing.c (working copy) @@ -121,7 +121,11 @@ printk(BIOS_DEBUG, "INT: %c link: %x bitmap: %x ", 'A' + j, link, bitmap); - + // fix made by Marc Bertens <[email protected]> + if (link > 0x5f) { + // This is basically for the 440BX + link -= 0x5f; + } if (!bitmap|| !link || link > 4) { printk(BIOS_DEBUG, "not routed\n");
-- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

