Xiaoyi
来自Jack's Lab
(版本间的差异)
(以“== Hacking == <source lang=bash> Connect the memory card to a computer via a card reader Create a directory named “test” on the sdcard root Edit file X:\test\eq...”为内容创建页面) |
(→Reference) |
||
| (未显示1个用户的7个中间版本) | |||
| 第1行: | 第1行: | ||
| + | == Hardware == | ||
| + | |||
| + | * IP Camera SoC: Hisilicon Hi3518 | ||
| + | * WiFi: Media Tek MT7601UN | ||
| + | * Flash: Spansion FL127S (128Mb SPI flash) | ||
| + | |||
| + | <br><br> | ||
| + | |||
== Hacking == | == Hacking == | ||
| − | + | 1. Connect the memory card to a computer via a card reader | |
| − | Connect the memory card to a computer via a card reader | + | |
| − | + | ||
| − | + | ||
| − | + | ||
| + | 2. Create a directory named “test” on the sdcard root | ||
| + | |||
| + | 3. Edit file X:\test\equip_test.sh with notepad or your favorite text editor. | ||
| + | |||
| + | 4. Add this content: | ||
| + | |||
| + | <source lang=bash> | ||
#!/bin/sh | #!/bin/sh | ||
# Telnet | # Telnet | ||
| 第18行: | 第29行: | ||
mv $dr/equip_test.sh $dr/equip_test.sh.moved | mv $dr/equip_test.sh $dr/equip_test.sh.moved | ||
reboot | reboot | ||
| + | </source> | ||
| − | Safetly detach sdcard, put it into your camera, it will reboot twice. | + | 5. Safetly detach sdcard, put it into your camera, it will reboot twice. |
The login details are: | The login details are: | ||
| − | User: root | + | *User: root |
| − | Password: 1234qwer | + | *Password: 1234qwer |
| − | < | + | |
| + | <br><br> | ||
| + | |||
| + | == Reference == | ||
| + | |||
| + | * http://diy.2pmc.net/solved-xiaomi-xiao-yi-ant-home-camera-can-used-china/ | ||
| + | * http://nemon.org/ipcam-ipr1631x/ | ||
| + | * https://github.com/fritz-smh/yi-hack | ||
| + | * https://github.com/4clouds/yi-stream | ||
| + | |||
| − | + | <br><br><br><br><br><br> | |
<br><br><br><br><br><br><br><br> | <br><br><br><br><br><br><br><br> | ||
<br><br><br><br><br><br><br><br> | <br><br><br><br><br><br><br><br> | ||
<br><br><br><br><br><br><br><br> | <br><br><br><br><br><br><br><br> | ||
<br><br><br><br><br><br><br><br> | <br><br><br><br><br><br><br><br> | ||
2017年1月24日 (二) 11:26的最后版本
[编辑] 1 Hardware
- IP Camera SoC: Hisilicon Hi3518
- WiFi: Media Tek MT7601UN
- Flash: Spansion FL127S (128Mb SPI flash)
[编辑] 2 Hacking
1. Connect the memory card to a computer via a card reader
2. Create a directory named “test” on the sdcard root
3. Edit file X:\test\equip_test.sh with notepad or your favorite text editor.
4. Add this content:
#!/bin/sh # Telnet if [ ! -f "/etc/init.d/S88telnet" ]; then echo "#!/bin/sh" > /etc/init.d/S88telnet echo "telnetd &" >> /etc/init.d/S88telnet chmod 755 /etc/init.d/S88telnet fi dr=`dirname $0` # fix bootcycle mv $dr/equip_test.sh $dr/equip_test.sh.moved reboot
5. Safetly detach sdcard, put it into your camera, it will reboot twice.
The login details are:
- User: root
- Password: 1234qwer
[编辑] 3 Reference
- http://diy.2pmc.net/solved-xiaomi-xiao-yi-ant-home-camera-can-used-china/
- http://nemon.org/ipcam-ipr1631x/
- https://github.com/fritz-smh/yi-hack
- https://github.com/4clouds/yi-stream