From 22ec492d1d3c3447c9fe15c198c96e1f98042b9d Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 1 Feb 2019 08:46:36 -0700 Subject: [PATCH] Create README.md --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..2efa364 --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +# system76-dkms +System76 DKMS driver + +On newer System76 laptops, this driver controls some of the hotkeys and allows for custom fan control. + +## Development + +To install this as a kernel module: + +``` +# Compile the module +make +# Remove any old instances +sudo modprobe -r system76 +# Insert the new module +sudo insmod system76.ko +# View log messages +dmesg | grep system76 +```