Typo
[linux_from_scratch_hints.git] / OLD / D-Link-DFE-530TX+.txt
blobe9414b1b28a38d1e1cb5a9ff9501df17ac0304b4
1 TITLE:          D-Link-DFE-530TX+
2 LFS VERSION:    any
3 AUTHOR:         RodZilla <rodzilla2@home.com>
5 SYNOPSIS:
6         How to get a D-Link DFE-530TX+ working.
8 HINT:
9 Thought I would share how I got my D-Link DFE-530TX+ working...
11 The DFE-530TX+ has a different chipset than the DFE-530TX. It's using a
12 Realtek RTL8139 chipset.
14 The kernel I am currently using (2.2.14) doesn't have support for this
15 network card, so I did some web surfing and I foundÿa driver for the
16 card...
18 Information about the driver is located
19 www.scyld.com/network/rtl8139.html
21 To install the driver for this network card, do the following:
23 Download the following files from ftp://ftp.scyld.com/pub/network
24 1. rtl8139.c
25 2. pci-scan.c
26 3. pci-scan.h
27 4. kern-compat.h
29 Compile pci-scan.c:
30 gcc -DMODULE -D__KERNEL__ -O6 -c pci-scan.c
32 Compile rtl8139.c:
33 gcc -DMODULE -D__KERNEL__ -O6 -c rtl8139.c
35 Testing the module:
36 insmod rtl8139.o
38 If you get any unresolved symbol errors, try doing 'insmod pci-scan.o'
39 first...
41 Installing the modules:
42 install -m 644 pci-scan.o /lib/modules/<your kernel version>/net/
43 install -m 644 rtl8139.o /lib/modules/<your kernel version>/net/
45 -Remember to replace <your kernel version> with the version number of
46 your kernel, e.g. 2.2.14
48 Add the line below to your modules.conf (or, in some cases,
49 conf.modules):
50 alias eth0 rtl8139
52 Do a 'depmod' command to update the modules database
54 Now you should be able to successfully finish step 9 (setting up basic
55 networking) of the lfs book...
57 Hope this helps anyone having problems with this network card. I was
58 getting ready to return it to the store, until i found what driver the
59 card needed...