Guest User

a9hl boot menu config

a guest
Feb 28th, 2016
332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. ;Comments starts with ";" or "#", so you need to remove it first to the
  2. ;line actually do something.
  3.  
  4. [DEFAULT]
  5. path = /rei/arm9loaderhax.bin
  6. delay = 2000
  7. offset = 0
  8. payload = -1
  9. screenEnabled = 0;
  10.  
  11.  
  12. [KEY_SELECT]
  13. path = /Uncart.bin
  14. screenEnabled = 1
  15. delay = 2000
  16. offset = 0
  17. payload = -1
  18.  
  19.  
  20. [KEY_A]
  21. path = /Decrypt9WIP.bin
  22. screenEnabled = 1
  23. delay = 100
  24. offset = 0
  25. payload = -1
  26.  
  27. ;Each key can be defined using a section, like the example below. Section
  28. ;names must be ALL caps, and between "[]". Valid keys:
  29. ; * Common keys: KEY_A, KEY_B, KEY_X, KEY_Y, KEY_L, KEY_R, KEY_SELECT,
  30. ; KEY_START.
  31. ; * D-PAD: KEY_DUP, KEY_DDOWN, KEY_DLEFT, KEY_DRIGHT.
  32. ;You MUST set at least "path" for each section, and it is the ONLY option you
  33. ;should set in the majority of cases.
  34. ;You may pass a .3dsx file or a .dat/.bin payload, the file type is detect
  35. ;automatically based on extension. Double check the path, since it must be
  36. ;correct (including caps).
  37. ;[KEY_CPAD_LEFT] ;MUST BE ALL CAPS
  38. ;path = /And/Respect_Caps_in_Path.3dsx
  39.  
  40. ;Basic usage examples:
  41. ;[KEY_R]
  42. ;path = /ReiNand.dat
  43. ;delay = 2000
  44. ;offset = 0x12000
  45. ;payload = 1
  46.  
  47. ;Boot examples for almost every CFW out there.
  48. ;You can use both .3dsx files or binary (.bin, .dat) payloads
  49. ;[KEY_A]
  50. ;path = /rxTools/sys/code.bin
  51. ;[KEY_B]
  52. ;path = /Cakes.dat
  53. ;screenEnabled = 1
  54. ;[KEY_X]
  55. ;path = /3ds/GW/GW.3dsx
  56. ;[KEY_Y]
  57. ;path = /ReiNand.dat
  58.  
  59. ;An important remark: the majority of CFWs set L button to show menu instead
  60. ;of autobooting. So it is generally a bad idea to set L button to CFW boot,
  61. ;or the CFW menu will be shown instead of booting directly to CFW.
  62. ;[KEY_L]
  63. ;path = /rxTools/sys/code.bin ;BAD IDEA!!!
Advertisement
Add Comment
Please, Sign In to add comment