Changeset 384 for freebsd-rtl-driver
- Timestamp:
- Feb 5, 2015, 7:34:52 AM (10 years ago)
- Location:
- freebsd-rtl-driver
- Files:
-
- 2 added
- 3 deleted
- 2 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
freebsd-rtl-driver/Makefile
r267 r384 14 14 15 15 DEBUG_FLAGS= -g 16 KMOD= if_ mos16 KMOD= if_rtl 17 17 SRCS= opt_bus.h opt_usb.h device_if.h bus_if.h usb_if.h usbdevs.h \ 18 18 miibus_if.h opt_inet.h \ 19 if_ mos.c19 if_rtl.c 20 20 21 21 .include <bsd.kmod.mk> … … 32 32 33 33 code: 34 vim -o /usr/src/sys/dev/usb/net/if_rue.c if_ mos.c34 vim -o /usr/src/sys/dev/usb/net/if_rue.c if_rtl.c -
freebsd-rtl-driver/README
r283 r384 1 1 EXPERIMENTAL Beta code, use with care. Active development. 2 2 3 Status: It has been committed to HEAD (r218729). 4 Target: Get it RELENG_8 to make it into release. 3 Status: Development 4 Target: Get it on 10-STABLE to make it into release. 5 6 No datasheets available after requests, I quote: ``` Due to company policy, we 7 only release Datasheet to our ODM/OEM ( which have signed a company to company 8 NDA with Realtek ). Please follow the linux source code for porting, thanks. 9 """ 10 11 Linux reference driver: http://lxr.free-electrons.com/source/drivers/net/usb/r8152.c 5 12 6 13 7 14 == INTRO == 8 The FreeBSD if_mos.c driver is based on various different sources: 9 The vendor provided driver at the following URL: 15 The FreeBSD if_rtl.c driver is based on various different sources: 16 17 The vendor provided information at the following URL: 10 18 http://www.moschip.com/data/products/MCS7830/Driver_FreeBSD_7830.tar.gz 11 19 12 Mixed together with the OpenBSD if_mos.c driver for validation and checking13 and the FreeBSD if_r eu.c as reference for the USB Ethernet framework.20 Mixed together with the Linux r8152.c driver for validation and checking 21 and the FreeBSD if_rue.c as reference for the USB Ethernet framework. 14 22 15 23 == COMPILE & RUN == 16 1. Make sure you got the FreeBSD source (RELENG_8)checked out in /usr/src24 1. Make sure you got the FreeBSD source checked out in /usr/src 17 25 2. make load 18 26 3. Driver ready for use (device found is ue0)
Note:
See TracChangeset
for help on using the changeset viewer.