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
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
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
Anton Palgunov
mkimage-profiles
Commits
0837be65
Commit
0837be65
authored
Jul 20, 2021
by
Anton Midyukov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
grub: Add/fix --id to cfg
parent
bccfe99b
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
10localboot_bios.cfg
features.in/grub/cfg.in/10localboot_bios.cfg
+1
-1
40lang.cfg
features.in/grub/cfg.in/40lang.cfg
+1
-1
89kernel.cfg
features.in/grub/cfg.in/89kernel.cfg
+1
-1
90hdt_bios.cfg
features.in/grub/cfg.in/90hdt_bios.cfg
+1
-1
91shell_efi.cfg
features.in/grub/cfg.in/91shell_efi.cfg
+1
-1
95sdab_bios.cfg
features.in/grub/cfg.in/95sdab_bios.cfg
+2
-2
No files found.
features.in/grub/cfg.in/10localboot_bios.cfg
View file @
0837be65
if [ "$grub_platform" = "pc" ]; then
menuentry $"Boot from hard drive" {
menuentry $"Boot from hard drive"
--id 'harddisk'
{
insmod part_msdos
insmod chain
set oldroot="$root"
...
...
features.in/grub/cfg.in/40lang.cfg
View file @
0837be65
submenu $"Change language (press F2)" --hotkey 'f2' {
submenu $"Change language (press F2)" --hotkey 'f2'
--id 'lang'
{
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"
...
...
features.in/grub/cfg.in/89kernel.cfg
View file @
0837be65
submenu $"Change Kernel Flavour (press F5)" --hotkey 'f5' {
submenu $"Change Kernel Flavour (press F5)" --hotkey 'f5'
--id 'kflavour'
{
insmod regexp
regexp -s 1:kflavours -s 2:kflavourstr '(.*) (.*)' "@KFLAVOUR@"
menuentry "${kflavourstr}" {
...
...
features.in/grub/cfg.in/90hdt_bios.cfg
View file @
0837be65
if [ "$grub_platform" = "pc" ]; then
menuentry $"Hardware Info" {
menuentry $"Hardware Info"
--id 'hdt'
{
linux16 /boot/memdisk
initrd16 /boot/hdt.img
}
...
...
features.in/grub/cfg.in/91shell_efi.cfg
View file @
0837be65
if [ "$grub_platform" = "efi" ]; then
menuentry $"EFI shell" --id '
EFI
shell' {
menuentry $"EFI shell" --id '
efi
shell' {
chainloader /EFI/shellx64.efi
boot
}
...
...
features.in/grub/cfg.in/95sdab_bios.cfg
View file @
0837be65
if [ "$grub_platform" = "pc" ]; then
menuentry $"Boot from 1st hard/flash drive" {
menuentry $"Boot from 1st hard/flash drive"
--id 'sda'
{
insmod part_msdos
insmod chain
set oldroot="$root"
...
...
@@ -8,7 +8,7 @@ if [ "$grub_platform" = "pc" ]; then
set root="$oldroot"
}
menuentry $"Boot from 2nd hard/flash drive" {
menuentry $"Boot from 2nd hard/flash drive"
--id 'sdb'
{
insmod part_msdos
insmod chain
set oldroot="$root"
...
...
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