You've already forked Geekwom-NASPi-Daemon
Inital Commit
All checks were successful
Geekwom NASPi Daemon / Geekwom NASPi Daemon [arm64] (push) Successful in 10s
All checks were successful
Geekwom NASPi Daemon / Geekwom NASPi Daemon [arm64] (push) Successful in 10s
This commit is contained in:
21
root/DEBIAN/preinst
Normal file
21
root/DEBIAN/preinst
Normal file
@@ -0,0 +1,21 @@
|
||||
#!/usr/bin/sh
|
||||
|
||||
set -e
|
||||
set -u
|
||||
|
||||
case "${1}" in
|
||||
install)
|
||||
BOOT=$(/usr/bin/grep '/boot' '/etc/fstab' | /usr/bin/mawk '$1 !~ /^#/ && $2 ~ /^[/]/ {print $2}')
|
||||
/usr/bin/test -n "${BOOT}"
|
||||
/usr/bin/echo '' >> "${BOOT}/config.txt"
|
||||
/usr/bin/echo '## pwm-2chan' >> "${BOOT}/config.txt"
|
||||
/usr/bin/echo '## Load the Pulse-Width Modulation driver.' >> "${BOOT}/config.txt"
|
||||
/usr/bin/echo '##' >> "${BOOT}/config.txt"
|
||||
/usr/bin/echo 'dtoverlay=pwm-2chan' >> "${BOOT}/config.txt"
|
||||
/usr/bin/echo '##'
|
||||
/usr/bin/echo '##'
|
||||
/usr/bin/echo '## Restart the device to load the necessary drivers.'
|
||||
/usr/bin/echo '##'
|
||||
/usr/bin/echo '##'
|
||||
;;
|
||||
esac
|
||||
Reference in New Issue
Block a user