Skip to content

Commit

Permalink
chore: change quickemu folder to qemu folder
Browse files Browse the repository at this point in the history
  • Loading branch information
HikariKnight committed Jun 14, 2024
1 parent 47567c1 commit 0273aab
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions internal/configs/config_vbios_dumper.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func GenerateVBIOSDumper(vbios_path string) {
vbios_script_template := fmt.Sprint(
"#!/bin/bash\n",
"# THIS FILE IS AUTO GENERATED!\n",
"# IF YOU HAVE CHANGED GPU, PLEASE RE-RUN QUICKPASSTHROUGH!\n",
"# IF YOU HAVE CHANGED THE GPU, PLEASE RE-RUN QUICKPASSTHROUGH!\n",
"mkdir -p \"%s\"\n",
"echo Attempting to enable reading from rom\n",
"echo 1 | sudo tee %s\n",
Expand All @@ -43,13 +43,13 @@ func GenerateVBIOSDumper(vbios_path string) {

vbios_script := fmt.Sprintf(
vbios_script_template,
config.Path.QUICKEMU,
config.Path.QEMU,
vbios_path,
vbios_path,
scriptdir,
config.Path.QUICKEMU,
config.Path.QEMU,
scriptdir,
config.Path.QUICKEMU,
config.Path.QEMU,
vbios_path,
)

Expand Down
4 changes: 2 additions & 2 deletions internal/configs/configs.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ type Path struct {
INITRAMFS string
ETCMODULES string
DEFAULT string
QUICKEMU string
QEMU string
DRACUT string
MKINITCPIO string
}
Expand All @@ -40,7 +40,7 @@ func GetConfigPaths() *Path {
INITRAMFS: "config/etc/initramfs-tools",
ETCMODULES: "config/etc/modules",
DEFAULT: "config/etc/default",
QUICKEMU: "config/quickemu",
QEMU: "config/qemu",
DRACUT: "config/etc/dracut.conf.d",
MKINITCPIO: "config/etc/mkinitcpio.conf",
}
Expand Down
2 changes: 1 addition & 1 deletion internal/pages/06_finalize.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func finalize(config *configs.Config) {
"located inside the \"config\" folder\n",
"\n",
"* The \"kernel_args\" file contains kernel arguments that your bootloader needs\n",
//"* The \"quickemu\" folder contains files that might be\n useable for quickemu in the future\n",
"* The \"qemu\" folder contains files that might be\n neccessary for passing through the GPU\n",
"* The files inside the \"etc\" folder must be copied to your system.\n",
" NOTE: Verify that these files are correctly formated/edited!\n",
"* Once all files have been copied, you need to update your bootloader and rebuild\n",
Expand Down

0 comments on commit 0273aab

Please sign in to comment.