├── .clang-format ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── debian ├── changelog ├── cm4io-fan-dkms.dkms ├── compat ├── control └── rules ├── dkms.conf ├── dkms.post_build ├── dkms.post_install ├── dkms.post_remove ├── emc2301 ├── Kbuild ├── Makefile ├── USAGE.md └── emc2301.c ├── install.sh └── overlays ├── Makefile └── cm4io-fan-overlay.dts /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/cm4io-fan/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/cm4io-fan/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/cm4io-fan/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/cm4io-fan/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/cm4io-fan/HEAD/README.md -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/cm4io-fan/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/cm4io-fan-dkms.dkms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/cm4io-fan/HEAD/debian/cm4io-fan-dkms.dkms -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/cm4io-fan/HEAD/debian/control -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/cm4io-fan/HEAD/debian/rules -------------------------------------------------------------------------------- /dkms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/cm4io-fan/HEAD/dkms.conf -------------------------------------------------------------------------------- /dkms.post_build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/cm4io-fan/HEAD/dkms.post_build -------------------------------------------------------------------------------- /dkms.post_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/cm4io-fan/HEAD/dkms.post_install -------------------------------------------------------------------------------- /dkms.post_remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/cm4io-fan/HEAD/dkms.post_remove -------------------------------------------------------------------------------- /emc2301/Kbuild: -------------------------------------------------------------------------------- 1 | obj-m := emc2301.o 2 | -------------------------------------------------------------------------------- /emc2301/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/cm4io-fan/HEAD/emc2301/Makefile -------------------------------------------------------------------------------- /emc2301/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/cm4io-fan/HEAD/emc2301/USAGE.md -------------------------------------------------------------------------------- /emc2301/emc2301.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/cm4io-fan/HEAD/emc2301/emc2301.c -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/cm4io-fan/HEAD/install.sh -------------------------------------------------------------------------------- /overlays/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/cm4io-fan/HEAD/overlays/Makefile -------------------------------------------------------------------------------- /overlays/cm4io-fan-overlay.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neggles/cm4io-fan/HEAD/overlays/cm4io-fan-overlay.dts --------------------------------------------------------------------------------