0345.html 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Flashing the OUYA with i12bretro Image v3.0</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  7. <script type="text/javascript">
  8. $(function(){
  9. $('textarea').each(function(i,e){
  10. theTextarea = $(this);
  11. theTextarea.height((theTextarea[0].scrollHeight-5) +'px');
  12. });
  13. $('li').each(function(i,e){
  14. var uuid = 'li_' + Math.floor(Math.random() * Math.floor(1000000)).toString() + '_' + i.toString();
  15. $(this).contents().wrap('<span id="'+ uuid +'"><label for="cb_'+ uuid +'"></label></span>');
  16. $(this).prepend('<input type="checkbox" class="completeBox" id="cb_' + uuid +'" rel="'+ uuid +'" />')
  17. });
  18. $('code,div.codeBlock,textarea.codeBlock').each(function(i,e){
  19. theElement = $(this);
  20. var lines = theElement.html().split("\n");
  21. theElement.empty();
  22. for(l=0;l<lines.length;l++){
  23. if($.trim(lines[l]) != '' && $.trim(lines[l]).substr(0,1) != '#' && $.trim(lines[l]).indexOf(' #') == -1 && lines[l].substr(0, 4).toUpperCase() != 'REM '){
  24. theElement.append('<input type="image" src="images/clipboard.png" value="" class="copy-text" rel="copy_'+ i +'_'+ l +'" data-clipboard-text="'+ lines[l].replace(/"/g, '&quot;') +'" /><span id="copy_'+ i +'_'+ l +'">'+ lines[l] +'</span>');
  25. } else {
  26. theElement.append(lines[l]);
  27. }
  28. }
  29. });
  30. $(document).on('click','input.copy-text',function(){
  31. theButton = $(this);
  32. $('input.copy-text').attr('src','images/clipboard.png');
  33. $('span.copy-animation').removeClass('copy-animation');
  34. try {
  35. $('#'+ theButton.attr('rel')).addClass('copy-animation');
  36. navigator.clipboard.writeText(theButton.data('clipboard-text').replace(/<[^>]*>?/gm, ''));
  37. theButton.attr('src','images/clipboard_active.png');
  38. } catch(err) {
  39. }
  40. return false;
  41. });
  42. $(document).on('click','input.completeBox',function(){
  43. theBox = $(this);
  44. $('#'+ theBox.attr('rel')).addClass('strikethrough');
  45. theBox.prop('disabled',true);
  46. theBox.parent('li').prevAll().each(function(i,e){
  47. theLI = $(this);
  48. if(theLI.find('input[type=checkbox]').not(':checked')){
  49. $('#'+ theLI.find('input[type=checkbox]').attr('rel')).addClass('strikethrough');
  50. theLI.find('input[type=checkbox]').prop('checked',true).prop('disabled',true);
  51. }
  52. });
  53. });
  54. if(window.self !== window.top){
  55. window.parent.$('iframe.stepsFrame').height((this['scrollingElement']['scrollHeight']+20) +'px');
  56. }
  57. });
  58. </script>
  59. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  60. </head>
  61. <body>
  62. <div id="gridContainer">
  63. <div class="topMargin"></div>
  64. <div id="listName" class="topMargin">
  65. <h1>Flashing the OUYA with i12bretro Image v3.0</h1>
  66. </div>
  67. <div></div>
  68. <div id="content">
  69. <h2>What&#39;s Included</h2>
  70. <ul>
  71. <li>Everything from the previous i12bretro Ouya images</li>
  72. <li>Ouya Discover Store 2020 fix</li>
  73. <li>Factory Reset Fix</li>
  74. <li>Discover Store full games unlock</li>
  75. <li>Root access</li>
  76. </ul>
  77. <h2>What&#39;s New</h2>
  78. <ul>
  79. <li>Updated RetroArch to v1.9.0</li>
  80. <li>Installed Aptoide app store</li>
  81. <li>Installed Dig Emulation Frontend</li>
  82. <li>Semi-working Google Play store (Frequent crashes / apps can be installed, but some don&#39;t work due to missing Google services)</li>
  83. </ul>
  84. <h2>Things You Will Need</h2>
  85. <ul>
  86. <li>A USB flash drive, at least 4 GB of free space</li>
  87. <li>A USB hub, preferably with external power</li>
  88. <li>A USB keyboard</li>
  89. </ul>
  90. <h2>Prerequisites and Downloads</h2>
  91. <ol>
  92. <li>Download i12bretro_OUYA_image_v3.0.zip <a href="https://drive.google.com/file/d/1xY6Yzcjm3VZYHYHVLoa_Fsz3XUUvo26l/view?usp=sharing" target="_blank">Download</a></li>
  93. <li>Format the USB flash drive to FAT32
  94. <ol start="1" style="list-style-type: lower-alpha;">
  95. <li>Right Click Start &gt; File Explorer</li>
  96. <li>Right Click the USB flash drive &gt; Format...</li>
  97. <li>Select FAT32 from the File System dropdown</li>
  98. <li>Make sure Quick Format is checked</li>
  99. <li>Click Start</li>
  100. </ol>
  101. </li>
  102. </ol>
  103. <ol start="4">
  104. <li>Extract the downloaded i12bretro_OUYA_image_v3.0.zip file</li>
  105. <li>Copy the contents of the /Copy_to_USB folder to the root of the USB flash drive</li>
  106. <li>Safely remove the flash drive and plug it into the USB hub connected to the Ouya</li>
  107. <li>Plug in the USB keyboard to the USB hub connected to the Ouya</li>
  108. </ol>
  109. <h2>Installing Ouya USB Drivers</h2>
  110. <ol>
  111. <li>Right click Start &gt; Command Prompt (Admin)</li>
  112. <li>Paste the following commands to disable driving signing checks temporarily
  113. <div class="codeBlock">bcdedit -set loadoptions DISABLE_INTEGRITY_CHECKS<br />
  114. bcdedit -set TESTSIGNING ON<br />
  115. shutdown /r</div>
  116. </li>
  117. <li>Your PC will reboot</li>
  118. <li>Connect a USB cable from the micro USB port on the back of the Ouya to your PC</li>
  119. <li>Make sure the Ouya is connected to a display via HDMI</li>
  120. <li>Power on the Ouya</li>
  121. <li>After a few seconds you should hear Windows chime that a new device has been detected</li>
  122. <li>Right click Start &gt; Device Manager</li>
  123. <li>Expand Other Devices and you should see OUYA listed</li>
  124. <li>Right click OUYA &gt; Update Driver</li>
  125. <li>Select Browse my computer for driver software</li>
  126. <li>Click the Browse... button</li>
  127. <li>Navigate to the extracted i12bretro_OUYA_image_v3.0\files\driver</li>
  128. <li>Click OK</li>
  129. <li>Make sure &quot;Include subfolders&quot; is checked, click Next</li>
  130. <li>Windows should find the correct driver for the Ouya and install it</li>
  131. <li>Navigate to the i12bretro_OUYA_image_v3.0 in windows explorer</li>
  132. <li>Right click i12bretro_OUYA_image_v3.0.bat &gt; Run as administrator</li>
  133. <li>The script uses the Android Debug Bridge (ADB) to boot the Ouya into CyanogenMod recovery</li>
  134. <li>When the command prompts to &quot;--&nbsp; Setup the fastboot driver&quot;, go back to Device Manager expand Android Device</li>
  135. <li>Right click Android Bootloader Device &gt; Update Driver</li>
  136. <li>Select Browse my computer for driver software</li>
  137. <li>Click the Browse... button</li>
  138. <li>Navigate to the extracted i12bretro_OUYA_image_v3.0\files\driver</li>
  139. <li>Click OK</li>
  140. <li>Make sure &quot;Include subfolders&quot; is checked, click Next</li>
  141. <li>Windows should find the correct driver for the Ouya and install it</li>
  142. <li>Press Enter at the command prompt once the driver is installed to continue booting the Ouya to CyanogenMod recovery</li>
  143. </ol>
  144. <h2>Restore i12bretro Image via CyanogenMod Recovery</h2>
  145. <ol>
  146. <li>With the OUYA in CyanogenMod Recovery:</li>
  147. <li>Select wipe data/factory reset</li>
  148. <li>Select Yes to confirm wiping all user data</li>
  149. <li>From the main menu select advanced &gt; wipe dalvik cache partition</li>
  150. <li>Select Yes to confirm wiping the dalvik cache</li>
  151. <li>Select Backup/Restore &gt; Restore from USB disk</li>
  152. <li>Navigate to and select the extracted i12bretro image from the USB disk clockworkmod\backup\i12bretro_v3.0</li>
  153. <li>Select Yes to confirm restoring the backup</li>
  154. <li>Wait several minutes for the various partitions of the image to be copied to the Ouya</li>
  155. <li>From the main menu select&nbsp;install zip &gt; choose zip from /storage/usbdisk</li>
  156. <li>Arrow down and select RC-OUYA-1.2.1427-r1_ota.zip &gt; Press Enter</li>
  157. <li>Select Yes to confirm the install</li>
  158. <li>From the main menu select mounts and storage &gt; mount /system</li>
  159. <li>While at the mounts and storage menu, make sure /data is mounted, the menu should say unmount /data. If it does not, mount it as well</li>
  160. <li>Back on the PC Press Enter to continue with rooting the Ouya and fixing the Discover store</li>
  161. <li>Copy each of the adb shell commands one at a time into the command prompt to gain root access</li>
  162. <li>Once the process completes the Ouya will reboot</li>
  163. </ol>
  164. <h2>Completing Root Access</h2>
  165. <ol>
  166. <li>Once the Ouya boots, navigate to Make &gt; Software</li>
  167. <li><label for="cb_li_605884_11">Launch Superuser &gt; Select Install</label></li>
  168. <li>S<label for="cb_li_307470_12">elect Remember choice forever &gt; Allow</label></li>
  169. <li><label for="cb_li_503050_13">Click OK</label></li>
  170. <li><label for="cb_li_312900_14">Exit Superuser and navigate back to Make &gt; Software</label></li>
  171. <li>Launch Xposed Installer</li>
  172. <li>Select Framework &gt; Check Don&#39;t show this again and Click OK to the popup &gt; Click Install/Update &gt; Click OK to reboot</li>
  173. <li>After rebooting Discover Store games that used the Ouya purchase API will be unlocked</li>
  174. </ol>
  175. <h2>Setting Up Google Play</h2>
  176. <ol>
  177. <li>Navigate to Make &gt; Software</li>
  178. <li>Launch Mod Collection for Ouya</li>
  179. <li>Arrow down to Install Play Store</li>
  180. <li>Wait for the installation to complete</li>
  181. <li>Back out to Make &gt; Software and select Quick Boot</li>
  182. <li>Select Reboot to complete the Google Play install</li>
  183. <li>Once the Ouya is back up go to Make &gt; Software &gt; Google Play</li>
  184. <li>Go through authenticated with Google and the Play Store will load (The Play Store is pretty unstable, but it does allow apps to be installed pretty simply when it plays nice)</li>
  185. </ol>
  186. <h2>Cleaning Up</h2>
  187. <ol>
  188. <li>After successfully flashing the image to your Ouya, do the following</li>
  189. <li>Right click Start &gt; Command Prompt (Admin)</li>
  190. <li>Paste the following commands to re-enable driving signing checks
  191. <div class="codeBlock">bcdedit -set loadoptions ENABLE_INTEGRITY_CHECKS<br />
  192. bcdedit -set TESTSIGNING OFF<br />
  193. shutdown /r</div>
  194. </li>
  195. <li>Your PC will reboot</li>
  196. </ol>
  197. <p>Special thanks to <a href="https://www.s-config.com/cyanogen-mod-and-the-ouya/" target="_blank">https://www.s-config.com/cyanogen-mod-and-the-ouya/</a> and&nbsp;Christian Weiske&nbsp;<a href="https://ouya.cweiske.de" target="_blank">https://ouya.cweiske.de</a> for helping to keep the Ouya alive</p>
  198. </div>
  199. </div>
  200. </body>
  201. </html>