remotefs: update

Signed-off-by: AuxXxilium <info@auxxxilium.tech>
This commit is contained in:
AuxXxilium 2024-06-29 17:08:40 +02:00
parent 3cbb85f8e3
commit 95781c6f5f
3 changed files with 18 additions and 57 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# #
# Copyright (C) 2023 AuxXxilium <https://github.com/AuxXxilium> and Ing <https://github.com/wjz304> # Copyright (C) 2023 AuxXxilium <https://github.com/AuxXxilium>
# #
# This is free software, licensed under the MIT License. # This is free software, licensed under the MIT License.
# See /LICENSE for more information. # See /LICENSE for more information.

View File

@ -1,28 +0,0 @@
#!/usr/bin/env bash
#
# Copyright (C) 2023 AuxXxilium <https://github.com/AuxXxilium> and Ing <https://github.com/wjz304>
#
# This is free software, licensed under the MIT License.
# See /LICENSE for more information.
#
SO_FILE="/usr/lib/libsynosdk.so.7"
if [ "${1}" = "-r" ]; then
if [ -f "${SO_FILE}.bak" ]; then
mv -f "${SO_FILE}.bak" "${SO_FILE}"
fi
exit
fi
if [ ! -f "${SO_FILE}" ]; then
echo "${SO_FILE} not found"
exit
fi
if [ ! -f "${SO_FILE}.bak" ]; then
echo "Backup ${SO_FILE}"
cp -vfp "${SO_FILE}" "${SO_FILE}.bak"
fi
echo "Patching ${SO_FILE}"
PatchELFSharp "${SO_FILE}" "SYNOFSIsRemoteFS" "B8 00 00 00 00 C3"

View File

@ -1,6 +1,6 @@
#!/usr/bin/env ash #!/usr/bin/env ash
# #
# Copyright (C) 2022 Ing <https://github.com/wjz304> # Copyright (C) 2023 AuxXxilium <https://github.com/AuxXxilium>
# #
# This is free software, licensed under the MIT License. # This is free software, licensed under the MIT License.
# See /LICENSE for more information. # See /LICENSE for more information.
@ -10,35 +10,24 @@ if [ "${1}" = "late" ]; then
echo "Installing addon remotefs - ${1}" echo "Installing addon remotefs - ${1}"
mkdir -p "/tmpRoot/usr/arc/addons/" mkdir -p "/tmpRoot/usr/arc/addons/"
cp -vf "${0}" "/tmpRoot/usr/arc/addons/" cp -vf "${0}" "/tmpRoot/usr/arc/addons/"
cp -vf /usr/bin/PatchELFSharp /tmpRoot/usr/bin/PatchELFSharp
cp -vf /usr/bin/remotefs.sh /tmpRoot/usr/bin/remotefs.sh
mkdir -p "/tmpRoot/usr/lib/systemd/system" SO_FILE="/tmpRoot/usr/lib/libsynosdk.so.7"
DEST="/tmpRoot/usr/lib/systemd/system/remotefs.service" if [ -f "${SO_FILE}" ]; then
echo "[Unit]" >${DEST} if [ ! -f "${SO_FILE}.bak" ]; then
echo "Description=Enable face recognition in Synology Photos" >>${DEST} echo "Backup ${SO_FILE}"
echo "After=multi-user.target" >>${DEST} cp -vfp "${SO_FILE}" "${SO_FILE}.bak"
echo >>${DEST} fi
echo "[Service]" >>${DEST} echo "Patching libsynosdk.so.7"
echo "Type=oneshot" >>${DEST} PatchELFSharp "${SO_FILE}" "SYNOFSIsRemoteFS" "B8 00 00 00 00 C3"
echo "RemainAfterExit=yes" >>${DEST} else
echo "ExecStart=/usr/bin/remotefs.sh" >>${DEST} echo "libsynosdk.so.7 not found"
echo >>${DEST} fi
echo "[Install]" >>${DEST}
echo "WantedBy=multi-user.target" >>${DEST}
mkdir -vp /tmpRoot/usr/lib/systemd/system/multi-user.target.wants
ln -vsf /usr/lib/systemd/system/remotefs.service /tmpRoot/usr/lib/systemd/system/multi-user.target.wants/remotefs.service
elif [ "${1}" = "uninstall" ]; then elif [ "${1}" = "uninstall" ]; then
echo "Installing addon remotefs - ${1}" echo "Installing addon remotefs - ${1}"
rm -f /tmpRoot/usr/bin/PatchELFSharp SO_FILE="/tmpRoot/usr/lib/libsynosdk.so.7"
if [ -f "${SO_FILE}.bak" ]; then
rm -f "/tmpRoot/usr/lib/systemd/system/multi-user.target.wants/remotefs.service" echo "Restore ${SO_FILE}"
rm -f "/tmpRoot/usr/lib/systemd/system/remotefs.service" mv -f "${SO_FILE}.bak" "${SO_FILE}"
fi
[ ! -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/remotefs.sh -r" >> /tmpRoot/usr/arc/revert.sh
echo "rm -f /usr/bin/remotefs.sh" >> /tmpRoot/usr/arc/revert.sh
fi fi