more linting and whitespace
This commit is contained in:
parent
7fe88321e6
commit
08e4da4575
6 changed files with 25 additions and 25 deletions
|
@ -33,7 +33,7 @@ DO NOT use any of the files from $SCRIPTDIR/config !
|
||||||
}
|
}
|
||||||
|
|
||||||
function main () {
|
function main () {
|
||||||
SCRIPTDIR=$(dirname `which $0` | perl -pe "s/\/\.\.\/lib//" | perl -pe "s/\/lib$//")
|
SCRIPTDIR=$(dirname "$(which $0)" | perl -pe "s/\/\.\.\/lib//" | perl -pe "s/\/lib$//")
|
||||||
|
|
||||||
get_GPU
|
get_GPU
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,7 +56,7 @@ USB_CTL_ID=()
|
||||||
}
|
}
|
||||||
|
|
||||||
function main () {
|
function main () {
|
||||||
SCRIPTDIR=$(dirname `which $0` | perl -pe "s/\/\.\.\/lib//" | perl -pe "s/\/lib$//")
|
SCRIPTDIR=$(dirname "$(which $0)" | perl -pe "s/\/\.\.\/lib//" | perl -pe "s/\/lib$//")
|
||||||
|
|
||||||
get_GROUP $1
|
get_GROUP $1
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,7 @@ function get_GPU_ROM () {
|
||||||
# Get the config paths
|
# Get the config paths
|
||||||
source "$SCRIPTDIR/lib/paths.sh"
|
source "$SCRIPTDIR/lib/paths.sh"
|
||||||
|
|
||||||
VBIOS_PATH=$(find /sys/devices -name rom | grep $1)
|
VBIOS_PATH=$(find /sys/devices -name rom | grep "$1")
|
||||||
printf "We will now attempt to dump the vbios of your selected GPU.
|
printf "We will now attempt to dump the vbios of your selected GPU.
|
||||||
Passing a VBIOS rom to the card used for passthrough is required for some cards, but not all.
|
Passing a VBIOS rom to the card used for passthrough is required for some cards, but not all.
|
||||||
Some cards also requires you to patch your VBIOS romfile, check online if this is neccessary for your card.
|
Some cards also requires you to patch your VBIOS romfile, check online if this is neccessary for your card.
|
||||||
|
@ -20,14 +20,14 @@ echo 0 | sudo tee $VBIOS_PATH
|
||||||
read -p "Do you want to dump the VBIOS, choosing N will skip this step [y/N]: " YESNO
|
read -p "Do you want to dump the VBIOS, choosing N will skip this step [y/N]: " YESNO
|
||||||
case "${YESNO}" in
|
case "${YESNO}" in
|
||||||
[Yy]*)
|
[Yy]*)
|
||||||
echo 1 | sudo tee $VBIOS_PATH
|
echo 1 | sudo tee "$VBIOS_PATH"
|
||||||
sudo cat $VBIOS_PATH > "$SCRIPTDIR/$QUICKEMU/vfio_card.rom"
|
sudo cat "$VBIOS_PATH" > "$SCRIPTDIR/$QUICKEMU/vfio_card.rom"
|
||||||
sudo md5sum $VBIOS_PATH | cut -d " " -f 1 > "$SCRIPTDIR/$QUICKEMU/vfio_card.rom.md5"
|
sudo md5sum "$VBIOS_PATH" | cut -d " " -f 1 > "$SCRIPTDIR/$QUICKEMU/vfio_card.rom.md5"
|
||||||
local ROM_MD5=$(sudo md5sum $VBIOS_PATH | cut -d " " -f 1)
|
local ROM_MD5=$(sudo md5sum "$VBIOS_PATH" | cut -d " " -f 1)
|
||||||
echo 0 | sudo tee $VBIOS_PATH
|
echo 0 | sudo tee "$VBIOS_PATH"
|
||||||
local ROMFILE_MD5=$(md5sum "$SCRIPTDIR/$QUICKEMU/vfio_card.rom" | cut -d " " -f 1)
|
local ROMFILE_MD5=$(md5sum "$SCRIPTDIR/$QUICKEMU/vfio_card.rom" | cut -d " " -f 1)
|
||||||
|
|
||||||
if [ -f $SCRIPTDIR/$QUICKEMU/vfio_card.rom ];
|
if [ -f "$SCRIPTDIR"/$QUICKEMU/vfio_card.rom ];
|
||||||
then
|
then
|
||||||
if [ "$ROM_MD5" == "$ROMFILE_MD5" ];
|
if [ "$ROM_MD5" == "$ROMFILE_MD5" ];
|
||||||
then
|
then
|
||||||
|
@ -59,7 +59,7 @@ echo 0 | sudo tee $VBIOS_PATH
|
||||||
|
|
||||||
|
|
||||||
function main () {
|
function main () {
|
||||||
SCRIPTDIR=$(dirname `which $0` | perl -pe "s/\/\.\.\/lib//" | perl -pe "s/\/lib$//")
|
SCRIPTDIR=$(dirname "$(which $0)" | perl -pe "s/\/\.\.\/lib//" | perl -pe "s/\/lib$//")
|
||||||
|
|
||||||
get_GPU_ROM $1
|
get_GPU_ROM $1
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,7 +31,7 @@ Press q to quit
|
||||||
}
|
}
|
||||||
|
|
||||||
function main () {
|
function main () {
|
||||||
SCRIPTDIR=$(dirname `which $0` | perl -pe "s/\/\.\.\/lib//" | perl -pe "s/\/lib$//")
|
SCRIPTDIR=$(dirname "$(which $0)" | perl -pe "s/\/\.\.\/lib//" | perl -pe "s/\/lib$//")
|
||||||
|
|
||||||
get_USB_CTL
|
get_USB_CTL
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,7 +38,7 @@ To return to the previous page just press ENTER.
|
||||||
}
|
}
|
||||||
|
|
||||||
function main () {
|
function main () {
|
||||||
SCRIPTDIR=$(dirname `which $0` | perl -pe "s/\/\.\.\/lib//" | perl -pe "s/\/lib$//")
|
SCRIPTDIR=$(dirname "$(which $0)" | perl -pe "s/\/\.\.\/lib//" | perl -pe "s/\/lib$//")
|
||||||
|
|
||||||
get_USB_CTL_GROUP $1
|
get_USB_CTL_GROUP $1
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# Get the scripts directory
|
# Get the scripts directory
|
||||||
SCRIPTDIR=$(dirname `which $0`)
|
SCRIPTDIR=$(dirname "$(which $0)")
|
||||||
cd $SCRIPTDIR
|
cd "$SCRIPTDIR"
|
||||||
|
|
||||||
# Get the config paths
|
# Get the config paths
|
||||||
source "$SCRIPTDIR/lib/paths.sh"
|
source "$SCRIPTDIR/lib/paths.sh"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue