12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <!DOCTYPE html>
- <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">
- <meta charset="UTF-8">
- <meta name="keywords" content="Amlogic,S905x,S905w,S912,OpenWRT,Router,Single Board Computer,SBC,Raspberry Pi Alternative,GitHub,How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Install OpenWRT on Amlogic Android TV Box S912 S922 S905x S905x2 S905x3">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="revised" content="03/20/2022 12:43:26 PM" />
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></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 <a href="https://amzn.to/36CpShC" target="_blank">https://amzn.to/36CpShC</a> | <a href="https://amzn.to/3CXJngt" target="_blank">https://amzn.to/3CXJngt</a> | <a href="https://amzn.to/3JqyxSP" target="_blank">https://amzn.to/3JqyxSP</a></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's subnet:
- <div class="codeBlock">uci set network.lan.ipaddr='192.168.0.251'<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 > Click the Login button</li>
- <li>Select System > 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 & 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>
-
|