mirror of
https://github.com/HikariKnight/quickpassthrough.git
synced 2025-05-13 06:34:41 -04:00
add comments and change cmdline file to kernel_args
This commit is contained in:
parent
be3bcb02f7
commit
ca1eedad1c
2 changed files with 3 additions and 1 deletions
|
@ -29,7 +29,7 @@ type Config struct {
|
||||||
|
|
||||||
func GetConfigPaths() *Path {
|
func GetConfigPaths() *Path {
|
||||||
Paths := &Path{
|
Paths := &Path{
|
||||||
CMDLINE: "config/cmdline",
|
CMDLINE: "config/kernel_args",
|
||||||
MODPROBE: "config/etc/modprobe.d",
|
MODPROBE: "config/etc/modprobe.d",
|
||||||
INITRAMFS: "config/etc/initramfs-tools",
|
INITRAMFS: "config/etc/initramfs-tools",
|
||||||
ETCMODULES: "config/etc/modules",
|
ETCMODULES: "config/etc/modules",
|
||||||
|
|
|
@ -85,9 +85,11 @@ func (m *model) processSelection() bool {
|
||||||
m.focused++
|
m.focused++
|
||||||
|
|
||||||
case DONE:
|
case DONE:
|
||||||
|
// Return true so that the application will exit nicely
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Return false as we are not done
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue