Re: Running Linux and Netfilter on Nokia IP Series Hardware Submitted by Anonymous on Tue, 2004-05-04 01:00. I have a Nokia IP 330 (K62-400/256MB) working with Gentoo 2004.1 on kernel 2.6.5-mm6. Make sure you install distcc :) I had to make two changes to e100.c in /usr/src/linux/drivers/net/ to handle the bad eeprom errors: - if(checksum != nic->eeprom[nic->eeprom_wc - 1]) { + /*if(checksum != nic->eeprom[nic->eeprom_wc - 1]) { */ + if (0) and - if(!is_valid_ether_addr(netdev->dev_addr)) { + /*if(!is_valid_ether_addr(netdev->dev_addr)) { */ + if (0) { Dan