Advertisement
barjac

grub-menulst2cfg

Nov 3rd, 2010
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. timeout 10
  2. color black/cyan yellow/cyan
  3. gfxmenu (hd0,20)/boot/gfxmenu
  4. default 0
  5.  
  6. title 2010.1 64bit
  7. kernel (hd0,20)/boot/vmlinuz BOOT_IMAGE=2010.1_64bit root=LABEL=2010_1_64_root resume=LABEL=swap_main
  8. initrd (hd0,20)/boot/initrd.img
  9.  
  10. title failsafe
  11. kernel (hd0,20)/boot/vmlinuz BOOT_IMAGE=failsafe root=LABEL=2010_1_64_root failsafe
  12. initrd (hd0,20)/boot/initrd.img
  13.  
  14. title linux
  15. kernel (hd0,20)/boot/vmlinuz BOOT_IMAGE=linux root=LABEL=2010_1_64_root resume=LABEL=swap_main
  16. initrd (hd0,20)/boot/initrd.img
  17.  
  18. title desktop 2.6.33.7-1
  19. kernel (hd0,20)/boot/vmlinuz-2.6.33.7-desktop-1mnb BOOT_IMAGE=desktop_2.6.33.7-1 root=LABEL=2010_1_64_root resume=LABEL=swap_main
  20. initrd (hd0,20)/boot/initrd-2.6.33.7-desktop-1mnb.img
  21.  
  22. title desktop 2.6.33.7-1 mib
  23. kernel (hd0,20)/boot/vmlinuz-2.6.33.7-desktop-69mib BOOT_IMAGE=desktop_2.6.33.7-1 root=LABEL=2010_1_64_root resume=LABEL=swap_main
  24. initrd (hd0,20)/boot/initrd-2.6.33.7-desktop-69mib.img
  25.  
  26. CONVERTS TO :-
  27.  
  28. set timeout=10
  29. set color_normal='black/cyan'; set color_highlight='yellow/cyan'
  30. # Unsupported legacy command: gfxmenu (hd0,20)/boot/gfxmenu
  31.  
  32. set default='0'; if [ x"$default" = xsaved ]; then load_env; set default="$saved_entry"; fi
  33.  
  34. menuentry '2010.1 64bit' {
  35. legacy_kernel '(hd0,21)/boot/vmlinuz' '(hd0,20)/boot/vmlinuz' 'BOOT_IMAGE=2010.1_64bit' 'root=LABEL=2010_1_64_root' 'resume=LABEL=swap_main'
  36. legacy_initrd '(hd0,21)/boot/initrd.img' '(hd0,20)/boot/initrd.img'
  37.  
  38. }
  39.  
  40. menuentry 'failsafe' {
  41. legacy_kernel '(hd0,21)/boot/vmlinuz' '(hd0,20)/boot/vmlinuz' 'BOOT_IMAGE=failsafe' 'root=LABEL=2010_1_64_root' 'failsafe'
  42. legacy_initrd '(hd0,21)/boot/initrd.img' '(hd0,20)/boot/initrd.img'
  43.  
  44. }
  45.  
  46. menuentry 'linux' {
  47. legacy_kernel '(hd0,21)/boot/vmlinuz' '(hd0,20)/boot/vmlinuz' 'BOOT_IMAGE=linux' 'root=LABEL=2010_1_64_root' 'resume=LABEL=swap_main'
  48. legacy_initrd '(hd0,21)/boot/initrd.img' '(hd0,20)/boot/initrd.img'
  49.  
  50. }
  51.  
  52. menuentry 'desktop 2.6.33.7-1' {
  53. legacy_kernel '(hd0,21)/boot/vmlinuz-2.6.33.7-desktop-1mnb' '(hd0,20)/boot/vmlinuz-2.6.33.7-desktop-1mnb' 'BOOT_IMAGE=desktop_2.6.33.7-1' 'root=LABEL=2010_1_64_root' 'resume=LABEL=swap_main'
  54. legacy_initrd '(hd0,21)/boot/initrd-2.6.33.7-desktop-1mnb.img' '(hd0,20)/boot/initrd-2.6.33.7-desktop-1mnb.img'
  55.  
  56. }
  57.  
  58. menuentry 'desktop 2.6.33.7-1 mib' {
  59. legacy_kernel '(hd0,21)/boot/vmlinuz-2.6.33.7-desktop-69mib' '(hd0,20)/boot/vmlinuz-2.6.33.7-desktop-69mib' 'BOOT_IMAGE=desktop_2.6.33.7-1' 'root=LABEL=2010_1_64_root' 'resume=LABEL=swap_main'
  60. legacy_initrd '(hd0,21)/boot/initrd-2.6.33.7-desktop-69mib.img' '(hd0,20)/boot/initrd-2.6.33.7-desktop-69mib.img'
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement