Advertisement
Guest User

Untitled

a guest
May 29th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1.  
  2. The Linux Driver Installation Instructions for
  3. U.S. Robotics Cardbus 10/100 Ethernet PC Card (Realtek RTL8139C-Based)
  4. Version 1.00(12 May 2004)
  5.  
  6. CONTENTS
  7. 1. Introduction
  8. 2. PC Card Model
  9. 3. Tested Kernel Versions
  10. 4. File List
  11. 5. Installation Procedures
  12. 6. Operation Mode Settings
  13. 7. Technical Support
  14. 8. Copyright
  15.  
  16. Introduction
  17. ------------
  18. This driver is based on 8139too.c version 0.9.24 written by Donald Becker
  19. and modified by U.S. Robotics to add more supported vendors.
  20.  
  21. PC Card Model
  22. --------------
  23.  
  24. U.S. Robotics Cardbus 10/100 Ethernet PC Card
  25.  
  26. Tested Kernel Versions
  27. ----------------------
  28.  
  29. This device driver has been fully tested on the following kernel versions:
  30. 2.4.2
  31. 2.4.7
  32. 2.4.18
  33. 2.4.19
  34. 2.4.20-8
  35.  
  36. File List
  37. ---------
  38. The complete files list is as follow:
  39.  
  40. readme.txt
  41. Makefile
  42. usr.c
  43.  
  44.  
  45. Installation Procedures
  46. ------------------------
  47.  
  48. 1. Uncompress the attached file to an empty floppy disk.
  49.  
  50. 2. To login as the root.
  51.  
  52. 3. Copy the driver source files to a convenient directory, simply do
  53.  
  54. 4. Modify the Makefile
  55.  
  56. Please modify the following line to specify the correct Kernel version.
  57. NEW_INCLUDE_PATH = /usr/src/linux-x/include/
  58. Comment: X->indicates the current kernel version
  59.  
  60. 5. To compile and generate the object code from the driver source code
  61.  
  62. #make
  63. The final file is usr.o
  64.  
  65. 6. Copy the module "usr.o" to
  66. "/lib/modules/{kernel-version}/kernel/drivers/pcmcia"
  67.  
  68. *The directory "{kernel-version}" stands for the Linux kernel
  69. version you use.
  70.  
  71.  
  72. 7. Insert the driver as module:
  73. #insmod mii
  74. #insmod usr.o
  75.  
  76. 8. Edit config:
  77. ->Add 5 lines to the file "/etc/pcmcia/config"
  78.  
  79. #
  80. # Device driver definitions
  81. #
  82.  
  83. device "usr" (==>Add 1/5)
  84. class "network" module "usr" (==>Add 2/5)
  85.  
  86. :
  87. :
  88.  
  89. #
  90. # 10/100BaseT Network Adapter
  91. #
  92.  
  93. card "U.S. Robotics CardBus 10/100 Ethernet PC Card" (==>Add 3/5)
  94. manfid 0x0000, 0x024c (==>Add 4/5)
  95. bind "usr" (==>Add 5/5)
  96.  
  97. The values 0x0000, 0x024c are JEDEC ID and can be read by typing
  98. "cardctl ident" on console with one card on socket.
  99.  
  100.  
  101. 9. To reboot the Linux system
  102.  
  103. #shutdown -r now
  104.  
  105. 8. To login as the root.
  106.  
  107. 9. To Set up the IP configuration
  108.  
  109. #netconfig
  110.  
  111. 10. To reboot the Linux system
  112.  
  113. #shutdown -r now
  114.  
  115.  
  116. Copyright
  117. ----------
  118. This document can be freely used and redistributed without any
  119. prior permission.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement