Add kernel module build unit

This commit is contained in:
Vadim Vetrov
2024-09-02 00:32:55 +03:00
parent db1f5ee4f1
commit ad9a337795
3 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#!/bin/sh /etc/rc.common
START=91
STOP=91
# Openwrt init script. It just runs and stops the kernel module.
start() {
modprobe kyoutubeUnblock
}
stop() {
rmmod kyoutubeUnblock
}