├── .gitignore ├── README.md ├── docs ├── about.md ├── css │ └── extra.css ├── diy │ ├── index.md │ ├── serial.md │ ├── src │ │ ├── find-serial-port.png │ │ ├── firewall.png │ │ ├── gl.inet_10.jpg │ │ ├── mechanical.png │ │ ├── menuconfig.png │ │ ├── opencase1.jpg │ │ ├── opencase2.jpg │ │ ├── pcb.jpg │ │ ├── putty.png │ │ ├── putty1.png │ │ ├── qrcode.png │ │ ├── serial.jpg │ │ ├── tftpd-install.png │ │ ├── tftpd-status.png │ │ ├── uboot_failsafe.png │ │ └── uboot_flashing.png │ └── uboot.md ├── domino │ ├── common │ │ ├── weaved.html │ │ └── weaved.md │ ├── hardware │ │ ├── core.html │ │ ├── core.md │ │ ├── index.html │ │ ├── index.md │ │ ├── pi.html │ │ ├── qi.html │ │ └── src │ │ │ ├── Domino-Core-Pinout.pdf │ │ │ ├── Domino-Pi-Pinout.pdf │ │ │ ├── Domino-Qi-Mini-Pinout.pdf │ │ │ ├── ams1117.jpg │ │ │ ├── core-di.jpg │ │ │ ├── core_pinout.jpg │ │ │ └── di.png │ ├── index.md │ ├── pi │ │ ├── audio.md │ │ ├── compile.html │ │ ├── compile.md │ │ ├── dual_eth.md │ │ ├── flashing.html │ │ ├── flashing.md │ │ ├── i2s.html │ │ ├── i2s.md │ │ ├── index.html │ │ ├── index.md │ │ ├── led.md │ │ ├── pi.md │ │ ├── serial.html │ │ ├── serial.md │ │ ├── single_eth.md │ │ ├── single_usb.md │ │ ├── spi.html │ │ ├── spi.md │ │ ├── spi_jtag.md │ │ ├── src │ │ │ ├── Domino-Dual-Ethernet-Pinout.pdf │ │ │ ├── Domino-I2S-Pinout.pdf │ │ │ ├── Domino-LED-Pinout.pdf │ │ │ ├── Domino-Pi-Pinout.pdf │ │ │ ├── Domino-Single-Ethernet-Pinout.pdf │ │ │ ├── adapter.jpg │ │ │ ├── assembly.jpg │ │ │ ├── assembly1.jpg │ │ │ ├── bonjour.jpg │ │ │ ├── driver.jpg │ │ │ ├── dual_eth1.jpg │ │ │ ├── dual_eth2.jpg │ │ │ ├── dual_eth3.jpg │ │ │ ├── dual_eth_pinout.jpg │ │ │ ├── editor.jpg │ │ │ ├── environments.jpg │ │ │ ├── first_time.jpg │ │ │ ├── first_time_reboot.jpg │ │ │ ├── flash-mount.jpg │ │ │ ├── flash-mount1.jpg │ │ │ ├── homepage.jpg │ │ │ ├── i2s-assembly.jpg │ │ │ ├── i2s1.jpg │ │ │ ├── i2s2.jpg │ │ │ ├── i2s3.jpg │ │ │ ├── i2s_pinout.jpg │ │ │ ├── led.jpg │ │ │ ├── led1.jpg │ │ │ ├── led2.jpg │ │ │ ├── led_pinout.jpg │ │ │ ├── login.jpg │ │ │ ├── luci.jpg │ │ │ ├── menuconfig-domino.png │ │ │ ├── menuconfig.png │ │ │ ├── mpg123.jpg │ │ │ ├── network.jpg │ │ │ ├── packages.png │ │ │ ├── pi-back.jpg │ │ │ ├── pi-connection.jpg │ │ │ ├── pi-headers.jpg │ │ │ ├── pi-headers1.jpg │ │ │ ├── pi-led-button.jpg │ │ │ ├── pi-powerup.jpg │ │ │ ├── pi.png │ │ │ ├── pi_pinout.jpg │ │ │ ├── putty.jpg │ │ │ ├── putty1.jpg │ │ │ ├── putty2.jpg │ │ │ ├── realterm.jpg │ │ │ ├── realterm1.jpg │ │ │ ├── rootfiles.png │ │ │ ├── serial-connection.jpg │ │ │ ├── single_eth1.jpg │ │ │ ├── single_eth2.jpg │ │ │ ├── single_eth3.jpg │ │ │ ├── single_eth_pinout.jpg │ │ │ ├── single_usb1.jpg │ │ │ ├── single_usb2.jpg │ │ │ ├── single_usb3.jpg │ │ │ ├── spi-jtag.jpg │ │ │ ├── spi_jtag1.jpg │ │ │ ├── spi_jtag2.jpg │ │ │ ├── system.jpg │ │ │ ├── uboot.jpg │ │ │ ├── uboot_console.jpg │ │ │ ├── upgrade.jpg │ │ │ ├── usb-disk.jpg │ │ │ ├── usb_combo1.jpg │ │ │ ├── usb_combo2.jpg │ │ │ ├── usb_combo3.jpg │ │ │ └── usb_combo4.jpg │ │ ├── usb_combo.md │ │ ├── using.html │ │ └── using.md │ ├── qi │ │ ├── arduino-yun.html │ │ ├── arduino-yun.md │ │ ├── base.md │ │ ├── index.html │ │ ├── index.md │ │ ├── mini.md │ │ ├── nodejs.html │ │ ├── nodejs.md │ │ ├── serial.html │ │ ├── serial.md │ │ └── src │ │ │ ├── Domino-Qi-Mini-Pinout.pdf │ │ │ ├── Domino-Qi-Pinout.pdf │ │ │ ├── arduino-ide.jpg │ │ │ ├── bonjour.jpg │ │ │ ├── crc.jpg │ │ │ ├── editing.jpg │ │ │ ├── editor.jpg │ │ │ ├── firsttime.jpg │ │ │ ├── homepage.jpg │ │ │ ├── lininoio-stop.png │ │ │ ├── lininoio-stop1.png │ │ │ ├── luci.jpg │ │ │ ├── luci1.jpg │ │ │ ├── mcuio.png │ │ │ ├── network.jpg │ │ │ ├── qi-assembly.jpg │ │ │ ├── qi-connection.jpg │ │ │ ├── qi-device.jpg │ │ │ ├── qi-disassembly.jpg │ │ │ ├── qi_base1.jpg │ │ │ ├── qi_base2.jpg │ │ │ ├── qi_base3.jpg │ │ │ ├── qi_mini1.jpg │ │ │ ├── qi_mini2.jpg │ │ │ ├── qi_mini3.jpg │ │ │ ├── qi_mini_back.jpg │ │ │ ├── qi_mini_pinout.jpg │ │ │ ├── qi_mini_top.jpg │ │ │ ├── qi_pinout.jpg │ │ │ ├── saveenv.jpg │ │ │ ├── system.jpg │ │ │ ├── uboot.png │ │ │ └── usb-disk.jpg │ └── src │ │ ├── core.png │ │ ├── core_pinout.jpg │ │ ├── domino-pi.png │ │ ├── domino-qi.png │ │ ├── logo-doc.png │ │ └── tree.jpg ├── favicon.png ├── index.md ├── mini │ ├── 3g4g.md │ ├── ar150rtc.md │ ├── ar300m.md │ ├── firmware.md │ ├── index.md │ ├── internet.md │ ├── lan.md │ ├── mifi.md │ ├── repeater.md │ ├── repeater_manager.md │ ├── src │ │ ├── 3g_1.png │ │ ├── 3g_2.png │ │ ├── ar150-rtc1.jpg │ │ ├── ar150-rtc2.jpg │ │ ├── ar150-rtc3.jpg │ │ ├── ar300m-performance.jpg │ │ ├── ar300m.jpg │ │ ├── button_leds.jpg │ │ ├── buttons.png │ │ ├── connect_to_router.jpg │ │ ├── connections.jpg │ │ ├── connections.png │ │ ├── connections1.jpg │ │ ├── connections3.png │ │ ├── connections4.png │ │ ├── dhcp.jpg │ │ ├── dhcp1.png │ │ ├── dns.jpg │ │ ├── dns_rebind.jpg │ │ ├── enable_5g.jpg │ │ ├── firmware.jpg │ │ ├── firmware1.jpg │ │ ├── firmware2.jpg │ │ ├── firmware3.jpg │ │ ├── firmware4.jpg │ │ ├── firmware5.jpg │ │ ├── internet_status.jpg │ │ ├── internet_status1.jpg │ │ ├── lan_ip.jpg │ │ ├── leds.png │ │ ├── macclone.jpg │ │ ├── main_ui.jpg │ │ ├── meunconfig-ar300m-nand.jpg │ │ ├── meunconfig-ar300m.jpg │ │ ├── mifi_connection.jpg │ │ ├── mifi_connection_status.jpg │ │ ├── mifi_pcb.jpg │ │ ├── mifi_start.jpg │ │ ├── password.jpg │ │ ├── pppoe.png │ │ ├── putty_ssh.png │ │ ├── putty_ssh1.png │ │ ├── putty_ssh2.png │ │ ├── region.jpg │ │ ├── relayd.pdf │ │ ├── repeater-bridge.jpg │ │ ├── repeater.jpg │ │ ├── repeater_connected.jpg │ │ ├── repeater_manager.png │ │ ├── static.png │ │ ├── tethering.png │ │ ├── tethering1.jpg │ │ ├── uboot-ar300m.png │ │ ├── upgrade.jpg │ │ ├── verizon_apn.jpg │ │ ├── wan_status.jpg │ │ ├── wds.png │ │ ├── wds1.png │ │ ├── welcome.jpg │ │ ├── wifi_advanced.png │ │ ├── wifi_advanced1.png │ │ ├── wifi_leds.png │ │ ├── wifi_multi_ssid.jpg │ │ ├── wifi_multi_ssid1.jpg │ │ ├── wifi_onoff.png │ │ ├── wifi_setting.jpg │ │ ├── wifi_status.jpg │ │ ├── wisp.png │ │ └── wisp1.png │ └── wifi.md ├── navigation.md ├── openwrt │ ├── images │ │ ├── 1522164376006.jpg │ │ ├── 1522164842915.png │ │ ├── 1522205896331.png │ │ ├── 1522222018396.png │ │ ├── 1522224457420.png │ │ ├── 1522224501240.png │ │ ├── 1522238777867.png │ │ ├── 1522905053283.png │ │ ├── 1522915231698.png │ │ ├── 1522915321961.png │ │ ├── 1522915409158.png │ │ ├── 1522915513718.png │ │ ├── 1522915626797.png │ │ ├── 1522915767708.png │ │ ├── 1522915897942.png │ │ ├── 1522916277644.png │ │ ├── 1522916496892.png │ │ ├── 1523029479389.png │ │ ├── 1523031035400.png │ │ ├── 1523031072950.png │ │ ├── 1523031103769.png │ │ ├── Advance-Root-Login.png │ │ ├── PuTTY Install-1.png │ │ ├── PuTTY-Install-2.png │ │ ├── PuTTY-Install-3.png │ │ ├── PuTTY-Install-4.png │ │ ├── Removed-Host-keygen.png │ │ ├── SS1.png │ │ ├── SSH-Login.png │ │ ├── SSH-in-1.png │ │ ├── SSH-in-2.png │ │ ├── SSH-in-root.png │ │ ├── Setup-PuTTY-1.png │ │ ├── Setup-PuTTY-2.png │ │ ├── Setup-PuTTY-3.png │ │ ├── Start SS Server.png │ │ ├── Ubuntu sshin router-3.png │ │ ├── Ubuntu-Login.png │ │ ├── Ubuntu-sshin-router-1.png │ │ ├── Ubuntu-sshin-router-2.png │ │ ├── VI-ss-verver.png │ │ ├── remove-ssh-keygen.png │ │ ├── ss-server config-2.png │ │ ├── ss-server-config.png │ │ └── ssh-wq.png │ ├── index.md │ ├── openvpn.md │ ├── shadowsocks.md │ ├── src │ │ ├── astrill_openvpn1.jpg │ │ ├── astrill_openvpn2.jpg │ │ ├── cups1.jpg │ │ ├── cups2.jpg │ │ ├── expressvpn.jpg │ │ ├── hidemyass.jpg │ │ ├── l2tp │ │ │ ├── l2tp_0.jpg │ │ │ ├── l2tp_1.jpg │ │ │ ├── l2tp_2.jpg │ │ │ └── l2tp_3.jpg │ │ ├── openvpn │ │ │ ├── 1.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12.jpg │ │ │ ├── 13.jpg │ │ │ ├── 14.jpg │ │ │ ├── 15.jpg │ │ │ ├── 16.jpg │ │ │ ├── 17.jpg │ │ │ ├── 18.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── AirVPN1.png │ │ │ ├── AirVPN2.png │ │ │ ├── AirVPN3.png │ │ │ ├── Astrill1.png │ │ │ ├── Astrill2.png │ │ │ ├── Astrill3.png │ │ │ ├── Astrill4.png │ │ │ ├── CactusVPN1.jpg │ │ │ ├── ExpressVPN1.jpg │ │ │ ├── ExpressVPN2.png │ │ │ ├── ExpressVPN3.png │ │ │ ├── KeepSolid1.png │ │ │ ├── KeepSolid2.png │ │ │ ├── KeepSolid3.png │ │ │ ├── ProXPN1.jpg │ │ │ ├── ProXPN2.jpg │ │ │ ├── ProXPN3.jpg │ │ │ ├── SaferVPN1.jpg │ │ │ ├── StrongVPN1.png │ │ │ ├── StrongVPN2.png │ │ │ ├── StrongVPN3.png │ │ │ ├── StrongVPN4.png │ │ │ ├── StrongVPN5.png │ │ │ ├── TCPVPN1.jpg │ │ │ ├── TCPVPN2.jpg │ │ │ ├── TCPVPN3.jpg │ │ │ ├── VPNAC1.jpg │ │ │ ├── VPNBook1.jpg │ │ │ ├── VPNGate1.jpg │ │ │ ├── VPNGate2.jpg │ │ │ ├── finchvpn1.jpg │ │ │ ├── finchvpn2.jpg │ │ │ ├── finchvpn3.jpg │ │ │ ├── finchvpn4.jpg │ │ │ ├── finchvpn5.jpg │ │ │ └── openvpn_led.jpg │ │ ├── openvpn_finch1.jpg │ │ ├── openvpn_finch2.jpg │ │ ├── openvpn_finch3.jpg │ │ ├── openvpn_finch4.jpg │ │ ├── proxpn.png │ │ ├── strongvpn.jpg │ │ ├── tor │ │ │ ├── 3g.jpg │ │ │ ├── button_leds.jpg │ │ │ ├── first_time.jpg │ │ │ ├── homepage.jpg │ │ │ ├── login.jpg │ │ │ ├── luci.jpg │ │ │ ├── network.jpg │ │ │ ├── repeater.jpg │ │ │ ├── system.jpg │ │ │ └── upgrade.jpg │ │ ├── torguard.jpg │ │ └── torguard1.jpg │ ├── tether.md │ └── tor.md ├── service.md ├── smartrouter │ └── images │ │ └── qrcode.png └── src │ └── services.jpg ├── gl_theme ├── 404.html ├── __init__.py ├── __init__.pyc ├── base.html ├── content.html ├── css │ ├── base.css │ ├── bootstrap-custom.min.css │ ├── font-awesome-4.5.0.css │ └── highlight.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── img │ ├── favicon.ico │ ├── grid.png │ └── logo.png ├── js │ ├── base.js │ ├── bootstrap-3.0.3.min.js │ ├── highlight.pack.js │ └── jquery-1.10.2.min.js ├── license │ └── highlight.js │ │ └── LICENSE ├── main.html ├── nav-sub.html ├── nav.html ├── search.html └── toc.html └── mkdocs.yml /.gitignore: -------------------------------------------------------------------------------- 1 | /site/ 2 | /index.php 3 | /auto.php 4 | /pull.sh 5 | /robot.txt 6 | /.htaccess 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | #GLI documentation 2 | 3 | 4 | This is the docs of all GLI products. You can view on http://www.gl-inet.com/docs/ 5 | 6 | 7 | 8 | 9 | Contents available 10 | =================== 11 | 12 | [Mini Router Quick Setup](docs/mini/index.md) 13 | 14 | [Mini Router Internet Setup](docs/mini/internet.md) 15 | 16 | [Mini Router 3G, 4G](docs/mini/3g4g.md) 17 | 18 | [Mini Router AR300M](docs/mini/ar300m.md) 19 | 20 | [Mini Router MiFi](docs/mini/mifi.md) 21 | 22 | [Mini Router LAN IP](docs/mini/lan.md) 23 | 24 | [Mini Router WiFi Settings](docs/mini/wifi.md) 25 | 26 | [Mini Router Reset WISP Repeater](docs/mini/repeater.md) 27 | 28 | [Mini Router firmware upgrade](docs/mini/firmware.md) 29 | 30 | [Using RTC on GL-AR150](docs/mini/ar150rtc.md) 31 | 32 | [Using **OpenVPN** on Mini routers](docs/openwrt/openvpn.md) 33 | 34 | [Using **Tor** on Mini routers](docs/openwrt/tor.md) 35 | 36 | [Using **EasyTether** on Mini routers](docs/openwrt/tether.md) 37 | 38 | [Working with UART & serial](docs/diy/serial.md) 39 | 40 | [Working with Uboot](docs/diy/uboot.md) 41 | 42 | [Domino Hardware and instructions](docs/domino/index.md) -------------------------------------------------------------------------------- /docs/about.md: -------------------------------------------------------------------------------- 1 | About Us 2 | ========= 3 | 4 | GL Innovations 5 | 6 | GLi has offices in Shenzhen and Hong Kong. 7 | 8 | At GLi, our vision is to make the life simpler and easier. We are the world-class smart home solution provider, offering quality products and services empowered with the state-of-the-art AI algorithms. 9 | 10 | Founded in 2014 by an international team of senior scientists and engineers, GLi starts its business on smart routers and modules – the kernel of the smart home solution. Our routers convert your local devices such as cameras, storages, 3G adaptors into personal clouds for easier sharing or remote control. Equipped with advanced AI algorithms, our routers ensure everything works with its best performance. 11 | 12 | Domino is GLi's Opensource-open hardware project. 13 | 14 | -------------------------------------------------------------------------------- /docs/css/extra.css: -------------------------------------------------------------------------------- 1 | div.col-md-9 h1:first-of-type { 2 | text-align: center; 3 | font-size: 60px; 4 | font-weight: 300; 5 | } 6 | 7 | div.col-md-9 p:first-of-type { 8 | text-align: center; 9 | } 10 | 11 | div.col-md-9 p.admonition-title:first-of-type { 12 | text-align: left; 13 | } 14 | 15 | div.col-md-9 h1:first-of-type .headerlink { 16 | display: none; 17 | } 18 | 19 | code.no-highlight { 20 | color: black; 21 | } 22 | body{ 23 | # padding-top:70px !important; 24 | } 25 | -------------------------------------------------------------------------------- /docs/diy/index.md: -------------------------------------------------------------------------------- 1 | This catalog will contain the DIY skills based on OpenWrt boards and routers. -------------------------------------------------------------------------------- /docs/diy/serial.md: -------------------------------------------------------------------------------- 1 | Connection UART serial 2 | =================== 3 | 4 | Connections 5 | ---------- 6 | 7 | Serial pins are the most used pins for DIY users. You can connect to a USB UART adapter as in the picture. 8 | 9 |  10 | 11 | Linux (ubuntu)/MAC 12 | ------------ 13 | In Linux or OSX, when you plug the USB UART adapter to your computer, the driver should already be installed. Check if you have device registered. 14 | ``` 15 | $ls /dev/ttyUSB* 16 | /dev/ttyUSB0 17 | ``` 18 | you need to have kermit to connect to serial. 19 | ``` 20 | $sudo apt-get install gkermit 21 | ``` 22 | 23 | Then you need to make the configuration file for kermit: ~/.kermrc. The content should be: 24 | ``` 25 | set line /dev/ttyUSB0 26 | set speed 115200 27 | set carrier-watch off 28 | set handshake none 29 | set flow-control none 30 | robust 31 | set file type bin 32 | set file name lit 33 | set rec pack 1000 34 | set send pack 1000 35 | set window 5 36 | ``` 37 | 38 | Now connect to the device using root: 39 | ``` 40 | $sudo kermit -c 41 | Connecting to /dev/ttyUSB0, speed 115200 42 | Escape character: Ctrl-\ (ASCII 28, FS): enabled 43 | Type the escape character followed by C to get back, 44 | or followed by ? to see other options. 45 | ---------------------------------------------------- 46 | 47 | ``` 48 | 49 | When you have finished, press `Ctrl-\` then `c` to quit kermit. 50 | 51 | Windows 52 | --------- 53 | When connecting the USB UART adapter to your computer, you may need to install drivers for them. The drivers can be download here: somewhere. 54 | 55 | Now you will be able to find the serial COM port (in this example: `COM4`) in device manger. 56 | 57 |  58 | 59 | Install a terminal software. putty is recommended. You need to set COM port `COM4`, speed `115200` and connection type `Serial`. Click "Open". 60 | 61 | 62 |  63 | 64 | You will be displayed a black window. If you turn on your device now, you will see the console output of the box. 65 | 66 | 67 |  68 | 69 | Dual Serial connection on Domino Pi 70 | ------------------------------- 71 | Domino Pi has dual serial connection, please refer to Domino Pi Serial for details. 72 | 73 | ## Discussions 74 | -------------------------------------------------------------------------------- /docs/diy/src/find-serial-port.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/find-serial-port.png -------------------------------------------------------------------------------- /docs/diy/src/firewall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/firewall.png -------------------------------------------------------------------------------- /docs/diy/src/gl.inet_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/gl.inet_10.jpg -------------------------------------------------------------------------------- /docs/diy/src/mechanical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/mechanical.png -------------------------------------------------------------------------------- /docs/diy/src/menuconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/menuconfig.png -------------------------------------------------------------------------------- /docs/diy/src/opencase1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/opencase1.jpg -------------------------------------------------------------------------------- /docs/diy/src/opencase2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/opencase2.jpg -------------------------------------------------------------------------------- /docs/diy/src/pcb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/pcb.jpg -------------------------------------------------------------------------------- /docs/diy/src/putty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/putty.png -------------------------------------------------------------------------------- /docs/diy/src/putty1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/putty1.png -------------------------------------------------------------------------------- /docs/diy/src/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/qrcode.png -------------------------------------------------------------------------------- /docs/diy/src/serial.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/serial.jpg -------------------------------------------------------------------------------- /docs/diy/src/tftpd-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/tftpd-install.png -------------------------------------------------------------------------------- /docs/diy/src/tftpd-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/tftpd-status.png -------------------------------------------------------------------------------- /docs/diy/src/uboot_failsafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/uboot_failsafe.png -------------------------------------------------------------------------------- /docs/diy/src/uboot_flashing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/uboot_flashing.png -------------------------------------------------------------------------------- /docs/domino/common/weaved.md: -------------------------------------------------------------------------------- 1 | Using Weaved Cloud 2 | 3 | #Install Weaved -------------------------------------------------------------------------------- /docs/domino/hardware/core.html: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 |
17 | 18 | 19 | 20 | 21 |Page not found
9 |