-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
67ddcbb
commit ec35057
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
kboot (0.0.9) nitrux; urgency=medium | ||
|
||
* Update warning about NVIDIA. | ||
* Update template. | ||
|
||
-- Uri Herrera <[email protected]> Wed, 17 Jan 2024 15:38:00 -0500 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Default values for booting a kernel with kboot | ||
# 2023 (c) Nitrux Latinoamericana S.C. | ||
|
||
# Define the path of vmlinuz and initrd to use with kexec. | ||
# We suggest using the directory /kboot to organize kernels. | ||
# Regular files and soft links are valid file types to use. | ||
# | ||
KEXEC_VMLINUZ=/kboot/example/vmlinuz | ||
KEXEC_INITRD=/kboot/example/initrd.img | ||
|
||
# Define the parameters used when loading the kernel. | ||
# Kernel parameters go as a single line. Use cat /proc/cmdline to obtain a list of currently used kernel parameters. | ||
# | ||
# NOTE: Do not use undeclared variables in the parameters. Doing so will prevent the kernel from loading. This is not a bug. | ||
# | ||
KERNEL_PARAMETERS="" |