Parcourir la source

0487: Install OpenWRT on Amlogic Android TV Box S912 S922 S905x S905x2 S905x3

i12bretro il y a 3 ans
Parent
commit
afd19d69b6
1 fichiers modifiés avec 137 ajouts et 0 suppressions
  1. 137 0
      0487.html

+ 137 - 0
0487.html

@@ -0,0 +1,137 @@
+    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+    <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
+      <head>
+        <title>Install OpenWRT on Amlogic Android TV Box S912 S922 S905x S905x2 S905x3</title>
+        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+								<script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
+				        <script type="text/javascript">
+          $(function(){
+            $('textarea').each(function(i,e){
+              theTextarea = $(this);
+              theTextarea.height((theTextarea[0].scrollHeight-5) +'px');
+            });
+
+            $('li').each(function(i,e){
+              var uuid = 'li_' + Math.floor(Math.random() * Math.floor(1000000)).toString() + '_' + i.toString();
+              $(this).contents().wrap('<span id="'+ uuid +'"><label for="cb_'+ uuid +'"></label></span>');
+              $(this).prepend('<input type="checkbox" class="completeBox" id="cb_' + uuid +'" rel="'+ uuid +'" />')
+            });
+
+            $('code,div.codeBlock,textarea.codeBlock').each(function(i,e){
+              theElement = $(this);
+              var lines = theElement.html().split("\n");
+              theElement.empty();
+              for(l=0;l<lines.length;l++){
+                if($.trim(lines[l]) != '' && $.trim(lines[l]).substr(0,1) != '#' && $.trim(lines[l]).indexOf(' #') == -1 && lines[l].substr(0, 4).toUpperCase() != 'REM '){
+									                  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>');
+									                } else {
+                  theElement.append(lines[l]);
+                }
+              }
+            });
+
+            $(document).on('click','input.copy-text',function(){
+              theButton = $(this);
+														$('input.copy-text').attr('src','images/clipboard.png');
+							              $('span.copy-animation,span.copy-animation-ps').removeClass('copy-animation copy-animation-ps');
+              try {
+                if($('#'+ theButton.attr('rel')).parent('div').hasClass('PS')){
+                  $('#'+ theButton.attr('rel')).addClass('copy-animation-ps');
+								} else if($('#'+ theButton.attr('rel')).parent('div').hasClass('CMD')){
+									$('#'+ theButton.attr('rel')).addClass('copy-animation-cmd');
+                } else {
+                  $('#'+ theButton.attr('rel')).addClass('copy-animation');
+                }
+                navigator.clipboard.writeText(theButton.data('clipboard-text').replace(/<[^>]*>?/gm, ''));
+																theButton.attr('src','images/clipboard_active.png');
+								              } catch(err) {
+              }
+              return false;
+            });
+
+            $(document).on('click','input.completeBox',function(){
+              theBox = $(this);
+              $('#'+ theBox.attr('rel')).addClass('strikethrough');
+              theBox.prop('disabled',true);
+              theBox.parent('li').prevAll().each(function(i,e){
+                theLI = $(this);
+                if(theLI.find('input[type=checkbox]').not(':checked')){
+                  $('#'+ theLI.find('input[type=checkbox]').attr('rel')).addClass('strikethrough');
+                  theLI.find('input[type=checkbox]').prop('checked',true).prop('disabled',true);
+                }
+              });
+            });
+
+            if(window.self !== window.top){
+															window.parent.$('iframe.stepsFrame').height((this['scrollingElement']['scrollHeight']+20) +'px');
+							            }
+          });
+        </script>
+        <link href="css/steps.css" rel="stylesheet" type="text/css" />
+      </head>
+      <body>
+        <div id="gridContainer">
+          <div class="topMargin"></div>
+          <div id="listName" class="topMargin">
+            <h1>Install OpenWRT on Amlogic Android TV Box S912 S922 S905x S905x2 S905x3</h1>
+          </div>
+          <div></div>
+          <div id="content">
+          <h2>Things You Will Need</h2>
+
+<ul>
+	<li>    A  microSD card at least 4 GB</li>
+</ul>
+
+<h2>Download and Flash OpenWRT</h2>
+
+<ol>
+	<li>Download OpenWRT for Amlogic S9xxx <a href="https://github.com/ophub/amlogic-s9xxx-openwrt/releases" target="_blank">Download</a>
+
+	<ul>
+		<li>Download the image that corresponds to the Amlogic chip in your device</li>
+	</ul>
+	</li>
+	<li>Download Balena Etcher <a href="https://www.balena.io/etcher/" target="_blank">Download</a></li>
+	<li>Run Balena Etcher</li>
+	<li>Burn the OpenWRT image to microSD card</li>
+</ol>
+
+<h2>Configure MicroSD Card for OpenWRT</h2>
+
+<ol>
+	<li>Open the readable partition of the microSD card in Explorer</li>
+	<li>Edit uEnv.txt in a text editor</li>
+	<li>Update the FDT line to point to the correct .dtb file for your device
+	<p>FDT=/dtb/amlogic/meson-gxm-q200.dtb</p>
+	</li>
+	<li>Save the changes to uEnv.txt and close the text editor</li>
+	<li>Safely remove the microSD card</li>
+	<li>Insert microSD card to Android TV box</li>
+</ol>
+
+<h2>Booting OpenWRT</h2>
+
+<ol>
+	<li>With an unfolded paperclip, press the reset button (sometimes hidden inside the 3.5mm AV port)</li>
+	<li>While holding the reset button, plug the power adapter into the Android TV box</li>
+	<li>The box should boot into the OpenWRT Linux terminal</li>
+	<li>Wait for the text to stop scrolling and press Enter</li>
+	<li>Run the following command to set a static LAN IP address, change the IP address to something on your LAN&#39;s subnet:
+	<div class="codeBlock">uci set network.lan.ipaddr=&#39;192.168.0.251&#39;<br />
+	service network restart</div>
+	</li>
+	<li>Open a web browser and navigate to http://192.168.0.251</li>
+	<li>At the login screen, enter the username root and password password &gt; Click the Login button</li>
+	<li>Select System &gt; Administration from the menu</li>
+	<li>Under the Router Password heading, enter a new password and repeat it to confirm</li>
+	<li>Scroll to the bottom of the page and click the Save &amp; Apply button</li>
+	<li>Enjoy OpenWRT running on a cheap Amlogic TV box</li>
+</ol>
+
+<p>Source: <a href="https://github.com/ophub/amlogic-s9xxx-openwrt/" target="_blank">https://github.com/ophub/amlogic-s9xxx-openwrt/</a></p>
+          </div>
+        </div>
+      </body>
+    </html>
+