Advertisement
ot_inc

exosphere settings

Apr 16th, 2024 (edited)
653
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Key: debugmode, default: 1.
  2. #  Desc: Controls whether kernel is debug mode.
  3. #   Disabling this may break Atmosphere's debugger in a future release.
  4.  
  5. # Key: debugmode_user, default: 0.
  6. #  Desc: Controls whether userland is debug mode.
  7.  
  8. # Key: disable_user_exception_handlers, default: 0.
  9. #  Desc: Controls whether user exception handlers are executed on error.
  10. #  NOTE: This will cause atmosphere to not fail gracefully.
  11. #   Support may not be provided to users tho disable these.
  12. #   If you do not know what you are doing, leave them on.
  13.  
  14. # Key: enable_user_pmu_access, default: 0.
  15. #  Desc: Controls whether userland has access to the PMU registers.
  16. #  NOTE: It is unknown what effects this has on official code.
  17.  
  18. # Key: blank_prodinfo_sysmmc, default: 0.
  19. #  Desc: Controls whether PRODINFO should be blanked in sysmmc.
  20. #   This will cause the system to see dummied out keys and
  21. #   serial number information.
  22. #  NOTE: This is not known to be safe, as data may be
  23. #   cached elsewhere in the system. Usage is not encouraged.
  24.  
  25. # Key: blank_prodinfo_emummc, default: 0.
  26. #  Desc: Controls whether PRODINFO should be blanked in emummc.
  27. #  NOTE: This is not known to be safe, as data may be
  28. #   cached elsewhere in the system. Usage is not encouraged.
  29.  
  30. # Key: allow_writing_to_cal_sysmmc, default: 0.
  31. #  Desc: Controls whether PRODINFO can be written by homebrew in sysmmc.
  32. #  NOTE: Usage of this setting is strongly discouraged without
  33. #    a safe backup elsewhere. Turning this on will also cause Atmosphere
  34. #    to ensure a safe backup of calibration data is stored in unused
  35. #    mmc space, encrypted to prevent detection. This backup can be used
  36. #    to prevent unrecoverable edits in emergencies.
  37.  
  38. # Key: log_port, default: 0.
  39. #  Desc: Controls what uart port exosphere will set up for logging.
  40. #  NOTE: 0 = UART-A, 1 = UART-B, 2 = UART-C, 3 = UART-D
  41.  
  42. # Key: log_baud_rate, default: 115200
  43. #  Desc: Controls the baud rate exosphere will set up for logging.
  44. #  NOTE: 0 is treated as equivalent to 115200.
  45.  
  46. # Key: log_inverted, default: 0.
  47. #  Desc: Controls whether the logging uart port is inverted.
  48.  
  49. [exosphere]
  50. debugmode=1
  51. debugmode_user=0
  52. disable_user_exception_handlers=0
  53. enable_user_pmu_access=0
  54. blank_prodinfo_sysmmc=1 ← Nintendo data spoofing
  55. blank_prodinfo_emummc=1 ← Nintendo data spoofing
  56. allow_writing_to_cal_sysmmc=0
  57. log_port=0
  58. log_baud_rate=115200
  59. log_inverted=0
  60.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement