https://github.com/noud/em1010
Eminent Networking Adapterek EM1010 10/100Mbps USB Networking Adapter (Linux)
https://github.com/noud/em1010
driver ethernet linux usb
Last synced: about 1 month ago
JSON representation
Eminent Networking Adapterek EM1010 10/100Mbps USB Networking Adapter (Linux)
- Host: GitHub
- URL: https://github.com/noud/em1010
- Owner: noud
- Created: 2020-07-11T08:31:04.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-11T12:41:52.000Z (almost 6 years ago)
- Last Synced: 2025-03-25T17:40:50.317Z (about 1 year ago)
- Topics: driver, ethernet, linux, usb
- Language: C
- Homepage:
- Size: 37.1 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
To compile the module
1) make
To load & unload the module dynamically
1) make load
2) make unload
To load & unload the module statically
1) make install
2) make uninstall
To configure the device
1) ifconfig ethx xxx.xxx.xxx.xxx
To know the speed & mode of the ethx device
1) mii-tool ethx
To change the speed and mode of the ethx device
1) EX:- mii-tool usbx -F 100baseTx-HD (this will switch into 100 half duplex mode)
To switch into Autoconfiguration mode(ie,100 Full) from any mode
1) mii-tool ethx -r
This mcs7830 Linux driver source has support for
1) Internal PHY mode
2) External(INTEL) PHY mode
3) WITHOUT PHY mode (MII mode)
NOTE:
=====
In order to switch to WITHOUT PHY mode, before loading the driver
module we need to set the WITHOUT_PHY flag
ie,
make WITHOUT_PHY = 1 for WITHOUT PHY mode
make WITHOUT_PHY = 0 for ANY PHY (INTERNAL/EXTERNAL) mode.