Bug Description
When installing the GPU autodetection detects my SSD that I have in a PCIE->NVME card in another PCIE slot instead of the GPU. So it detects "UNKNOWN" instead of the GPU.
System Information
- GPU: Asus Radeon RX 9070 XT
- Driver Version: Mesa 26.0.4
- Distribution: Arch Linux
- Kernel: 7.0.0-1-cachyos-bore
Steps to Reproduce
- Run install.sh
Expected Behavior
AMD GPU Detected
Actual Behavior
SSD is detected and GPU is set to UNKNOWN
Logs
Here is the output from the gpu info capture from the script:
gpu_info=$(lspci 2>/dev/null | grep -i "VGA|3D" | head -1) || true
cat $gpu_info
cat: '25:00.0 Non-Volatile memory controller: Sandisk Corp SanDisk Ultra 3D / WD Blue SN570 NVMe SSD (DRAM-less)': No such file or directory
If i remove head -1:
gpu_info=$(lspci 2>/dev/null | grep -i "VGA|3D" ) || true
cat $gpu_info
cat: '25:00.0 Non-Volatile memory controller: Sandisk Corp SanDisk Ultra 3D / WD Blue SN570 NVMe SSD (DRAM-less)'$'\n''28:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Navi 48 [Radeon RX 9070/9070 XT/9070 GRE] (rev c0)': No such file or directory
Additional Context
I just commented all the detection stuff out and manually set it to AMD. Would also probably work if i deleted the "|3D" from the grep since the SSD has 3D in the name .
Bug Description
When installing the GPU autodetection detects my SSD that I have in a PCIE->NVME card in another PCIE slot instead of the GPU. So it detects "UNKNOWN" instead of the GPU.
System Information
Steps to Reproduce
Expected Behavior
AMD GPU Detected
Actual Behavior
SSD is detected and GPU is set to UNKNOWN
Logs
Here is the output from the gpu info capture from the script:
gpu_info=$(lspci 2>/dev/null | grep -i "VGA|3D" | head -1) || true
cat $gpu_info
cat: '25:00.0 Non-Volatile memory controller: Sandisk Corp SanDisk Ultra 3D / WD Blue SN570 NVMe SSD (DRAM-less)': No such file or directory
If i remove head -1:
gpu_info=$(lspci 2>/dev/null | grep -i "VGA|3D" ) || true
cat $gpu_info
cat: '25:00.0 Non-Volatile memory controller: Sandisk Corp SanDisk Ultra 3D / WD Blue SN570 NVMe SSD (DRAM-less)'$'\n''28:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Navi 48 [Radeon RX 9070/9070 XT/9070 GRE] (rev c0)': No such file or directory
Additional Context
I just commented all the detection stuff out and manually set it to AMD. Would also probably work if i deleted the "|3D" from the grep since the SSD has 3D in the name .