From 0273aabeccd627e4c412ac366e07755b780229bc Mon Sep 17 00:00:00 2001 From: HikariKnight <2557889+HikariKnight@users.noreply.github.com> Date: Sat, 15 Jun 2024 01:51:57 +0200 Subject: [PATCH] chore: change quickemu folder to qemu folder --- internal/configs/config_vbios_dumper.go | 8 ++++---- internal/configs/configs.go | 4 ++-- internal/pages/06_finalize.go | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/internal/configs/config_vbios_dumper.go b/internal/configs/config_vbios_dumper.go index e8bc92c..b075018 100644 --- a/internal/configs/config_vbios_dumper.go +++ b/internal/configs/config_vbios_dumper.go @@ -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", @@ -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, ) diff --git a/internal/configs/configs.go b/internal/configs/configs.go index fa0ab87..50d6174 100644 --- a/internal/configs/configs.go +++ b/internal/configs/configs.go @@ -19,7 +19,7 @@ type Path struct { INITRAMFS string ETCMODULES string DEFAULT string - QUICKEMU string + QEMU string DRACUT string MKINITCPIO string } @@ -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", } diff --git a/internal/pages/06_finalize.go b/internal/pages/06_finalize.go index 3aebd92..232bd26 100644 --- a/internal/pages/06_finalize.go +++ b/internal/pages/06_finalize.go @@ -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",