├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── VERSION ├── imgs └── yi-hack-v4-header.png ├── scripts ├── cleanup.sh ├── common.sh ├── compile.sh ├── init_sysroot.all.sh ├── init_sysroot.sh ├── pack_fw.all.sh └── pack_fw.sh ├── src ├── .gitignore ├── busybox │ ├── .config │ ├── compile.busybox │ ├── init.busybox │ └── install.busybox ├── dropbear │ ├── compile.dropbear │ ├── init.dropbear │ ├── install.dropbear │ └── localoptions.h ├── ftpd │ ├── compile.ftpd │ ├── init.ftpd │ └── install.ftpd ├── ipc_cmd │ ├── .gitignore │ ├── compile.ipc_cmd │ ├── init.ipc_cmd │ ├── install.ipc_cmd │ └── ipc_cmd │ │ ├── Makefile │ │ ├── ipc_cmd │ │ ├── ipc_cmd.c │ │ ├── ipc_cmd.h │ │ └── ipc_cmd.o ├── libfuse │ ├── Hi3518eV200.conf │ ├── compile.libfuse │ ├── init.libfuse │ └── install.libfuse ├── mosquitto │ ├── compile.mosquitto │ ├── init.mosquitto │ └── install.mosquitto ├── mqtt │ ├── compile.mqtt │ ├── init.mqtt │ └── install.mqtt ├── proccgi │ ├── compile.proccgi │ ├── config.mak │ ├── init.proccgi │ ├── install.proccgi │ └── proccgi │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── config.mak │ │ └── src │ │ └── proccgi.c ├── proxychains-ng │ ├── compile.proxychains-ng │ ├── config.mak │ ├── init.proxychains-ng │ ├── install.proxychains-ng │ └── proxychains.conf ├── static │ ├── compile.static │ ├── init.static │ ├── install.static │ └── static │ │ ├── home │ │ ├── app │ │ │ ├── main.bmp │ │ │ └── sub.bmp │ │ └── yi-hack-v4 │ │ │ ├── etc │ │ │ ├── camera.conf │ │ │ ├── crontabs │ │ │ │ └── root │ │ │ └── system.conf │ │ │ └── script │ │ │ ├── check_update.sh │ │ │ ├── cloudAPI │ │ │ ├── default.script │ │ │ ├── system.sh │ │ │ ├── system_init.sh │ │ │ └── wifidhcp.sh │ │ └── rootfs │ │ └── etc │ │ ├── hostname │ │ ├── init.d │ │ ├── S01udev │ │ └── S20yi-hack-v4 │ │ ├── passwd │ │ └── profile ├── uClibc++ │ ├── .config │ ├── compile.uClibc++ │ ├── init.uClibc++ │ └── install.uClibc++ ├── uClibc │ ├── .config │ ├── compile.uClibc │ ├── gen_wctype.patch │ ├── init.uClibc │ └── install.uClibc └── www │ ├── .gitignore │ ├── compile.www │ ├── httpd │ ├── cgi-bin │ │ ├── camera_settings.sh │ │ ├── get_configs.sh │ │ ├── hostname.js │ │ ├── preset.sh │ │ ├── ptz.sh │ │ ├── reboot.sh │ │ ├── rtsp_backend.sh │ │ ├── set_configs.sh │ │ ├── status.json │ │ ├── update_backend.sh │ │ └── upload.sh │ ├── htdocs │ │ ├── css │ │ │ ├── all.css │ │ │ ├── custom.css │ │ │ ├── normalize.css │ │ │ └── skeleton.css │ │ ├── images │ │ │ ├── arrow-down-bold-box-outline.png │ │ │ ├── arrow-left-bold-box-outline.png │ │ │ ├── arrow-right-bold-box-outline.png │ │ │ ├── arrow-up-bold-box-outline.png │ │ │ ├── favicon.png │ │ │ ├── icon-hd.png │ │ │ ├── icon.png │ │ │ ├── logo.png │ │ │ ├── touch-icon-ipad-pro.png │ │ │ ├── touch-icon-ipad-retina.png │ │ │ ├── touch-icon-ipad.png │ │ │ ├── touch-icon-iphone-6-plus.png │ │ │ ├── touch-icon-iphone-retina.png │ │ │ └── touch-icon-iphone.png │ │ ├── index.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── jquery-3.3.1.min.js │ │ │ ├── modules │ │ │ │ ├── camera_settings.js │ │ │ │ ├── configurations.js │ │ │ │ ├── global.js │ │ │ │ ├── mqtt.js │ │ │ │ ├── ptz.js │ │ │ │ ├── reboot.js │ │ │ │ ├── rtsp.js │ │ │ │ ├── status.js │ │ │ │ └── update.js │ │ │ └── utils.js │ │ └── pages │ │ │ ├── about.html │ │ │ ├── camera_settings.html │ │ │ ├── configurations.html │ │ │ ├── mqtt.html │ │ │ ├── ptz.html │ │ │ ├── reboot.html │ │ │ ├── rtsp.html │ │ │ ├── status.html │ │ │ └── update.html │ └── tools │ │ └── remcomm.awk │ ├── init.www │ └── install.www ├── stock_firmware ├── README.md └── common │ └── README.md └── sysroot └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.2.1 2 | -------------------------------------------------------------------------------- /imgs/yi-hack-v4-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/imgs/yi-hack-v4-header.png -------------------------------------------------------------------------------- /scripts/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/scripts/cleanup.sh -------------------------------------------------------------------------------- /scripts/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/scripts/common.sh -------------------------------------------------------------------------------- /scripts/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/scripts/compile.sh -------------------------------------------------------------------------------- /scripts/init_sysroot.all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/scripts/init_sysroot.all.sh -------------------------------------------------------------------------------- /scripts/init_sysroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/scripts/init_sysroot.sh -------------------------------------------------------------------------------- /scripts/pack_fw.all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/scripts/pack_fw.all.sh -------------------------------------------------------------------------------- /scripts/pack_fw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/scripts/pack_fw.sh -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/busybox/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/busybox/.config -------------------------------------------------------------------------------- /src/busybox/compile.busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/busybox/compile.busybox -------------------------------------------------------------------------------- /src/busybox/init.busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/busybox/init.busybox -------------------------------------------------------------------------------- /src/busybox/install.busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/busybox/install.busybox -------------------------------------------------------------------------------- /src/dropbear/compile.dropbear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/dropbear/compile.dropbear -------------------------------------------------------------------------------- /src/dropbear/init.dropbear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/dropbear/init.dropbear -------------------------------------------------------------------------------- /src/dropbear/install.dropbear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/dropbear/install.dropbear -------------------------------------------------------------------------------- /src/dropbear/localoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/dropbear/localoptions.h -------------------------------------------------------------------------------- /src/ftpd/compile.ftpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/ftpd/compile.ftpd -------------------------------------------------------------------------------- /src/ftpd/init.ftpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/ftpd/init.ftpd -------------------------------------------------------------------------------- /src/ftpd/install.ftpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/ftpd/install.ftpd -------------------------------------------------------------------------------- /src/ipc_cmd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/ipc_cmd/.gitignore -------------------------------------------------------------------------------- /src/ipc_cmd/compile.ipc_cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/ipc_cmd/compile.ipc_cmd -------------------------------------------------------------------------------- /src/ipc_cmd/init.ipc_cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/ipc_cmd/init.ipc_cmd -------------------------------------------------------------------------------- /src/ipc_cmd/install.ipc_cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/ipc_cmd/install.ipc_cmd -------------------------------------------------------------------------------- /src/ipc_cmd/ipc_cmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/ipc_cmd/ipc_cmd/Makefile -------------------------------------------------------------------------------- /src/ipc_cmd/ipc_cmd/ipc_cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/ipc_cmd/ipc_cmd/ipc_cmd -------------------------------------------------------------------------------- /src/ipc_cmd/ipc_cmd/ipc_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/ipc_cmd/ipc_cmd/ipc_cmd.c -------------------------------------------------------------------------------- /src/ipc_cmd/ipc_cmd/ipc_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/ipc_cmd/ipc_cmd/ipc_cmd.h -------------------------------------------------------------------------------- /src/ipc_cmd/ipc_cmd/ipc_cmd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/ipc_cmd/ipc_cmd/ipc_cmd.o -------------------------------------------------------------------------------- /src/libfuse/Hi3518eV200.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/libfuse/Hi3518eV200.conf -------------------------------------------------------------------------------- /src/libfuse/compile.libfuse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/libfuse/compile.libfuse -------------------------------------------------------------------------------- /src/libfuse/init.libfuse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/libfuse/init.libfuse -------------------------------------------------------------------------------- /src/libfuse/install.libfuse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/libfuse/install.libfuse -------------------------------------------------------------------------------- /src/mosquitto/compile.mosquitto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/mosquitto/compile.mosquitto -------------------------------------------------------------------------------- /src/mosquitto/init.mosquitto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/mosquitto/init.mosquitto -------------------------------------------------------------------------------- /src/mosquitto/install.mosquitto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/mosquitto/install.mosquitto -------------------------------------------------------------------------------- /src/mqtt/compile.mqtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/mqtt/compile.mqtt -------------------------------------------------------------------------------- /src/mqtt/init.mqtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/mqtt/init.mqtt -------------------------------------------------------------------------------- /src/mqtt/install.mqtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/mqtt/install.mqtt -------------------------------------------------------------------------------- /src/proccgi/compile.proccgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/proccgi/compile.proccgi -------------------------------------------------------------------------------- /src/proccgi/config.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/proccgi/config.mak -------------------------------------------------------------------------------- /src/proccgi/init.proccgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/proccgi/init.proccgi -------------------------------------------------------------------------------- /src/proccgi/install.proccgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/proccgi/install.proccgi -------------------------------------------------------------------------------- /src/proccgi/proccgi/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /src/proccgi/proccgi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/proccgi/proccgi/Makefile -------------------------------------------------------------------------------- /src/proccgi/proccgi/config.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/proccgi/proccgi/config.mak -------------------------------------------------------------------------------- /src/proccgi/proccgi/src/proccgi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/proccgi/proccgi/src/proccgi.c -------------------------------------------------------------------------------- /src/proxychains-ng/compile.proxychains-ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/proxychains-ng/compile.proxychains-ng -------------------------------------------------------------------------------- /src/proxychains-ng/config.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/proxychains-ng/config.mak -------------------------------------------------------------------------------- /src/proxychains-ng/init.proxychains-ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/proxychains-ng/init.proxychains-ng -------------------------------------------------------------------------------- /src/proxychains-ng/install.proxychains-ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/proxychains-ng/install.proxychains-ng -------------------------------------------------------------------------------- /src/proxychains-ng/proxychains.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/proxychains-ng/proxychains.conf -------------------------------------------------------------------------------- /src/static/compile.static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/static/compile.static -------------------------------------------------------------------------------- /src/static/init.static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/static/init.static -------------------------------------------------------------------------------- /src/static/install.static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/static/install.static -------------------------------------------------------------------------------- /src/static/static/home/app/main.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/static/static/home/app/main.bmp -------------------------------------------------------------------------------- /src/static/static/home/app/sub.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/static/static/home/app/sub.bmp -------------------------------------------------------------------------------- /src/static/static/home/yi-hack-v4/etc/camera.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/static/static/home/yi-hack-v4/etc/camera.conf -------------------------------------------------------------------------------- /src/static/static/home/yi-hack-v4/etc/crontabs/root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/static/static/home/yi-hack-v4/etc/crontabs/root -------------------------------------------------------------------------------- /src/static/static/home/yi-hack-v4/etc/system.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/static/static/home/yi-hack-v4/etc/system.conf -------------------------------------------------------------------------------- /src/static/static/home/yi-hack-v4/script/check_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/static/static/home/yi-hack-v4/script/check_update.sh -------------------------------------------------------------------------------- /src/static/static/home/yi-hack-v4/script/cloudAPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/static/static/home/yi-hack-v4/script/cloudAPI -------------------------------------------------------------------------------- /src/static/static/home/yi-hack-v4/script/default.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/static/static/home/yi-hack-v4/script/default.script -------------------------------------------------------------------------------- /src/static/static/home/yi-hack-v4/script/system.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/static/static/home/yi-hack-v4/script/system.sh -------------------------------------------------------------------------------- /src/static/static/home/yi-hack-v4/script/system_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/static/static/home/yi-hack-v4/script/system_init.sh -------------------------------------------------------------------------------- /src/static/static/home/yi-hack-v4/script/wifidhcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/static/static/home/yi-hack-v4/script/wifidhcp.sh -------------------------------------------------------------------------------- /src/static/static/rootfs/etc/hostname: -------------------------------------------------------------------------------- 1 | yi-hack-v4 2 | -------------------------------------------------------------------------------- /src/static/static/rootfs/etc/init.d/S01udev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/static/static/rootfs/etc/init.d/S01udev -------------------------------------------------------------------------------- /src/static/static/rootfs/etc/init.d/S20yi-hack-v4: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /home/yi-hack-v4/script/system.sh 4 | 5 | -------------------------------------------------------------------------------- /src/static/static/rootfs/etc/passwd: -------------------------------------------------------------------------------- 1 | root:$1$$qRPK7m23GJusamGpoGLby/:0:0::/home/yi-hack-v4/:/bin/sh 2 | -------------------------------------------------------------------------------- /src/static/static/rootfs/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/static/static/rootfs/etc/profile -------------------------------------------------------------------------------- /src/uClibc++/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/uClibc++/.config -------------------------------------------------------------------------------- /src/uClibc++/compile.uClibc++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/uClibc++/compile.uClibc++ -------------------------------------------------------------------------------- /src/uClibc++/init.uClibc++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/uClibc++/init.uClibc++ -------------------------------------------------------------------------------- /src/uClibc++/install.uClibc++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/uClibc++/install.uClibc++ -------------------------------------------------------------------------------- /src/uClibc/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/uClibc/.config -------------------------------------------------------------------------------- /src/uClibc/compile.uClibc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/uClibc/compile.uClibc -------------------------------------------------------------------------------- /src/uClibc/gen_wctype.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/uClibc/gen_wctype.patch -------------------------------------------------------------------------------- /src/uClibc/init.uClibc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/uClibc/init.uClibc -------------------------------------------------------------------------------- /src/uClibc/install.uClibc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/uClibc/install.uClibc -------------------------------------------------------------------------------- /src/www/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/.gitignore -------------------------------------------------------------------------------- /src/www/compile.www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/compile.www -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/camera_settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/cgi-bin/camera_settings.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/get_configs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/cgi-bin/get_configs.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/hostname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/cgi-bin/hostname.js -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/preset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/cgi-bin/preset.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/ptz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/cgi-bin/ptz.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/reboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/cgi-bin/reboot.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/rtsp_backend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/cgi-bin/rtsp_backend.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/set_configs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/cgi-bin/set_configs.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/cgi-bin/status.json -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/update_backend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/cgi-bin/update_backend.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/cgi-bin/upload.sh -------------------------------------------------------------------------------- /src/www/httpd/htdocs/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/css/all.css -------------------------------------------------------------------------------- /src/www/httpd/htdocs/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/css/custom.css -------------------------------------------------------------------------------- /src/www/httpd/htdocs/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/css/normalize.css -------------------------------------------------------------------------------- /src/www/httpd/htdocs/css/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/css/skeleton.css -------------------------------------------------------------------------------- /src/www/httpd/htdocs/images/arrow-down-bold-box-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/images/arrow-down-bold-box-outline.png -------------------------------------------------------------------------------- /src/www/httpd/htdocs/images/arrow-left-bold-box-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/images/arrow-left-bold-box-outline.png -------------------------------------------------------------------------------- /src/www/httpd/htdocs/images/arrow-right-bold-box-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/images/arrow-right-bold-box-outline.png -------------------------------------------------------------------------------- /src/www/httpd/htdocs/images/arrow-up-bold-box-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/images/arrow-up-bold-box-outline.png -------------------------------------------------------------------------------- /src/www/httpd/htdocs/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/images/favicon.png -------------------------------------------------------------------------------- /src/www/httpd/htdocs/images/icon-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/images/icon-hd.png -------------------------------------------------------------------------------- /src/www/httpd/htdocs/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/images/icon.png -------------------------------------------------------------------------------- /src/www/httpd/htdocs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/images/logo.png -------------------------------------------------------------------------------- /src/www/httpd/htdocs/images/touch-icon-ipad-pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/images/touch-icon-ipad-pro.png -------------------------------------------------------------------------------- /src/www/httpd/htdocs/images/touch-icon-ipad-retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/images/touch-icon-ipad-retina.png -------------------------------------------------------------------------------- /src/www/httpd/htdocs/images/touch-icon-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/images/touch-icon-ipad.png -------------------------------------------------------------------------------- /src/www/httpd/htdocs/images/touch-icon-iphone-6-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/images/touch-icon-iphone-6-plus.png -------------------------------------------------------------------------------- /src/www/httpd/htdocs/images/touch-icon-iphone-retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/images/touch-icon-iphone-retina.png -------------------------------------------------------------------------------- /src/www/httpd/htdocs/images/touch-icon-iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/images/touch-icon-iphone.png -------------------------------------------------------------------------------- /src/www/httpd/htdocs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/index.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/js/app.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/camera_settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/js/modules/camera_settings.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/configurations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/js/modules/configurations.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/js/modules/global.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/mqtt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/js/modules/mqtt.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/ptz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/js/modules/ptz.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/reboot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/js/modules/reboot.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/rtsp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/js/modules/rtsp.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/js/modules/status.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/js/modules/update.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/js/utils.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/pages/about.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/camera_settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/pages/camera_settings.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/configurations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/pages/configurations.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/mqtt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/pages/mqtt.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/ptz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/pages/ptz.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/reboot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/pages/reboot.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/rtsp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/pages/rtsp.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/pages/status.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/htdocs/pages/update.html -------------------------------------------------------------------------------- /src/www/httpd/tools/remcomm.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/httpd/tools/remcomm.awk -------------------------------------------------------------------------------- /src/www/init.www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/init.www -------------------------------------------------------------------------------- /src/www/install.www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/src/www/install.www -------------------------------------------------------------------------------- /stock_firmware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/stock_firmware/README.md -------------------------------------------------------------------------------- /stock_firmware/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keroi/yi-hack-v4/HEAD/stock_firmware/common/README.md -------------------------------------------------------------------------------- /sysroot/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------