├── .gitattributes ├── .gitignore ├── README.md └── src ├── Makefile ├── r8125.h ├── r8125_dash.h ├── r8125_firmware.c ├── r8125_firmware.h ├── r8125_n.c ├── r8125_ptp.c ├── r8125_ptp.h ├── r8125_realwow.h ├── r8125_rss.c ├── r8125_rss.h ├── rtl_eeprom.c ├── rtl_eeprom.h ├── rtltool.c └── rtltool.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabrezm/r8125-synology/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.ko 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabrezm/r8125-synology/HEAD/README.md -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabrezm/r8125-synology/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/r8125.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabrezm/r8125-synology/HEAD/src/r8125.h -------------------------------------------------------------------------------- /src/r8125_dash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabrezm/r8125-synology/HEAD/src/r8125_dash.h -------------------------------------------------------------------------------- /src/r8125_firmware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabrezm/r8125-synology/HEAD/src/r8125_firmware.c -------------------------------------------------------------------------------- /src/r8125_firmware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabrezm/r8125-synology/HEAD/src/r8125_firmware.h -------------------------------------------------------------------------------- /src/r8125_n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabrezm/r8125-synology/HEAD/src/r8125_n.c -------------------------------------------------------------------------------- /src/r8125_ptp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabrezm/r8125-synology/HEAD/src/r8125_ptp.c -------------------------------------------------------------------------------- /src/r8125_ptp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabrezm/r8125-synology/HEAD/src/r8125_ptp.h -------------------------------------------------------------------------------- /src/r8125_realwow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabrezm/r8125-synology/HEAD/src/r8125_realwow.h -------------------------------------------------------------------------------- /src/r8125_rss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabrezm/r8125-synology/HEAD/src/r8125_rss.c -------------------------------------------------------------------------------- /src/r8125_rss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabrezm/r8125-synology/HEAD/src/r8125_rss.h -------------------------------------------------------------------------------- /src/rtl_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabrezm/r8125-synology/HEAD/src/rtl_eeprom.c -------------------------------------------------------------------------------- /src/rtl_eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabrezm/r8125-synology/HEAD/src/rtl_eeprom.h -------------------------------------------------------------------------------- /src/rtltool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabrezm/r8125-synology/HEAD/src/rtltool.c -------------------------------------------------------------------------------- /src/rtltool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabrezm/r8125-synology/HEAD/src/rtltool.h --------------------------------------------------------------------------------