├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── Kbuild ├── LICENSE ├── Makefile ├── README.md ├── debian ├── changelog ├── compat ├── control ├── copyright ├── rules ├── source │ └── format ├── system76-dkms.dkms ├── system76-dkms.install └── system76-dkms.triggers ├── lib └── udev │ └── hwdb.d │ └── 99-system76-dkms.hwdb ├── src ├── Kbuild ├── ap-led.c ├── hwmon.c ├── input.c ├── kb-led.c ├── nv_hda.c └── system76.c └── usr └── share └── initramfs-tools ├── hooks └── system76-dkms └── modules.d └── system76-dkms.conf /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/system76-dkms/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/system76-dkms/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/system76-dkms/HEAD/.gitignore -------------------------------------------------------------------------------- /Kbuild: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-or-later 2 | 3 | obj-y += src/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/system76-dkms/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/system76-dkms/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/system76-dkms/HEAD/README.md -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/system76-dkms/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/system76-dkms/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/system76-dkms/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/system76-dkms/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /debian/system76-dkms.dkms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/system76-dkms/HEAD/debian/system76-dkms.dkms -------------------------------------------------------------------------------- /debian/system76-dkms.install: -------------------------------------------------------------------------------- 1 | lib/udev/hwdb.d 2 | usr/share/initramfs-tools 3 | -------------------------------------------------------------------------------- /debian/system76-dkms.triggers: -------------------------------------------------------------------------------- 1 | activate update-initramfs 2 | -------------------------------------------------------------------------------- /lib/udev/hwdb.d/99-system76-dkms.hwdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/system76-dkms/HEAD/lib/udev/hwdb.d/99-system76-dkms.hwdb -------------------------------------------------------------------------------- /src/Kbuild: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-or-later 2 | 3 | obj-m += system76.o 4 | -------------------------------------------------------------------------------- /src/ap-led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/system76-dkms/HEAD/src/ap-led.c -------------------------------------------------------------------------------- /src/hwmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/system76-dkms/HEAD/src/hwmon.c -------------------------------------------------------------------------------- /src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/system76-dkms/HEAD/src/input.c -------------------------------------------------------------------------------- /src/kb-led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/system76-dkms/HEAD/src/kb-led.c -------------------------------------------------------------------------------- /src/nv_hda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/system76-dkms/HEAD/src/nv_hda.c -------------------------------------------------------------------------------- /src/system76.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/system76-dkms/HEAD/src/system76.c -------------------------------------------------------------------------------- /usr/share/initramfs-tools/hooks/system76-dkms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/system76-dkms/HEAD/usr/share/initramfs-tools/hooks/system76-dkms -------------------------------------------------------------------------------- /usr/share/initramfs-tools/modules.d/system76-dkms.conf: -------------------------------------------------------------------------------- 1 | system76 2 | --------------------------------------------------------------------------------