https://github.com/qu1x/leds-apu2
Kernel module driver for the APU2 LEDs and button
https://github.com/qu1x/leds-apu2
button-control kernel-module led-controller
Last synced: 7 months ago
JSON representation
Kernel module driver for the APU2 LEDs and button
- Host: GitHub
- URL: https://github.com/qu1x/leds-apu2
- Owner: qu1x
- Created: 2017-04-24T08:48:45.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-13T12:35:33.000Z (over 8 years ago)
- Last Synced: 2025-02-22T05:27:27.012Z (11 months ago)
- Topics: button-control, kernel-module, led-controller
- Language: C
- Size: 5.86 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# leds-apu2
**Kernel module driver for the APU2 LEDs and button**
Forked from [LEDE][] and distributed as standalone package.
[LEDE]: https://github.com/lede-project/source
## Installation
0. Requred modules:
* leds-gpio
* gpio-keys-polled
1. Install Linux headers:
```sh
sudo apt-get install linux-headers-$(uname -r)
2. Clone and install this module's sources:
```sh
git clone https://github.com/qu1x/leds-apu2.git
sudo mv leds-apu2 /usr/src/leds-apu2-1.0.0
```
4. Build and install this module:
- Either via Make (must be manually rebuilt for each kernel update):
```sh
sudo make -C /usr/src/leds-apu2-1.0.0 install
```
- Or via DKMS (will be automatically rebuilt for each kernel update):
1. Install DKMS:
```sh
sudo apt-get install dkms
```
2. Install this module:
```sh
sudo dkms install leds-apu2/1.0.0
```
## Big Thanks
...to the module's Author Christian Lamparter for helping me to get it running
with Debian Stretch.