Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mkimage-profiles
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
2
Issues
2
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ximper Linux
mkimage-profiles
Commits
2a875c70
Commit
2a875c70
authored
Jan 26, 2021
by
Ivan Razzhivin
Committed by
Anton Midyukov
Jan 26, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
grub: Markup configuration files for translation
parent
fb1ad2ca
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
29 additions
and
29 deletions
+29
-29
20install2.cfg
features.in/grub/cfg.in/20install2.cfg
+3
-3
25install-vnc-connect.cfg
features.in/grub/cfg.in/25install-vnc-connect.cfg
+1
-1
25install-vnc-listen.cfg
features.in/grub/cfg.in/25install-vnc-listen.cfg
+1
-1
30live.cfg
features.in/grub/cfg.in/30live.cfg
+3
-3
32live_rw.cfg
features.in/grub/cfg.in/32live_rw.cfg
+3
-3
40lang.cfg
features.in/grub/cfg.in/40lang.cfg
+2
-2
80rescue.cfg
features.in/grub/cfg.in/80rescue.cfg
+3
-3
82rescue_rw.cfg
features.in/grub/cfg.in/82rescue_rw.cfg
+3
-3
83rescue_fm.cfg
features.in/grub/cfg.in/83rescue_fm.cfg
+3
-3
84rescue_remote.cfg
features.in/grub/cfg.in/84rescue_remote.cfg
+2
-2
85mediacheck.cfg
features.in/grub/cfg.in/85mediacheck.cfg
+1
-1
90kernel.cfg
features.in/grub/cfg.in/90kernel.cfg
+2
-2
90memtest_efi.cfg
features.in/grub/cfg.in/90memtest_efi.cfg
+1
-1
95fwsetup_efi.cfg
features.in/grub/cfg.in/95fwsetup_efi.cfg
+1
-1
No files found.
features.in/grub/cfg.in/20install2.cfg
View file @
2a875c70
default='linux'
menuentry
'Install @relname@'
--hotkey 'i' --id 'linux' {
echo "Loading Linux vmlinuz$KFLAVOUR ..."
menuentry
$"Install @relname@"
--hotkey 'i' --id 'linux' {
echo
$
"Loading Linux vmlinuz$KFLAVOUR ..."
linux@linux_suffix@ @boot_path@/vmlinuz$KFLAVOUR changedisk fastboot automatic=method:cdrom ramdisk_size=@altinst_size@ vga=@bootvga@ @bootargs@ @efi_bootargs@ lang=$lang
echo
'Loading initial ramdisk ...'
echo
$"Loading initial ramdisk ..."
initrd@linux_suffix@ @boot_path@/full$KFLAVOUR.cz
}
features.in/grub/cfg.in/25install-vnc-connect.cfg
View file @
2a875c70
menuentry
'VNC install @relname@ (edit to set server IP address)'
--id 'vncconnect' {
menuentry
$"VNC install @relname@ (edit to set server IP address)"
--id 'vncconnect' {
linux@linux_suffix@ @boot_path@/vmlinuz$KFLAVOUR changedisk fastboot automatic=method:cdrom ramdisk_size=@altinst_size@ showopts @bootargs@ @efi_bootargs@ headless no_alt_virt_keyboard vncconnect=IP lang=$lang
initrd@linux_suffix@ @boot_path@/full$KFLAVOUR.cz
}
features.in/grub/cfg.in/25install-vnc-listen.cfg
View file @
2a875c70
menuentry
'VNC install @relname@ (edit to set password and connect here)'
--id 'vncpasswd' {
menuentry
$"VNC install @relname@ (edit to set password and connect here)"
--id 'vncpasswd' {
linux@linux_suffix@ @boot_path@/vmlinuz$KFLAVOUR changedisk fastboot automatic=method:cdrom ramdisk_size=@altinst_size@ showopts @bootargs@ @efi_bootargs@ headless no_alt_virt_keyboard vncpassword=VNCPWD lang=$lang
initrd@linux_suffix@ @boot_path@/full$KFLAVOUR.cz
}
...
...
features.in/grub/cfg.in/30live.cfg
View file @
2a875c70
menuentry
'LiveCD (no hard disk needed)'
--id 'live' {
echo "Loading Linux vmlinuz$KFLAVOUR ..."
menuentry
$"LiveCD (no hard disk needed)"
--id 'live' {
echo
$
"Loading Linux vmlinuz$KFLAVOUR ..."
linux@linux_suffix@ @boot_path@/vmlinuz$KFLAVOUR changedisk fastboot live automatic=method:cdrom ramdisk_size=@live_size@ stagename=live showopts lowmem vga=@bootvga@ @bootargs@ @efi_bootargs@ lang=$lang
echo
'Loading initial ramdisk ...'
echo
$"Loading initial ramdisk ..."
initrd@linux_suffix@ @boot_path@/full$KFLAVOUR.cz
}
...
...
features.in/grub/cfg.in/32live_rw.cfg
View file @
2a875c70
menuentry
'LiveCD with sessions support'
--id 'session' {
echo "Loading Linux vmlinuz$KFLAVOUR ..."
menuentry
$"LiveCD with sessions support"
--id 'session' {
echo
$
"Loading Linux vmlinuz$KFLAVOUR ..."
linux@linux_suffix@ @boot_path@/vmlinuz$KFLAVOUR changedisk fastboot live automatic=method:cdrom ramdisk_size=@live_size@ stagename=live showopts live_rw vga=@bootvga@ @bootargs@ @efi_bootargs@ lang=$lang
echo
'Loading initial ramdisk ...'
echo
$"Loading initial ramdisk ..."
initrd@linux_suffix@ @boot_path@/full$KFLAVOUR.cz
}
features.in/grub/cfg.in/40lang.cfg
View file @
2a875c70
submenu "Change language (press F2)" --hotkey 'f2' {
submenu
$
"Change language (press F2)" --hotkey 'f2' {
insmod regexp
for langstr in "ru_RU=Russian" "en_US=English" "pt_BR=Portuguese" "kk_KZ=Kazakh" "uk_UA=Ukrainian"; do
regexp -s 2:langname -s 1:langcode '(.*)=(.*)' "$langstr"
...
...
@@ -8,7 +8,7 @@ submenu "Change language (press F2)" --hotkey 'f2' {
configfile ${prefix}/grub.cfg
}
done
menuentry "Return to the Main menu" {
menuentry
$
"Return to the Main menu" {
configfile ${prefix}/grub.cfg
}
}
features.in/grub/cfg.in/80rescue.cfg
View file @
2a875c70
menuentry
'Rescue LiveCD'
--id 'rescue' {
echo "Loading Linux vmlinuz$KFLAVOUR ..."
menuentry
$"Rescue LiveCD"
--id 'rescue' {
echo
$
"Loading Linux vmlinuz$KFLAVOUR ..."
linux@linux_suffix@ @boot_path@/vmlinuz$KFLAVOUR changedisk fastboot live automatic=method:cdrom ramdisk_size=@rescue_size@ stagename=rescue splash=0 showopts @rescue_bootargs@ @efi_bootargs@
echo
'Loading initial ramdisk ...'
echo
$"Loading initial ramdisk ..."
initrd@linux_suffix@ @boot_path@/full$KFLAVOUR.cz
}
features.in/grub/cfg.in/82rescue_rw.cfg
View file @
2a875c70
menuentry
'Rescue with sessions support'
--id 'rescue_session' {
echo "Loading Linux vmlinuz$KFLAVOUR ..."
menuentry
$"Rescue with sessions support"
--id 'rescue_session' {
echo
$
"Loading Linux vmlinuz$KFLAVOUR ..."
linux@linux_suffix@ @boot_path@/vmlinuz$KFLAVOUR changedisk fastboot live automatic=method:cdrom,label:ALT* ramdisk_size=@rescue_size@ stagename=rescue splash=0 showopts @rescue_bootargs@ @efi_bootargs@ live_rw
echo
'Loading initial ramdisk ...'
echo
$"Loading initial ramdisk ..."
initrd@linux_suffix@ @boot_path@/full$KFLAVOUR.cz
}
features.in/grub/cfg.in/83rescue_fm.cfg
View file @
2a875c70
menuentry
'Forensic mode (leave disks alone)'
--id 'rescue_forensic' {
echo "Loading Linux vmlinuz$KFLAVOUR ..."
menuentry
$"Forensic mode (leave disks alone)"
--id 'rescue_forensic' {
echo
$
"Loading Linux vmlinuz$KFLAVOUR ..."
linux@linux_suffix@ @boot_path@/vmlinuz changedisk fastboot live automatic=method:cdrom ramdisk_size=@rescue_size@ splash=0 showopts stagename=rescue @rescue_bootargs@ @efi_bootargs@ max_loop=16 forensic hash=@rescue_hash@
echo
'Loading initial ramdisk ...'
echo
$"Loading initial ramdisk ..."
initrd@linux_suffix@ @boot_path@/full.cz
}
features.in/grub/cfg.in/84rescue_remote.cfg
View file @
2a875c70
menuentry
'Rescue with remote SSH access (DHCP)'
--id 'rescue_remote' {
menuentry
$"Rescue with remote SSH access (DHCP)"
--id 'rescue_remote' {
linux@linux_suffix@ @boot_path@/vmlinuz$KFLAVOUR changedisk fastboot live automatic=method:cdrom ramdisk_size=@rescue_size@ splash=0 showopts stagename=rescue @rescue_bootargs@ @efi_bootargs@ max_loop=16 ip=dhcp port=22 rootpw=AUTO hash=@rescue_hash@
echo
'Loading initial ramdisk ...'
echo
$"Loading initial ramdisk ..."
initrd@linux_suffix@ @boot_path@/full$KFLAVOUR.cz
}
features.in/grub/cfg.in/85mediacheck.cfg
View file @
2a875c70
menuentry
'Check this media for defects'
--id 'mediachk' {
menuentry
$"Check this media for defects"
--id 'mediachk' {
linux@linux_suffix@ @boot_path@/vmlinuz changedisk live quiet lowmem automatic=method:cdrom mediacheck=1 stagename=mediacheck showopts @bootargs@ @efi_bootargs@
initrd@linux_suffix@ @boot_path@/full.cz
}
features.in/grub/cfg.in/90kernel.cfg
View file @
2a875c70
submenu "Change Kernel Flavour (press F5)" --hotkey 'f5' {
submenu
$
"Change Kernel Flavour (press F5)" --hotkey 'f5' {
insmod regexp
regexp -s 1:kflavours -s 2:kflavourstr '(.*) (.*)' "@KFLAVOUR@"
menuentry "${kflavourstr}" {
...
...
@@ -13,7 +13,7 @@ submenu "Change Kernel Flavour (press F5)" --hotkey 'f5' {
configfile ${prefix}/grub.cfg
}
done
menuentry "Return to the Main menu" {
menuentry
$
"Return to the Main menu" {
configfile ${prefix}/grub.cfg
}
}
features.in/grub/cfg.in/90memtest_efi.cfg
View file @
2a875c70
menuentry
'Memory Test'
--id 'memtest' {
menuentry
$"Memory Test"
--id 'memtest' {
linux@linux_suffix@ /EFI/tools/memtest86.efi
}
features.in/grub/cfg.in/95fwsetup_efi.cfg
View file @
2a875c70
menuentry
'System setup'
--id 'uefi-firmware' {
menuentry
$"System setup"
--id 'uefi-firmware' {
fwsetup
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment