forked from ventoy/Ventoy
-
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.
Add VTOY_DEFAULT_KBD_LAYOUT in global control plugin
- Loading branch information
Showing
18 changed files
with
1,750 additions
and
11 deletions.
There are no files selected for viewing
795 changes: 795 additions & 0 deletions
795
GRUB2/MOD_SRC/grub-2.04/grub-core/term/keyboard_layout.c
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
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
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
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
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
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,62 @@ | ||
submenu "Keyboard Layouts" --class=debug_krdlayout { | ||
menuentry QWERTY_USA --class=debug_kbd { | ||
set_keyboard_layout QWERTY_USA | ||
} | ||
menuentry AZERTY --class=debug_kbd { | ||
set_keyboard_layout AZERTY | ||
} | ||
menuentry CZECH_QWERTY --class=debug_kbd { | ||
set_keyboard_layout CZECH_QWERTY | ||
} | ||
menuentry CZECH_QWERTZ --class=debug_kbd { | ||
set_keyboard_layout CZECH_QWERTZ | ||
} | ||
menuentry DANISH --class=debug_kbd { | ||
set_keyboard_layout DANISH | ||
} | ||
menuentry DVORAK_USA --class=debug_kbd { | ||
set_keyboard_layout DVORAK_USA | ||
} | ||
menuentry FRENCH --class=debug_kbd { | ||
set_keyboard_layout FRENCH | ||
} | ||
menuentry GERMAN --class=debug_kbd { | ||
set_keyboard_layout GERMAN | ||
} | ||
menuentry ITALIANO --class=debug_kbd { | ||
set_keyboard_layout ITALIANO | ||
} | ||
menuentry JAPAN_106 --class=debug_kbd { | ||
set_keyboard_layout JAPAN_106 | ||
} | ||
menuentry LATIN_USA --class=debug_kbd { | ||
set_keyboard_layout LATIN_USA | ||
} | ||
menuentry PORTU_BRAZIL --class=debug_kbd { | ||
set_keyboard_layout PORTU_BRAZIL | ||
} | ||
menuentry QWERTY_UK --class=debug_kbd { | ||
set_keyboard_layout QWERTY_UK | ||
} | ||
menuentry QWERTZ --class=debug_kbd { | ||
set_keyboard_layout QWERTZ | ||
} | ||
menuentry QWERTZ_HUN --class=debug_kbd { | ||
set_keyboard_layout QWERTZ_HUN | ||
} | ||
menuentry QWERTZ_SLOV_CROAT --class=debug_kbd { | ||
set_keyboard_layout QWERTZ_SLOV_CROAT | ||
} | ||
menuentry SPANISH --class=debug_kbd { | ||
set_keyboard_layout SPANISH | ||
} | ||
menuentry SWEDISH --class=debug_kbd { | ||
set_keyboard_layout SWEDISH | ||
} | ||
menuentry TURKISH_Q --class=debug_kbd { | ||
set_keyboard_layout TURKISH_Q | ||
} | ||
menuentry VIETNAMESE --class=debug_kbd { | ||
set_keyboard_layout VIETNAMESE | ||
} | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
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
Oops, something went wrong.