Janne Pulkkinen
Janne Pulkkinen
NVIDIA includes MX150 as a part of the Pascal series, but the vBIOS format it uses seems to differ from the rest of the series. If I had to guess,...
I've switched to AMD Vega and have pretty much given up on VFIO since Proton, DXVK and the like have made the whole setup redundant, at least for my use...
Sorry for the late reply. This tool only works with the Pascal series of GPUs (GeForce GTX 1xxx series). It's mentioned in the README, although it's admittedly not very clear....
I created this script for my own use, so I have no plans to develop it further myself. I do accept any pull requests that enable support for other GPU...
The script has only been tested with discrete consumer GPUs in the Pascal series (eg. GTX 10xx), and far as I've heard no one has managed to make it work...
@marcosscriven For partial copies, I used ROMs provided by the people in this discussion thread: https://lime-technology.com/forums/topic/51230-video-guidehow-to-pass-through-an-nvidia-gpu-as-primary-or-only-gpu-in-unraid/ I then compared them to full copies you can find on TechPowerup: https://www.techpowerup.com/vgabios/ After...
That difference in size seems to be in line with the patched ROMs I've encountered. The patch removes quite a bit of stuff, not just the header. As for what...
Python 3.5 doesn't support f-strings (introduced in 3.6). The following should be compatible with the previous versions. ``` combo_values = "|".join([ '{}: {}'.format(app.name, app.appid) for app in steam_apps ]) ```
The command to use when launching external executables is `protontricks-launch --appid `. `protontricks` itself tries to pass the arguments to `winetricks` unless specified otherwise with `--command/-c`. The "Open with" method...
This may not be entirely relevant to this issue, but you can start a new shell with winetricks' `shell` verb (seems to be an undocumented debugging feature?) and do whatever...