unraid-amd-vendor-reset/vendor-reset.plg

121 lines
3.5 KiB
Plaintext
Raw Normal View History

2020-11-26 21:35:53 +00:00
<?xml version='1.0' standalone='yes'?>
<!DOCTYPE PLUGIN [
2020-11-26 22:28:08 +00:00
<!ENTITY name "vendor-reset">
2020-11-26 21:35:53 +00:00
<!ENTITY author "ich777">
<!ENTITY version "2020.11.26">
<!ENTITY launch "Settings/vendor-reset">
2020-11-26 22:28:08 +00:00
<!ENTITY gitURL "https://github.com/&author;/unraid-amd-&name;/raw/master">
2020-11-26 21:35:53 +00:00
<!ENTITY pluginURL "&gitURL;/&name;.plg">
2020-11-26 22:12:53 +00:00
<!ENTITY md5 "13ca31a1b721079994bef697654b45c7">
2020-11-26 21:35:53 +00:00
<!ENTITY plugin "/boot/config/plugins/&name;">
<!ENTITY emhttp "/usr/local/emhttp/plugins/&name;">
]>
<PLUGIN name="&name;" author="&author;" version="&version;" launch="&launch;" pluginURL="&pluginURL;" min="6.9.0-beta31" icon="retweet">
<CHANGES>
###2020.11.26
- Initial release
</CHANGES>
<FILE Run="/bin/bash">
<INLINE>
rm -f $(ls /boot/config/plugins/&name;/&name;*.txz 2>/dev/null|grep -v '&version;')
</INLINE>
</FILE>
<FILE Name="/boot/config/plugins/&name;/&name;-&version;.txz" Run="upgradepkg --install-new">
<URL>&gitURL;/packages/&name;-&version;.txz</URL>
<MD5>&md5;</MD5>
</FILE>
<FILE Name="&emhttp;/README.md">
<INLINE>
**AMD Vendor-Reset Patch**
2020-11-26 22:16:54 +00:00
This package contains the Vendor-Reset module for Polaris and Vega10 cards by Adam Madsen and Geoffrey McRae. You can get more details here: https://github.com/gnif/vendor-reset
2020-11-26 21:35:53 +00:00
</INLINE>
</FILE>
<FILE Run="/bin/bash">
<INLINE>
KERNEL_V="$(uname -r)"
PACKAGE="vendorreset"
DL_URL="https://github.com/ich777/unraid-plugins-repo/releases/download/$KERNEL_V"
if [ ! -d "&plugin;/packages/${KERNEL_V%%-*}" ]; then
mkdir -p "&plugin;/packages/${KERNEL_V%%-*}"
fi
#Check for old packages
rm -rf $(ls -d &plugin;/packages/* | grep -v "${KERNEL_V%%-*}")
download() {
#Download vendor-reset
if wget -q -nc --show-progress --progress=bar:force:noscroll -O "&plugin;/packages/${KERNEL_V%%-*}/${PACKAGE}-1.txz" "${DL_URL}/${PACKAGE}-1.txz" ; then
if [ "$(md5sum "&plugin;/packages/${KERNEL_V%%-*}/${PACKAGE}-1.txz" | cut -d ' ' -f1)" != "$(wget -qO- "${DL_URL}/${PACKAGE}-1.txz.md5" | cut -d ' ' -f1)" ]; then
echo
echo "---CHECKSUM ERROR!---"
exit 1
fi
echo
echo "---------------------Sucessfully downloaded vendor-reset----------------------"
else
echo
echo "-------------------------Can't download vendor-reset--------------------------"
exit 1
fi
}
check() {
if [ ! -f "&plugin;/packages/${KERNEL_V%%-*}/${PACKAGE}-1.txz" ]; then
echo
echo "---------------------------Downloading vendor-reset---------------------------"
echo "----------This could take some time, please don't close this window!----------"
download
else
echo
echo "--------------------------vendor-reset found locally--------------------------"
fi
}
install() {
#Install vendor-reset
/sbin/installpkg "&plugin;/packages/${KERNEL_V%%-*}/${PACKAGE}-1.txz"
2020-11-26 22:29:45 +00:00
depmod -a
modprobe vendor_reset
2020-11-26 21:35:53 +00:00
}
#Check if vendor-reset is allready downloaded
check
install > /dev/null
echo
echo "-------------------------Installation of vendor-reset-------------------------"
echo
</INLINE>
</FILE>
<FILE Run="/bin/bash" Method="remove">
<INLINE>
echo "----------------------------------------"
echo "-------Uninstalling vendor-reset--------"
echo "----------------------------------------"
# Remove plugin related files
removepkg &name;-&version;
rm -rf /usr/local/emhttp/plugins/&name;
rm -rf &plugin;
echo
echo "----------------------------------------------------------------------------"
echo "-----------vendor-reset uninstalled, please reboot your server!-------------"
echo "----------------------------------------------------------------------------"
echo
</INLINE>
</FILE>
</PLUGIN>