Advertisement
blbulyandavbulyan

grub.cfg

Aug 7th, 2022 (edited)
345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.56 KB | None | 0 0
  1. if loadfont $prefix/font.pf2 ; then
  2. set gfxmode=800x600
  3. set gfxpayload=keep
  4. insmod efi_gop
  5. insmod efi_uga
  6. insmod video_bochs
  7. insmod video_cirrus
  8. insmod gfxterm
  9. insmod png
  10. terminal_output gfxterm
  11. fi
  12.  
  13. if background_image /isolinux/splash.png; then
  14. set color_normal=light-gray/black
  15. set color_highlight=white/black
  16. elif background_image /splash.png; then
  17. set color_normal=light-gray/black
  18. set color_highlight=white/black
  19. else
  20. set menu_color_normal=cyan/blue
  21. set menu_color_highlight=white/blue
  22. fi
  23.  
  24. insmod play
  25. play 960 440 1 0 4 440 1
  26. if [ ${iso_path} ] ; then
  27. set loopback="findiso=${iso_path}"
  28. export loopback
  29. fi
  30.  
  31. menuentry "Debian GNU/Linux Live (kernel 5.10.0-13-amd64)" {
  32. linux /live/vmlinuz-5.10.0-13-amd64 boot=live components splash quiet "${loopback}"
  33. initrd /live/initrd.img-5.10.0-13-amd64
  34. }
  35. submenu "Debian Live with Localisation Support" {
  36. menuentry "Bangla (bn)" {
  37. linux /live/vmlinuz-5.10.0-13-amd64 boot=live components locales=bn_BD quiet splash "${loopback}"
  38. initrd /live/initrd.img-5.10.0-13-amd64
  39. }
  40. menuentry "C (C)" {
  41. linux /live/vmlinuz-5.10.0-13-amd64 boot=live components locales=C quiet splash "${loopback}"
  42. initrd /live/initrd.img-5.10.0-13-amd64
  43. }
  44. menuentry "Danish (da)" {
  45. linux /live/vmlinuz-5.10.0-13-amd64 boot=live components locales=da_DK.UTF-8 quiet splash "${loopback}"
  46. initrd /live/initrd.img-5.10.0-13-amd64
  47. }
  48. menuentry "Dzongkha (dz)" {
  49. linux /live/vmlinuz-5.10.0-13-amd64 boot=live components locales=dz_BT quiet splash "${loopback}"
  50. initrd /live/initrd.img-5.10.0-13-amd64
  51. }
  52. menuentry "English (en)" {
  53. linux /live/vmlinuz-5.10.0-13-amd64 boot=live components locales=en_US.UTF-8 quiet splash "${loopback}"
  54. initrd /live/initrd.img-5.10.0-13-amd64
  55. }
  56. menuentry "Kazakh (kk)" {
  57. linux /live/vmlinuz-5.10.0-13-amd64 boot=live components locales=kk_KZ.UTF-8 quiet splash "${loopback}"
  58. initrd /live/initrd.img-5.10.0-13-amd64
  59. }
  60. menuentry "Kurdish (ku)" {
  61. linux /live/vmlinuz-5.10.0-13-amd64 boot=live components locales=ku_TR.UTF-8 quiet splash "${loopback}"
  62. initrd /live/initrd.img-5.10.0-13-amd64
  63. }
  64. menuentry "Lao (lo)" {
  65. linux /live/vmlinuz-5.10.0-13-amd64 boot=live components locales=lo_LA quiet splash "${loopback}"
  66. initrd /live/initrd.img-5.10.0-13-amd64
  67. }
  68. menuentry "Burmese (my)" {
  69. linux /live/vmlinuz-5.10.0-13-amd64 boot=live components locales=my_MM quiet splash "${loopback}"
  70. initrd /live/initrd.img-5.10.0-13-amd64
  71. }
  72. menuentry "Northern Sami (se_NO)" {
  73. linux /live/vmlinuz-5.10.0-13-amd64 boot=live components locales=se_NO quiet splash "${loopback}"
  74. initrd /live/initrd.img-5.10.0-13-amd64
  75. }
  76. menuentry "Punjabi (Gurmukhi) (pa)" {
  77. linux /live/vmlinuz-5.10.0-13-amd64 boot=live components locales=pa_IN quiet splash "${loopback}"
  78. initrd /live/initrd.img-5.10.0-13-amd64
  79. }
  80. menuentry "Russian (ru)" {
  81. linux /live/vmlinuz-5.10.0-13-amd64 boot=live components locales=ru_RU.UTF-8 quiet splash "${loopback}"
  82. initrd /live/initrd.img-5.10.0-13-amd64
  83. }
  84. menuentry "Tajik (tg)" {
  85. linux /live/vmlinuz-5.10.0-13-amd64 boot=live components locales=tg_TJ.UTF-8 quiet splash "${loopback}"
  86. initrd /live/initrd.img-5.10.0-13-amd64
  87. }
  88. }
  89. menuentry "Graphical Debian Installer" {
  90. linux /d-i/gtk/vmlinuz append video=vesa:ywrap,mtrr vga=788 "${loopback}"
  91. initrd /d-i/gtk/initrd.gz
  92. }
  93. menuentry "Debian Installer" {
  94. linux /d-i/vmlinuz "${loopback}"
  95. initrd /d-i/initrd.gz
  96. }
  97. menuentry "Debian Installer with Speech Synthesis" {
  98. linux /d-i/gtk/vmlinuz speakup.synth=soft "${loopback}"
  99. initrd /d-i/gtk/initrd.gz
  100. }
  101.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement