1

I need to support the realtek rtl8139 network card - is this included in modern (> 3.0) linux kernels? do I have to load any modules or install anything?

Michael Neale
  • 3,654
  • 5
  • 27
  • 26

4 Answers4

5

The Realtek is a fairly standard adapter and has been in the mainline kernel for a long time. The driver/module is 8139cp.ko. The device should be auto-detected on a modern Linux distribution.

ewwhite
  • 194,921
  • 91
  • 434
  • 799
3

Sure. Drivers 8139cp and 8139too.

poige
  • 9,171
  • 2
  • 24
  • 50
3

The driver has been included in the standard kernel distribution for many years.

David Schwartz
  • 31,215
  • 2
  • 53
  • 82
1

Depends on your Linux kernel vendor(Linux distribution). But most likely it has one. To check grep/zgrep your /boot/config-$(uname -r) / /proc/config.gz / .config for string 8139:

rbtz@linux:~$ grep 8139 /boot/config-$(uname -r)
CONFIG_8139CP=m
CONFIG_8139TOO=m
CONFIG_8139TOO_PIO=y
# CONFIG_8139TOO_TUNE_TWISTER is not set
CONFIG_8139TOO_8129=y
# CONFIG_8139_OLD_RX_RESET is not set
SaveTheRbtz
  • 5,621
  • 4
  • 29
  • 45