This commit is contained in:
parent
8291fe00be
commit
e7768fd753
11
rocm.sh
11
rocm.sh
@ -10,16 +10,21 @@ wget http://repo.radeon.com/rocm/apt/5.6/dists/jammy/main/binary-amd64/Packages
|
||||
rm -rf /etc/apt/sources.list.d/pika*
|
||||
rm -rf /etc/apt/preferences.d/*pika*
|
||||
|
||||
# temp
|
||||
apt update
|
||||
apt upgrade
|
||||
# end of temp
|
||||
|
||||
for i in $(cat ./Packages | grep "Package: " | awk '{print $2}')
|
||||
do
|
||||
# Get ROCm pool from pika
|
||||
echo 'deb [arch=amd64 trusted=yes] https://ppa.pika-os.com/ lunar rocm' | sudo tee /etc/apt/sources.list.d/rocm-pika.list
|
||||
apt update -y
|
||||
apt update --allow-unauthenticated -y
|
||||
apt-cache show $i | grep Version: > ./$i-pika.txt
|
||||
rm -rf /etc/apt/sources.list.d/rocm-pika.list
|
||||
# Get ROCm pool
|
||||
echo 'deb [arch=amd64 trusted=yes] https://repo.radeon.com/rocm/apt/5.6 jammy main' | sudo tee /etc/apt/sources.list.d/rocm.list
|
||||
apt update -y
|
||||
apt update --allow-unauthenticated -y
|
||||
apt-cache show $i | grep Version: > ./$i-repo.txt
|
||||
if [[ $(cat ./$i-pika.txt ) == $(cat ./$i-repo.txt ) ]]
|
||||
then
|
||||
@ -28,7 +33,7 @@ do
|
||||
echo $i >> pkglist.txt
|
||||
fi
|
||||
done
|
||||
apt download $(cat ./pkglist.txt | tr '\n' ' ') -y
|
||||
apt download $(cat ./pkglist.txt | tr '\n' ' ') -y --allow-unauthenticated
|
||||
# Return to ROCm MIRROR
|
||||
cd ../
|
||||
mkdir -p ./output
|
||||
|
Loading…
Reference in New Issue
Block a user