Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

persistent → persistence update due to changes in live-boot #10

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion templates/GRML/grml-cheatcodes.txt
Expand Up @@ -63,7 +63,7 @@ grml file=foobar.tbz Use specified file as name for configuration
instead of the default one (config.tbz)
grml extract=/etc Extract only /etc from configuration archive,
use it in combination with myconfig or netconfig
grml persistent Enable persistency feature, more details available at
grml persistence Enable persistency feature, more details available at
http://wiki.grml.org/doku.php?id=persistency
grml hostname=... Set hostname to given argument
grml hostname Set a random hostname
Expand Down
4 changes: 2 additions & 2 deletions templates/boot/grub/%SHORT_NAME%_options.cfg
@@ -1,8 +1,8 @@
submenu "%GRML_NAME% - advanced options ->" --class=submenu {
menuentry "%GRML_NAME% - enable persistent mode" {
menuentry "%GRML_NAME% - enable persistence mode" {
set gfxpayload=keep
echo 'Loading kernel...'
linux /boot/%SHORT_NAME%/vmlinuz apm=power-off boot=live live-media-path=/live/%GRML_NAME%/ bootid=%BOOTID% nomce "${loopback}" "${kernelopts}" persistent
linux /boot/%SHORT_NAME%/vmlinuz apm=power-off boot=live live-media-path=/live/%GRML_NAME%/ bootid=%BOOTID% nomce "${loopback}" "${kernelopts}" persistence
echo 'Loading initrd...'
initrd /boot/%SHORT_NAME%/initrd.img
}
Expand Down
7 changes: 4 additions & 3 deletions templates/boot/isolinux/grml.cfg
Expand Up @@ -94,16 +94,17 @@ label grml2ram
to use this option.
endtext

label persistent
label persistence
menu label %GRML_NAME% - ^Persistent mode
kernel /boot/%SHORT_NAME%/vmlinuz
append initrd=/boot/%SHORT_NAME%/initrd.img boot=live live-media-path=/live/%GRML_NAME%/ bootid=%BOOTID% apm=power-off vga=791 nomce persistent
append initrd=/boot/%SHORT_NAME%/initrd.img boot=live live-media-path=/live/%GRML_NAME%/ bootid=%BOOTID% apm=power-off vga=791 nomce persistence

text help
Boot Grml and enable persistency
feature to store system and
settings on an external device
with label live-rw / home-rw.
with label custom-ov or
(deprecated) live-rw / home-rw.
endtext

label serial
Expand Down