Add numactl, rocm, amdgpu-pro and README
This commit is contained in:
@@ -0,0 +1 @@
|
||||
eedc2ed8ec12616da9cd22840a71daae2d39251e50b9479f81a054677ea66e6d amdgpu-install_6.4.60402-1_all.deb
|
||||
@@ -0,0 +1,23 @@
|
||||
amdgpu-pro-6.4.60402-1
|
||||
drwxr-xr-x root/root etc/
|
||||
drwxr-xr-x root/root etc/amdgpu-install/
|
||||
-rwxr-xr-x root/root etc/amdgpu-install/amdgpu-setup.conf
|
||||
drwxr-xr-x root/root etc/apt/
|
||||
drwxr-xr-x root/root etc/apt/keyrings/
|
||||
-rw-r--r-- root/root etc/apt/keyrings/rocm.gpg
|
||||
drwxr-xr-x root/root etc/apt/preferences.d/
|
||||
-rw-r--r-- root/root etc/apt/preferences.d/repo-radeon-pin-600
|
||||
drwxr-xr-x root/root etc/apt/sources.list.d/
|
||||
-rw-r--r-- root/root etc/apt/sources.list.d/amdgpu.list
|
||||
-rw-r--r-- root/root etc/apt/sources.list.d/rocm.list
|
||||
drwxr-xr-x root/root opt/
|
||||
drwxr-xr-x root/root opt/amdgpu-pro/
|
||||
drwxr-xr-x root/root opt/amdgpu-pro/bin/
|
||||
-rwxr-xr-x root/root opt/amdgpu-pro/bin/amdgpu-install
|
||||
drwxr-xr-x root/root opt/amdgpu-pro/share/
|
||||
-rwxr-xr-x root/root opt/amdgpu-pro/share/AMDGPUPROEULA
|
||||
-rw-r--r-- root/root opt/amdgpu-pro/share/amdgpu.list.template
|
||||
drwxr-xr-x root/root opt/amdgpu-pro/share/orig/
|
||||
-rw-r--r-- root/root opt/amdgpu-pro/share/orig/amdgpu.list
|
||||
-rw-r--r-- root/root opt/amdgpu-pro/share/orig/rocm.list
|
||||
-rw-r--r-- root/root opt/amdgpu-pro/share/rocm.list.template
|
||||
@@ -0,0 +1,2 @@
|
||||
bash
|
||||
zstd
|
||||
@@ -0,0 +1,28 @@
|
||||
description="AMD Radeon Pro Software - proprietary OpenGL/Vulkan installer and support files."
|
||||
homepage="https://www.amd.com/en/support/download/linux-drivers.html"
|
||||
maintainer="Fraggle, fraggle at disroot dot org"
|
||||
|
||||
name=amdgpu-pro
|
||||
version=6.4.60402
|
||||
release=1
|
||||
source="amdgpu-install_6.4.60402-1_all.deb::https://repo.radeon.com/amdgpu-install/6.4.2/ubuntu/jammy/amdgpu-install_6.4.60402-1_all.deb"
|
||||
noextract="amdgpu-install_6.4.60402-1_all.deb"
|
||||
|
||||
build() {
|
||||
mkdir -p pro_extract
|
||||
cd pro_extract
|
||||
ar x "$SRC"/amdgpu-install_6.4.60402-1_all.deb
|
||||
if [ -f data.tar.zst ]; then
|
||||
zstd -dqc data.tar.zst | tar xf -
|
||||
elif [ -f data.tar.xz ]; then
|
||||
tar xf data.tar.xz
|
||||
else
|
||||
tar xf data.tar.*
|
||||
fi
|
||||
mkdir -p $PKG/opt/amdgpu-pro/bin
|
||||
[ -f usr/bin/amdgpu-install ] && install -Dm755 usr/bin/amdgpu-install $PKG/opt/amdgpu-pro/bin/amdgpu-install
|
||||
[ -d usr/share/amdgpu-install ] && cp -a usr/share/amdgpu-install $PKG/opt/amdgpu-pro/share
|
||||
[ -d etc ] && cp -a etc $PKG/
|
||||
cd ..
|
||||
rm -rf pro_extract
|
||||
}
|
||||
Reference in New Issue
Block a user