„amd-vendor-reset.plg“ ändern
This commit is contained in:
parent
04ddb1b78f
commit
db7231626e
@ -2,7 +2,7 @@
|
|||||||
<!DOCTYPE PLUGIN [
|
<!DOCTYPE PLUGIN [
|
||||||
<!ENTITY name "AMD-Vendor-Reset">
|
<!ENTITY name "AMD-Vendor-Reset">
|
||||||
<!ENTITY author "ich777">
|
<!ENTITY author "ich777">
|
||||||
<!ENTITY version "2021.05.25">
|
<!ENTITY version "2021.06.23">
|
||||||
<!ENTITY gitURL "https://raw.githubusercontent.com/&author;/unraid-amd-vendor-reset/master">
|
<!ENTITY gitURL "https://raw.githubusercontent.com/&author;/unraid-amd-vendor-reset/master">
|
||||||
<!ENTITY pluginURL "&gitURL;/amd-vendor-reset.plg">
|
<!ENTITY pluginURL "&gitURL;/amd-vendor-reset.plg">
|
||||||
<!ENTITY plugin "/boot/config/plugins/amd-vendor-reset">
|
<!ENTITY plugin "/boot/config/plugins/amd-vendor-reset">
|
||||||
@ -13,6 +13,9 @@
|
|||||||
|
|
||||||
<CHANGES>
|
<CHANGES>
|
||||||
|
|
||||||
|
###2021.06.23
|
||||||
|
- Changed package download repo
|
||||||
|
|
||||||
###2021.05.25
|
###2021.05.25
|
||||||
- Initial release
|
- Initial release
|
||||||
|
|
||||||
@ -20,9 +23,9 @@
|
|||||||
|
|
||||||
<FILE Name="&emhttp;/README.md">
|
<FILE Name="&emhttp;/README.md">
|
||||||
<INLINE>
|
<INLINE>
|
||||||
**AMD Vendor-Reset**
|
**AMD Vendor Reset**
|
||||||
|
|
||||||
This package contains the Vendor-Reset module for Polaris, Vega10/20 and Navi10/12/14 cards by Adam Madsen and Geoffrey McRae. You can get more details here: https://github.com/gnif/vendor-reset
|
This package contains the Vendor Reset module for Polaris, Vega10/20 and Navi10/12/14 cards by Adam Madsen and Geoffrey McRae. You can get more details here: https://github.com/gnif/vendor-reset
|
||||||
</INLINE>
|
</INLINE>
|
||||||
</FILE>
|
</FILE>
|
||||||
|
|
||||||
@ -30,8 +33,8 @@ This package contains the Vendor-Reset module for Polaris, Vega10/20 and Navi10/
|
|||||||
<INLINE>
|
<INLINE>
|
||||||
|
|
||||||
KERNEL_V="$(uname -r)"
|
KERNEL_V="$(uname -r)"
|
||||||
PACKAGE="gnif_vendor_reset"
|
PACKAGE="gnif_vendor_reset-plugin-${KERNEL_V}"
|
||||||
DL_URL="https://github.com/ich777/unraid-plugins-repo/releases/download/$KERNEL_V"
|
DL_URL="https://github.com/ich777/unraid-amd-vendor-reset/releases/download/$KERNEL_V"
|
||||||
|
|
||||||
#Wait for Network and timeout after 30 seconds
|
#Wait for Network and timeout after 30 seconds
|
||||||
HOST="8.8.8.8"
|
HOST="8.8.8.8"
|
||||||
@ -47,7 +50,7 @@ fi
|
|||||||
rm -rf $(ls -d &plugin;/packages/* | grep -v "${KERNEL_V%%-*}")
|
rm -rf $(ls -d &plugin;/packages/* | grep -v "${KERNEL_V%%-*}")
|
||||||
|
|
||||||
if [ ! -f "&plugin;/AMD-Vendor-Reset.png" ]; then
|
if [ ! -f "&plugin;/AMD-Vendor-Reset.png" ]; then
|
||||||
wget -q -nc --show-progress --progress=bar:force:noscroll -O "&plugin;/AMD-Vendor-Reset.png" "https://raw.githubusercontent.com/ich777/docker-templates/master/ich777/images/gnif.png"
|
wget -q -nc --show-progress --progress=bar:force:noscroll -O "&plugin;/&name;.png" "https://raw.githubusercontent.com/ich777/docker-templates/master/ich777/images/gnif.png"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
download() {
|
download() {
|
||||||
@ -60,11 +63,11 @@ if wget -q -nc --show-progress --progress=bar:force:noscroll -O "&plugin;/packag
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
echo
|
echo
|
||||||
echo "------------Successfully downloaded vendor-reset, please wait...!-------------"
|
echo "----------Successfully downloaded AMD Vendor Reset, please wait...!-----------"
|
||||||
else
|
else
|
||||||
echo
|
echo
|
||||||
echo "-----ERROR - ERROR - ERROR - ERROR - ERROR - ERROR - ERROR - ERROR - ERROR-----"
|
echo "-----ERROR - ERROR - ERROR - ERROR - ERROR - ERROR - ERROR - ERROR - ERROR-----"
|
||||||
echo "------------------------Can't download vendor-reset----------------------------"
|
echo "----------------------Can't download AMD Vendor Reset--------------------------"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
@ -72,45 +75,45 @@ fi
|
|||||||
check() {
|
check() {
|
||||||
if [ ! -f "&plugin;/packages/${KERNEL_V%%-*}/${PACKAGE}-1.txz" ]; then
|
if [ ! -f "&plugin;/packages/${KERNEL_V%%-*}/${PACKAGE}-1.txz" ]; then
|
||||||
echo
|
echo
|
||||||
echo "-------------------Downloading vendor-reset, please wait...!------------------"
|
echo "-----------------Downloading AMD Vendor Reset, please wait...!----------------"
|
||||||
echo "----------This could take some time, please don't close this window!----------"
|
echo "----------This could take some time, please don't close this window!----------"
|
||||||
download
|
download
|
||||||
else
|
else
|
||||||
echo
|
echo
|
||||||
echo "-------------------------vendor-reset found locally!--------------------------"
|
echo "-----------------------AMD Vendor Reset found locally!------------------------"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
install() {
|
install() {
|
||||||
#Install vendor-reset
|
#Install AMD Vendor Reset
|
||||||
/sbin/installpkg "&plugin;/packages/${KERNEL_V%%-*}/${PACKAGE}-1.txz"
|
/sbin/installpkg "&plugin;/packages/${KERNEL_V%%-*}/${PACKAGE}-1.txz"
|
||||||
depmod -a
|
depmod -a
|
||||||
modprobe vendor_reset
|
modprobe vendor_reset
|
||||||
}
|
}
|
||||||
|
|
||||||
#Check if vendor-reset is already downloaded
|
#Check if AMD Vendor Reset is already downloaded
|
||||||
check
|
check
|
||||||
|
|
||||||
if [ ! -z "$(lsmod | grep "vendor_reset")" ]; then
|
if [ ! -z "$(lsmod | grep "vendor_reset")" ]; then
|
||||||
modprobe vendor_reset
|
modprobe vendor_reset
|
||||||
echo
|
echo
|
||||||
echo "--------------Nothing to do, vendor-reset is already installed!---------------"
|
echo "------------Nothing to do, AMD Vendor Reset is already installed!-------------"
|
||||||
echo
|
echo
|
||||||
else
|
else
|
||||||
echo
|
echo
|
||||||
echo "-------------------Installing vendor-reset, please wait...!-------------------"
|
echo "-----------------Installing AMD Vendor Reset, please wait...!-----------------"
|
||||||
install > /dev/null
|
install > /dev/null
|
||||||
echo
|
echo
|
||||||
echo "------------------Installation of vendor-reset successful---------------------"
|
echo "----------------Installation of AMD Vendor Reset successful-------------------"
|
||||||
echo
|
echo
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#Install icon
|
#Install icon
|
||||||
if [ ! -f "&emhttp;/images/AMD-Vendor-Reset.png" ]; then
|
if [ ! -f "&emhttp;/images/&name;.png" ]; then
|
||||||
if [ ! -d "&emhttp;/images" ]; then
|
if [ ! -d "&emhttp;/images" ]; then
|
||||||
mkdir -p &emhttp;/images
|
mkdir -p &emhttp;/images
|
||||||
fi
|
fi
|
||||||
cp &plugin;/AMD-Vendor-Reset.png &emhttp;/images/
|
cp &plugin;/&name;.png &emhttp;/images/
|
||||||
fi
|
fi
|
||||||
|
|
||||||
</INLINE>
|
</INLINE>
|
||||||
@ -120,14 +123,14 @@ fi
|
|||||||
<INLINE>
|
<INLINE>
|
||||||
|
|
||||||
echo "----------------------------------------"
|
echo "----------------------------------------"
|
||||||
echo "-------Uninstalling vendor-reset--------"
|
echo "-----Uninstalling AMD Vendor Reset------"
|
||||||
echo "----------------------------------------"
|
echo "----------------------------------------"
|
||||||
# Remove plugin related files
|
# Remove plugin related files
|
||||||
rm -rf &emhttp;
|
rm -rf &emhttp;
|
||||||
rm -rf &plugin;
|
rm -rf &plugin;
|
||||||
echo
|
echo
|
||||||
echo "----------------------------------------------------------------------------"
|
echo "----------------------------------------------------------------------------"
|
||||||
echo "-----------vendor-reset uninstalled, please reboot your server!-------------"
|
echo "---------AMD Vendor Reset uninstalled, please reboot your server!-----------"
|
||||||
echo "----------------------------------------------------------------------------"
|
echo "----------------------------------------------------------------------------"
|
||||||
echo
|
echo
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user