Skip to content

Commit 0273aab

Browse files
committed
chore: change quickemu folder to qemu folder
1 parent 47567c1 commit 0273aab

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

internal/configs/config_vbios_dumper.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func GenerateVBIOSDumper(vbios_path string) {
2828
vbios_script_template := fmt.Sprint(
2929
"#!/bin/bash\n",
3030
"# THIS FILE IS AUTO GENERATED!\n",
31-
"# IF YOU HAVE CHANGED GPU, PLEASE RE-RUN QUICKPASSTHROUGH!\n",
31+
"# IF YOU HAVE CHANGED THE GPU, PLEASE RE-RUN QUICKPASSTHROUGH!\n",
3232
"mkdir -p \"%s\"\n",
3333
"echo Attempting to enable reading from rom\n",
3434
"echo 1 | sudo tee %s\n",
@@ -43,13 +43,13 @@ func GenerateVBIOSDumper(vbios_path string) {
4343

4444
vbios_script := fmt.Sprintf(
4545
vbios_script_template,
46-
config.Path.QUICKEMU,
46+
config.Path.QEMU,
4747
vbios_path,
4848
vbios_path,
4949
scriptdir,
50-
config.Path.QUICKEMU,
50+
config.Path.QEMU,
5151
scriptdir,
52-
config.Path.QUICKEMU,
52+
config.Path.QEMU,
5353
vbios_path,
5454
)
5555

internal/configs/configs.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ type Path struct {
1919
INITRAMFS string
2020
ETCMODULES string
2121
DEFAULT string
22-
QUICKEMU string
22+
QEMU string
2323
DRACUT string
2424
MKINITCPIO string
2525
}
@@ -40,7 +40,7 @@ func GetConfigPaths() *Path {
4040
INITRAMFS: "config/etc/initramfs-tools",
4141
ETCMODULES: "config/etc/modules",
4242
DEFAULT: "config/etc/default",
43-
QUICKEMU: "config/quickemu",
43+
QEMU: "config/qemu",
4444
DRACUT: "config/etc/dracut.conf.d",
4545
MKINITCPIO: "config/etc/mkinitcpio.conf",
4646
}

internal/pages/06_finalize.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ func finalize(config *configs.Config) {
6161
"located inside the \"config\" folder\n",
6262
"\n",
6363
"* The \"kernel_args\" file contains kernel arguments that your bootloader needs\n",
64-
//"* The \"quickemu\" folder contains files that might be\n useable for quickemu in the future\n",
64+
"* The \"qemu\" folder contains files that might be\n neccessary for passing through the GPU\n",
6565
"* The files inside the \"etc\" folder must be copied to your system.\n",
6666
" NOTE: Verify that these files are correctly formated/edited!\n",
6767
"* Once all files have been copied, you need to update your bootloader and rebuild\n",

0 commit comments

Comments
 (0)