Jump to content

FUJITSU S6410 IG invalid firmware error


robi62

Recommended Posts

Hello there,

 

Change this in your DSDT to get rid of the Only single ram bank error message:

 

Change this in your RTC:

 

Device (RTC)
               {
                   Name (_HID, EisaId ("PNP0B00"))
                   Method (_STA, 0, NotSerialized)
                   {
                       Return (0x0F)
                   }

                   Name (_CRS, ResourceTemplate ()
                   {
                       IO (Decode16,
                           0x0070,             // Range Minimum
                           0x0070,             // Range Maximum
                           0x01,               // Alignment
                           0x02,               // Length
                           )
                       IRQNoFlags ()
                           {8}
                   })
               }

 

To this:

 

Device (RTC)
               {
                   Name (_HID, EisaId ("PNP0B00"))
                   Method (_STA, 0, NotSerialized)
                   {
                       Return (0x0F)
                   }

                   Name (_CRS, ResourceTemplate ()
                   {
                       IO (Decode16,
                           0x0070,             // Range Minimum
                           0x0070,             // Range Maximum
                           0x01,               // Alignment
                           0x08,               // Length
                           )
                       IRQNoFlags ()
                           {8}
                   })
               }

 

And you should be all set.

Link to comment
Share on other sites

  • Replies 24
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Posted Images

Hello there,

 

Change this in your DSDT to get rid of the Only single ram bank error message:

 

Change this in your RTC:

 

Device (RTC)
               {
                   Name (_HID, EisaId ("PNP0B00"))
                   Method (_STA, 0, NotSerialized)
                   {
                       Return (0x0F)
                   }

                   Name (_CRS, ResourceTemplate ()
                   {
                       IO (Decode16,
                           0x0070,         	// Range Minimum
                           0x0070,         	// Range Maximum
                           0x01,           	// Alignment
                           0x02,           	// Length
                           )
                       IRQNoFlags ()
                           {8}
                   })
               }

 

To this:

 

Device (RTC)
               {
                   Name (_HID, EisaId ("PNP0B00"))
                   Method (_STA, 0, NotSerialized)
                   {
                       Return (0x0F)
                   }

                   Name (_CRS, ResourceTemplate ()
                   {
                       IO (Decode16,
                           0x0070,         	// Range Minimum
                           0x0070,         	// Range Maximum
                           0x01,           	// Alignment
                           0x08,           	// Length
                           )
                       IRQNoFlags ()
                           {8}
                   })
               }

 

And you should be all set.

 

Thanks it workedsmile.gif

Link to comment
Share on other sites

Hi SIMEONOFF as much as I liked getting rid of single bank messy the fix gave me problemsi kept getting this error

Sleep failure code 0xc01f0000 0x3ca8f880 then after each reboot cmos error so back like b4

I think fix was only cosmetic[

Link to comment
Share on other sites


×
×
  • Create New...