Advertisement
Guest User

Untitled

a guest
Aug 15th, 2019
350
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.41 KB | None | 0 0
  1. #------------------------------------------------------------------------------------------------------
  2. #
  3. # config.ini
  4. #
  5. #------------------------------------------------------------------------------------------------------
  6.  
  7. #------------------------------------------------------------------------------------------------------
  8. #
  9. # Console Setup
  10. #
  11. # consoleopt='console=ttyS0,115200 console=tty0 no_console_suspend'
  12. #
  13. #------------------------------------------------------------------------------------------------------
  14.  
  15. #------------------------------------------------------------------------------------------------------
  16. #
  17. # CPU Frequency Control
  18. #
  19. # WARNING!!! WARNING!!! WARNING!!!
  20. #   Before changing anything here please read the wiki entry at:
  21. #   https://wiki.odroid.com/odroid-n2/application_note/software/set_cpu_freq
  22. #
  23. # max_freq_a73='1800'
  24. # max_freq_a53='1896'
  25. #
  26. #------------------------------------------------------------------------------------------------------
  27.  
  28. #------------------------------------------------------------------------------------------------------
  29. #
  30. # HDMI CEC Control, 0=disable/1=enable
  31. #
  32. # hdmi_cec='1'
  33. #
  34. #------------------------------------------------------------------------------------------------------
  35.  
  36. #------------------------------------------------------------------------------------------------------
  37.  
  38. #IR setup
  39. #   Setup a custom keycode to wake the N2 from suspend or poweroff
  40. #   You can stop kodi and eventlircd and use "ir-keytable -u" to obtain a compatible u-boot
  41. #   IR keycode
  42. remotewakeup='0xbf40fe01'
  43. #   decode_type can be one of the following:
  44. #   NEC='0x0', DUOKAN='0x1', TOSHIBA='0x2', RCA='0x3', RC5='0x4', RC6A='0x5', NEC_TOSHIBA_2IN1='0x6',
  45. #   NEC_RCA_2IN1='0x7', RCMM='0x8', NEC_RC5_2IN1='0x9', NEC_RC5_2IN1='0xa', RC6='0xb'
  46. decode_type='0x0' # NEC
  47. #   remote power key mask:
  48. #   Some IR protocols implement a toggle bit, this can be ignored by the "and" mask:
  49. #   RC5='0x37ff', RC6='0x1effff', RC6A='0xffff7fff'
  50. remotewakeupmask='0xffffffff'
  51. #------------------------------------------------------------------------------------------------------
  52.  
  53. #------------------------------------------------------------------------------------------------------
  54. #
  55. # WOL Setting, 0=off/1=on
  56. #
  57. # wol=1
  58. #
  59. #------------------------------------------------------------------------------------------------------
  60.  
  61. #------------------------------------------------------------------------------------------------------
  62. #
  63. # Heartbeat for Odroid N2
  64. #   You can disable the blue LED heartbeat with this option, 0=off/1=on
  65. #
  66. # heartbeat=1
  67. #
  68. #------------------------------------------------------------------------------------------------------
  69.  
  70. #------------------------------------------------------------------------------------------------------
  71. #
  72. # EMMC Timeout for Odroid N2
  73. #   BL1 is configured to boot from eMMC before SD-card, this option is useful if you have another OS
  74. #   installed on to an eMMC as it will delay bootup by 30s allowing you to boot from an SD-card and
  75. #   attach the eMMC during this time, u-boot will then boot from the SD-card and the eMMC will be
  76. #   be available to the OS allowing you to use installtoemmc or browse the eMMC contents.
  77. #
  78. # emmc_timeout=1
  79. #
  80. #------------------------------------------------------------------------------------------------------
  81.  
  82. #------------------------------------------------------------------------------------------------------
  83. #
  84. # Power Off and Wake Up using GPIO Key Button
  85. #   Valid options for Odroid N2 are 476,477,478,479,480,481,483,484,485,486,487,488,489,490,491,492
  86. #   Valid option for Khadas VIM3 is 503
  87. #
  88. # gpiopower=476 # (pin 16 of J2 header)
  89. #------------------------------------------------------------------------------------------------------
  90.  
  91. #------------------------------------------------------------------------------------------------------
  92. #
  93. # USB specific options
  94. #
  95. # usbopts='usb-xhci.tablesize=2'
  96. #
  97. #------------------------------------------------------------------------------------------------------
  98.  
  99. #------------------------------------------------------------------------------------------------------
  100. #
  101. # CoreELEC Developer Options
  102. #   Valid options are: textmode debugging progress nofsck nosplash noram overlay quiet ssh
  103. #
  104. # coreelec='quiet'
  105. #
  106. #------------------------------------------------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement