ledcontrol: init

Signed-off-by: AuxXxilium <info@auxxxilium.tech>
This commit is contained in:
AuxXxilium 2024-06-30 21:33:30 +02:00
parent e33a1e9561
commit afdf5a6a5d
9 changed files with 92 additions and 0 deletions

BIN
ledcontrol/all/usr/bin/i2cdetect Executable file

Binary file not shown.

BIN
ledcontrol/all/usr/bin/i2cdump Executable file

Binary file not shown.

BIN
ledcontrol/all/usr/bin/i2cget Executable file

Binary file not shown.

BIN
ledcontrol/all/usr/bin/i2cset Executable file

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,23 @@
#!/usr/bin/env bash
#
# Copyright (C) 2023 AuxXxilium <https://github.com/AuxXxilium>
#
# This is free software, licensed under the MIT License.
# See /LICENSE for more information.
#
if [ "${1}" = "on" ]; then
echo "Enable Ugreen LED"
ugreen_leds_cli all -on -color 255 255 255 -brightness 65
elif [ "${1}" = "off" ]; then
echo "Disable Ugreen LED"
ugreen_leds_cli all -off
elif [ "${1}" = "blink" ]; then
echo "Blink Ugreen LED"
ugreen_leds_cli all -blink -color 255 255 255 -brightness 65
elif [ "${1}" = "install" ]; then
modprobe i2c-algo-bit
modprobe i2c-smbus
modprobe i2c-i801
fi
exit 0

Binary file not shown.

50
ledcontrol/install.sh Executable file
View File

@ -0,0 +1,50 @@
#!/usr/bin/env ash
#
# Copyright (C) 2023 AuxXxilium <https://github.com/AuxXxilium>
#
# This is free software, licensed under the MIT License.
# See /LICENSE for more information.
#
if [ "${1}" = "late" ]; then
echo "Installing addon ledcontrol - ${1}"
mkdir -p "/tmpRoot/usr/arc/addons/"
cp -vf "${0}" "/tmpRoot/usr/arc/addons/"
cp -vf /usr/lib/modules/i2c* /tmpRoot/usr/lib/modules/
cp -vf /usr/bin/i2c* /tmpRoot/usr/bin/
cp -vf /usr/bin/ledcontrol.sh /tmpRoot/usr/bin/ledcontrol.sh
cp -vf /usr/bin/ugreen_leds_cli /tmpRoot/usr/bin/ugreen_leds_cli
mkdir -p "/tmpRoot/usr/lib/systemd/system"
DEST="/tmpRoot/usr/lib/systemd/system/ledcontrol.service"
cat > ${DEST} <<EOF
[Unit]
Description=Adds Ledcontrol for Ugreen
DefaultDependencies=no
IgnoreOnIsolate=true
After=multi-user.target
[Service]
User=root
Restart=always
RestartSec=5
RemainAfterExit=yes
ExecStartPre=/usr/bin/ledcontrol.sh install
ExecStart=/usr/bin/lecontrol.sh on
[Install]
WantedBy=multi-user.target
EOF
mkdir -vp /tmpRoot/usr/lib/systemd/system/multi-user.target.wants
ln -vsf /usr/lib/systemd/system/ledcontrol.service /tmpRoot/usr/lib/systemd/system/multi-user.target.wants/ledcontrol.service
elif [ "${1}" = "uninstall" ]; then
echo "Installing addon ledcontrol - ${1}"
rm -f "/tmpRoot/usr/lib/systemd/system/multi-user.target.wants/ledcontrol.service"
rm -f "/tmpRoot/usr/lib/systemd/system/ledcontrol.service"
[ ! -f "/tmpRoot/usr/arc/revert.sh" ] && echo '#!/usr/bin/env bash' >/tmpRoot/usr/arc/revert.sh && chmod +x /tmpRoot/usr/arc/revert.sh
echo "/usr/bin/ledcontrol.sh" >>/tmpRoot/usr/arc/revert.sh
echo "rm -f /usr/bin/ledcontrol.sh" >>/tmpRoot/usr/arc/revert.sh
fi

19
ledcontrol/manifest.yml Normal file
View File

@ -0,0 +1,19 @@
version: 1
name: ledcontrol
description: "Add Ugreen Ledcontrol to DSM"
system: false
beta: true
all:
install-script: "install.sh"
copy: "all"
apollolake: false
broadwell: false
broadwellnk: false
broadwellnkv2: false
broadwellntbap: false
denverton: false
geminilake: false
purley: false
v1000: false
r1000: false
epyc7002: true