mirror of
https://github.com/AuxXxilium/arc-addons.git
synced 2024-11-23 21:50:52 +07:00
amepatch: remove
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
This commit is contained in:
parent
23e77ae662
commit
7c70ba5a98
@ -1,83 +0,0 @@
|
||||
#!/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 [ -d "/var/packages/CodecPack" ]; then
|
||||
/usr/syno/etc/rc.sysv/apparmor.sh remove_packages_profile 0 CodecPack
|
||||
|
||||
cp_usr_path="/var/packages/CodecPack/target/usr"
|
||||
values=('669066909066906690' 'B801000000' '30')
|
||||
hex_values=('1F28' '48F5' '4921' '4953' '4975' '9AC8')
|
||||
indices=(0 1 1 1 1 2)
|
||||
so="$cp_usr_path/lib/libsynoame-license.so"
|
||||
so_backup="$cp_usr_path/lib/libsynoame-license.so.orig"
|
||||
lic="/usr/syno/etc/license/data/ame/offline_license.json"
|
||||
lic_backup="/usr/syno/etc/license/data/ame/offline_license.json.orig"
|
||||
licsig="/usr/syno/etc/license/data/ame/offline_license.sig"
|
||||
licsig_backup="/usr/syno/etc/license/data/ame/offline_license.sig.orig"
|
||||
|
||||
if [ ! -f "$so_backup" ]; then
|
||||
cp -p "$so" "$so_backup"
|
||||
fi
|
||||
if [ ! -f "$lic_backup" ]; then
|
||||
cp -p "$lic" "$lic_backup"
|
||||
fi
|
||||
if [ ! -f "$licsig_backup" ]; then
|
||||
cp -p "$licsig" "$licsig_backup"
|
||||
fi
|
||||
|
||||
hash_to_check="$(md5sum -b "$so" | awk '{print $1}')"
|
||||
|
||||
if [ "$hash_to_check" = "fcc1084f4eadcf5855e6e8494fb79e23" ]; then
|
||||
hex_values=('1F28' '48F5' '4921' '4953' '4975' '9AC8')
|
||||
content='[{"appType": 14, "appName": "ame", "follow": ["device"], "server_time": 1666000000, "registered_at": 1651000000, "expireTime": 0, "status": "valid", "firstActTime": 1651000001, "extension_gid": null, "licenseCode": "0", "duration": 1576800000, "attribute": {"codec": "hevc", "type": "free"}, "licenseContent": 1}, {"appType": 14, "appName": "ame", "follow": ["device"], "server_time": 1666000000, "registered_at": 1651000000, "expireTime": 0, "status": "valid", "firstActTime": 1651000001, "extension_gid": null, "licenseCode": "0", "duration": 1576800000, "attribute": {"codec": "aac", "type": "free"}, "licenseContent": 1}]'
|
||||
elif [ "$hash_to_check" = "923fd0d58e79b7dc0f6c377547545930" ]; then
|
||||
hex_values=('1F28' '48F5' '4921' '4953' '4975' '9AC8')
|
||||
content='[{"appType": 14, "appName": "ame", "follow": ["device"], "server_time": 1666000000, "registered_at": 1651000000, "expireTime": 0, "status": "valid", "firstActTime": 1651000001, "extension_gid": null, "licenseCode": "0", "duration": 1576800000, "attribute": {"codec": "hevc", "type": "free"}, "licenseContent": 1}, {"appType": 14, "appName": "ame", "follow": ["device"], "server_time": 1666000000, "registered_at": 1651000000, "expireTime": 0, "status": "valid", "firstActTime": 1651000001, "extension_gid": null, "licenseCode": "0", "duration": 1576800000, "attribute": {"codec": "aac", "type": "free"}, "licenseContent": 1}]'
|
||||
elif [ "$hash_to_check" = "09e3adeafe85b353c9427d93ef0185e9" ]; then
|
||||
hex_values=('3718' '60A5' '60D1' '6111' '6137' 'B5F0')
|
||||
content='[{"attribute": {"codec": "hevc", "type": "free"}, "status": "valid", "extension_gid": null, "expireTime": 0, "appName": "ame", "follow": ["device"], "duration": 1576800000, "appType": 14, "licenseContent": 1, "registered_at": 1649315995, "server_time": 1685421618, "firstActTime": 1649315995, "licenseCode": "0"}, {"attribute": {"codec": "aac", "type": "free"}, "status": "valid", "extension_gid": null, "expireTime": 0, "appName": "ame", "follow": ["device"], "duration": 1576800000, "appType": 14, "licenseContent": 1, "registered_at": 1649315995, "server_time": 1685421618, "firstActTime": 1649315995, "licenseCode": "0"}]'
|
||||
else
|
||||
echo "MD5 mismatch - Already patched or unsupported version!"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
for ((i = 0; i < ${#hex_values[@]}; i++)); do
|
||||
offset=$(( 0x${hex_values[i]} + 0x8000 ))
|
||||
value=${values[indices[i]]}
|
||||
printf '%s' "$value" | xxd -r -p | dd of="$so" bs=1 seek="$offset" conv=notrunc
|
||||
if [[ $? -ne 0 ]]; then
|
||||
echo -e "AME Patch: Error while writing to file!"
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
|
||||
mkdir -p "$(dirname "${lic}")"
|
||||
rm -f "${lic}"
|
||||
echo "${content}" >"${lic}"
|
||||
|
||||
if "$cp_usr_path/bin/synoame-bin-check-license"; then
|
||||
echo -e "AME Patch: Downloading Codec!"
|
||||
if "$cp_usr_path/bin/synoame-bin-auto-install-needed-codec"; then
|
||||
echo -e "AME Patch: Successful!"
|
||||
exit 0
|
||||
fi
|
||||
fi
|
||||
echo -e "AME Patch: Unsuccessful!"
|
||||
if [ -f "$so_backup" ]; then
|
||||
mv -f "$so_backup" "$so"
|
||||
fi
|
||||
if [ -f "$lic_backup" ]; then
|
||||
mv -f "$lic_backup" "$lic"
|
||||
fi
|
||||
if [ -f "$licsig_backup" ]; then
|
||||
mv -f "$licsig_backup" "$licsig"
|
||||
fi
|
||||
echo -e "AME Patch: Backup restored!"
|
||||
exit 1
|
||||
fi
|
||||
exit 0
|
@ -1,48 +0,0 @@
|
||||
#!/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 amepatch - ${1}"
|
||||
mkdir -p "/tmpRoot/usr/arc/addons/"
|
||||
cp -vf "${0}" "/tmpRoot/usr/arc/addons/"
|
||||
cp -vf /usr/bin/amepatch.sh /tmpRoot/usr/bin/amepatch.sh
|
||||
|
||||
mkdir -p "/tmpRoot/usr/lib/systemd/system"
|
||||
DEST="/tmpRoot/usr/lib/systemd/system/amepatch.service"
|
||||
cat > ${DEST} <<EOF
|
||||
[Unit]
|
||||
Description=addon amepatch
|
||||
After=multi-user.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
Restart=on-failure
|
||||
RestartSec=5s
|
||||
RemainAfterExit=yes
|
||||
ExecStartPre=/usr/bin/amepatch.sh
|
||||
ExecStart=/usr/syno/bin/synopkg restart CodecPack
|
||||
ExecStartPost=/usr/bin/systemctl stop amepatch
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
||||
[X-Synology]
|
||||
Author=Virtualization Team
|
||||
EOF
|
||||
mkdir -vp /tmpRoot/usr/lib/systemd/system/multi-user.target.wants
|
||||
ln -vsf /usr/lib/systemd/system/amepatch.service /tmpRoot/usr/lib/systemd/system/multi-user.target.wants/amepatch.service
|
||||
elif [ "${1}" = "uninstall" ]; then
|
||||
echo "Installing addon amepatch - ${1}"
|
||||
|
||||
rm -f "/tmpRoot/usr/lib/systemd/system/multi-user.target.wants/amepatch.service"
|
||||
rm -f "/tmpRoot/usr/lib/systemd/system/amepatch.service"
|
||||
rm -f "/tmpRoot/usr/bin/amepatch.sh"
|
||||
|
||||
[ ! -f "/tmpRoot/usr/arc/revert.sh" ] && echo '#!/usr/bin/env bash' >/tmpRoot/usr/arc/revert.sh && chmod +x /tmpRoot/usr/arc/revert.sh
|
||||
echo "rm -f /usr/bin/amepatch.sh" >>/tmpRoot/usr/arc/revert.sh
|
||||
fi
|
@ -1,19 +0,0 @@
|
||||
version: 1
|
||||
name: amepatch
|
||||
description: "Dynamic Licensepatch for AME (depends on Arc Patch)"
|
||||
system: false
|
||||
beta: false
|
||||
all:
|
||||
install-script: "install.sh"
|
||||
copy: "all"
|
||||
apollolake: true
|
||||
broadwell: true
|
||||
broadwellnk: true
|
||||
broadwellnkv2: true
|
||||
broadwellntbap: true
|
||||
denverton: true
|
||||
geminilake: true
|
||||
purley: true
|
||||
v1000: true
|
||||
r1000: true
|
||||
epyc7002: true
|
Loading…
Reference in New Issue
Block a user