Advertisement
Guest User

Untitled

a guest
Jul 27th, 2019
460
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.83 KB | None | 0 0
  1. DEFAULT seatools
  2. #UI menu.c32
  3. UI vesamenu.c32
  4. PROMPT 0
  5. TIMEOUT 100
  6. ONTIMEOUT seatools
  7. F1 f1
  8. F2 f2
  9. F3 f3
  10. F4 f4
  11.  
  12. MENU TITLE Seagate Technology Bootable Tools RC (09-Mar-2018)
  13. MENU TABMSG Press ENTER to select, TAB to edit, or press F1 for more information.
  14. MENU AUTOBOOT BIOS default device boot in # second{,s}...
  15.  
  16. #MENU RESOLUTION 640 480
  17. #MENU BACKGROUND seagate_logo_640.png
  18. #MENU HSHIFT 0
  19. #MENU VSHIFT 15
  20. #MENU TABMSGROW -16
  21. #MENU TIMEOUTROW -15
  22.  
  23. MENU RESOLUTION 1024 768
  24. MENU BACKGROUND seagate_logo_1024.png
  25. MENU HSHIFT 25
  26. MENU VSHIFT 27
  27. MENU TABMSGROW -32
  28. MENU TIMEOUTROW -33
  29.  
  30. MENU WIDTH 80
  31. MENU MARGIN 10
  32. MENU ROWS 5
  33. #MENU HELPMSGROW -20
  34. #MENU HELPMSGENDROW -17
  35. #MENU ENDROW -1
  36.  
  37. # Refer to http://www.syslinux.org/wiki/index.php?title=Comboot/menu.c32
  38. # element ansi f/ground b/ground shadow
  39. MENU COLOR screen 37;40 #80ffffff #00000000 std
  40. MENU COLOR border 30;44 #40ffffff #00000000 std
  41. MENU COLOR title 1;36;44 #d96bc4ef #00000000 std
  42. MENU COLOR unsel 37;44 #90ffffff #00000000 std
  43. MENU COLOR help 37;40 #c0ffffff #a0000000 std
  44. MENU COLOR hotkey 1;37;44 #ffffffff #00000000 std
  45. MENU COLOR sel 7;37;40 #e06ebe49 #20939597 all
  46. MENU COLOR hotsel 1;7;37;40 #e0400000 #20ff8000 all
  47. MENU COLOR scrollbar 30;44 #40000000 #00000000 std
  48. MENU COLOR tabmsg 31;40 #b3f2cd13 #00000000 std
  49. MENU COLOR cmdmark 1;36;40 #c000ffff #00000000 std
  50. MENU COLOR cmdline 37;40 #c0ffffff #00000000 std
  51. MENU COLOR timeout_msg 37;40 #80ffffff #00000000 std
  52. MENU COLOR timeout 1;37;40 #c0e53e2f #00000000 std
  53.  
  54. MENU CLEAR
  55.  
  56. LABEL seatools
  57. MENU DEFAULT
  58. MENU LABEL SeaTools Bootable Diagnostic (13 languages, GUI)
  59. #TEXT HELP
  60. #Boot Core with SeaTools Bootable and networking.
  61. #All extensions are loaded mount mode. USB boot media is not removable.
  62. #ENDTEXT
  63. KERNEL /boot/64bit/vmlinuz_4817_64-signed
  64. APPEND initrd=/boot/64bit/modules_4817_64.gz,/boot/32bit/rootfs_4817_32.gz lang=en_US.UTF-8 kmap=qwerty/us noutc loglevel=2 quiet noacpi noswap libata.allow_tpm=1 consoleblank=0 waitusb=5:LABEL=SEABOOT tce=LABEL=SEABOOT mydata=mydata_STB lst=onboot_STB_Xorg.lst desktop=xfwm4 vga=791 xexec="ST4L --exitPowerOff"
  65.  
  66. # if Xfbdev is used in place of Xorg as the default Xserver then add video=vesafb:ywrap,mtrr:3 to the boot options
  67.  
  68. LABEL seachest
  69. MENU LABEL SeaChest Command Line Utilities (English, 32-bit)
  70. #TEXT HELP
  71. #Boot Core with SeaChest Command Line Utilities and networking.
  72. #All extensions are loaded mount mode. USB boot media is not removable.
  73. #ENDTEXT
  74. KERNEL /boot/64bit/vmlinuz_4817_64-signed
  75. APPEND initrd=/boot/64bit/modules_4817_64.gz,/boot/32bit/rootfs_4817_32.gz lang=en_US.UTF-8 kmap=qwerty/us noutc loglevel=2 quiet noacpi noswap libata.allow_tpm=1 consoleblank=0 waitusb=5:LABEL=SEABOOT tce=LABEL=SEABOOT mydata=mydata_CLI lst=onboot_CLI.lst vga=791 texec="SeaChest_Firmware --scan --echoCommandLine"
  76.  
  77. # you can uncomment the below section to have a typical Tiny Core Linux desktop environment
  78.  
  79. #LABEL jwm
  80. #MENU LABEL Tiny Core 64 8.2.1-4.8.17 (Xorg, Joe's Window Manager)
  81. #TEXT HELP
  82. #Boot Core with Window Manager and networking.
  83. #All extensions are loaded mount mode. USB boot media is not removable.
  84. #ENDTEXT
  85. #KERNEL /boot/64bit/vmlinuz_4817_64-signed
  86. #APPEND initrd=/boot/64bit/modules_4817_64.gz,/boot/32bit/rootfs_4817_32.gz lang=en_US.UTF-8 kmap=qwerty/us noutc loglevel=2 acpi=on noswap libata.allow_tpm=1 waitusb=5:LABEL=SEABOOT tce=LABEL=SEABOOT mydata=mydata_jwm_Xorg_RC lst=onboot_xorg_jwm_RC.lst desktop=jwm vga=ask showapps pause
  87.  
  88. # if Xfbdev is used in place of Xorg as the default Xserver then add video=vesafb:ywrap,mtrr:3 to the boot options
  89.  
  90. MENU SEPARATOR
  91.  
  92. LABEL reboot
  93. MENU LABEL Reboot
  94. COM32 reboot.c32
  95.  
  96. LABEL poweroff
  97. MENU LABEL Poweroff
  98. COM32 poweroff.c32
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement