Jump to content
XPEnology Community

How to compile driver for gnoboot 10.5?


buddy101

Recommended Posts

Hi,

 

I have a problem with my Intel 82574L onboard NICs. The NVM checksum is corrupt and I have no possibility to flash a new EEPROM to the cards.

That's the reason, why the E1000E driver will not load the two cards in gnoboot 10.5 (Error: "The NVM Checksum Is Not Valid").

 

How can I recompile the E1000E driver?

I've read that outcommenting the NVM checksum procedure from the netdev.c will be a workaround for my problem.

 

This is the procedure, which should be outcommented:

	for (i = 0;; i++) {
	if (e1000_validate_nvm_checksum(&adapter->hw) >= 0)
		break;
	if (i == 2) {
		dev_err(pci_dev_to_dev(pdev),
			"The NVM Checksum Is Not Valid\n");
		err = -EIO;
		goto err_eeprom;
	}
}

 

Maybe someone could help me? Have no other possibility to access the NAS system (no addon card option).

 

Best regards

 

buddy101

Link to comment
Share on other sites

×
×
  • Create New...