2024-05-05 06:16:56 +07:00
|
|
|
#!/usr/bin/env ash
|
|
|
|
#
|
2024-11-08 01:15:46 +07:00
|
|
|
# Copyright (C) 2024 AuxXxilium <https://github.com/AuxXxilium> and Ing <https://github.com/wjz304>
|
2024-05-05 06:16:56 +07:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the MIT License.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
if [ "${1}" = "late" ]; then
|
|
|
|
echo "Installing addon remotefs - ${1}"
|
2024-05-07 14:20:11 +07:00
|
|
|
mkdir -p "/tmpRoot/usr/arc/addons/"
|
|
|
|
cp -vf "${0}" "/tmpRoot/usr/arc/addons/"
|
2024-05-05 06:16:56 +07:00
|
|
|
|
2024-06-29 22:08:40 +07:00
|
|
|
SO_FILE="/tmpRoot/usr/lib/libsynosdk.so.7"
|
|
|
|
if [ -f "${SO_FILE}" ]; then
|
|
|
|
echo "Patching libsynosdk.so.7"
|
2024-11-08 01:15:46 +07:00
|
|
|
[ ! -f "${SO_FILE}.bak" ] && cp -f "${SO_FILE}" "${SO_FILE}.bak"
|
|
|
|
# force to support remote fs
|
2024-06-29 22:08:40 +07:00
|
|
|
PatchELFSharp "${SO_FILE}" "SYNOFSIsRemoteFS" "B8 00 00 00 00 C3"
|
|
|
|
else
|
|
|
|
echo "libsynosdk.so.7 not found"
|
|
|
|
fi
|
2024-05-05 06:16:56 +07:00
|
|
|
elif [ "${1}" = "uninstall" ]; then
|
|
|
|
echo "Installing addon remotefs - ${1}"
|
|
|
|
|
2024-06-29 22:08:40 +07:00
|
|
|
SO_FILE="/tmpRoot/usr/lib/libsynosdk.so.7"
|
2024-11-08 01:15:46 +07:00
|
|
|
[ -f "${SO_FILE}.bak" ] && mv -f "${SO_FILE}.bak" "${SO_FILE}"
|
2024-05-19 21:40:09 +07:00
|
|
|
fi
|