├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .gitattributes ├── .github └── workflows │ ├── build.yaml │ └── stale.yml ├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── VERSION ├── assets ├── yi-hack-allwinner-logo.png └── yi-hack-allwinner-logo.sketch ├── scripts ├── cleanup.sh ├── common.sh ├── compile.sh ├── pack_fw.all.sh └── pack_fw.sh ├── sdhack ├── b091qp │ └── Factory │ │ ├── config.sh │ │ ├── configure_wifi.cfg.ori │ │ ├── configure_wifi.sh │ │ └── factory_test.sh ├── h30ga │ └── Factory │ │ ├── config.sh │ │ ├── configure_wifi.cfg.ori │ │ ├── configure_wifi.sh │ │ └── factory_test.sh ├── h51ga │ └── Factory │ │ ├── config.sh │ │ ├── configure_wifi.cfg.ori │ │ ├── configure_wifi.sh │ │ └── factory_test.sh ├── h52ga │ └── Factory │ │ ├── config.sh │ │ ├── configure_wifi.cfg.ori │ │ ├── configure_wifi.sh │ │ └── factory_test.sh ├── h60ga │ └── Factory │ │ ├── config.sh │ │ ├── configure_wifi.cfg.ori │ │ ├── configure_wifi.sh │ │ └── factory_test.sh ├── q321br_lsx │ └── Factory │ │ ├── config.sh │ │ ├── configure_wifi.cfg.ori │ │ ├── configure_wifi.sh │ │ └── factory_test.sh ├── q705br │ └── Factory │ │ ├── config.sh │ │ ├── configure_wifi.cfg.ori │ │ ├── configure_wifi.sh │ │ └── factory_test.sh ├── qg311r │ └── Factory │ │ ├── config.sh │ │ ├── configure_wifi.cfg.ori │ │ ├── configure_wifi.sh │ │ └── factory_test.sh ├── r30gb │ └── Factory │ │ ├── config.sh │ │ ├── configure_wifi.cfg.ori │ │ ├── configure_wifi.sh │ │ └── factory_test.sh ├── r35gb │ └── Factory │ │ ├── config.sh │ │ ├── configure_wifi.cfg.ori │ │ ├── configure_wifi.sh │ │ └── factory_test.sh ├── r37gb │ └── Factory │ │ ├── config.sh │ │ ├── configure_wifi.cfg.ori │ │ ├── configure_wifi.sh │ │ └── factory_test.sh ├── r40ga │ └── Factory │ │ ├── config.sh │ │ ├── configure_wifi.cfg.ori │ │ ├── configure_wifi.sh │ │ └── factory_test.sh ├── y211ba │ └── Factory │ │ ├── config.sh │ │ ├── configure_wifi.cfg.ori │ │ ├── configure_wifi.sh │ │ └── factory_test.sh ├── y211ga │ └── Factory │ │ ├── config.sh │ │ ├── configure_wifi.cfg.ori │ │ ├── configure_wifi.sh │ │ └── factory_test.sh ├── y213ga │ └── Factory │ │ ├── config.sh │ │ ├── configure_wifi.cfg.ori │ │ ├── configure_wifi.sh │ │ └── factory_test.sh ├── y21ga │ └── Factory │ │ ├── config.sh │ │ ├── configure_wifi.cfg.ori │ │ ├── configure_wifi.sh │ │ └── factory_test.sh ├── y28ga │ └── Factory │ │ ├── config.sh │ │ ├── configure_wifi.cfg.ori │ │ ├── configure_wifi.sh │ │ └── factory_test.sh ├── y291ga │ └── Factory │ │ ├── config.sh │ │ ├── configure_wifi.cfg.ori │ │ ├── configure_wifi.sh │ │ └── factory_test.sh ├── y29ga │ └── Factory │ │ ├── config.sh │ │ ├── configure_wifi.cfg.ori │ │ ├── configure_wifi.sh │ │ └── factory_test.sh └── y623 │ └── Factory │ ├── config.sh │ ├── configure_wifi.cfg.ori │ ├── configure_wifi.sh │ └── factory_test.sh ├── src ├── alsa-lib │ ├── .gitignore │ ├── alsa-lib.patch │ ├── cleanup.alsa-lib │ ├── compile.alsa-lib │ ├── init.alsa-lib │ ├── install.alsa-lib │ └── patch │ │ ├── 001_dmix_support_S16_LE_format.patch │ │ ├── 100-link_fix.patch │ │ ├── 200-fix_include_file_redirect_warnings.patch │ │ ├── 201-fix-snd_pcm_area_silence-remaining-samples-issue.patch │ │ └── 300-ensure-ringbuffer-empty-with-dmix.patch ├── busybox │ ├── .config │ ├── .gitignore │ ├── auth.patch │ ├── cleanup.busybox │ ├── compile.busybox │ ├── config.busybox │ ├── gzdef.patch │ ├── init.busybox │ ├── install.busybox │ ├── onvif.patch │ └── qemutest.busybox ├── dropbear │ ├── .gitignore │ ├── cleanup.dropbear │ ├── compile.dropbear │ ├── config.dropbear │ ├── init.dropbear │ ├── install.dropbear │ ├── localoptions.h │ └── qemutest.dropbear ├── ftpd │ ├── .gitignore │ ├── cleanup.ftpd │ ├── compile.ftpd │ ├── ftpd.patch │ ├── init.ftpd │ └── install.ftpd ├── go2rtc │ ├── .gitignore │ ├── cleanup.go2rtc │ ├── compile.go2rtc │ ├── init.go2rtc │ ├── install.go2rtc │ └── qemutest.go2rtc ├── h264grabber │ ├── .gitignore │ ├── cleanup.h264grabber │ ├── compile.h264grabber │ ├── h264grabber │ │ ├── Makefile │ │ └── h264grabber.c │ ├── init.h264grabber │ └── install.h264grabber ├── ipc_cmd │ ├── .gitignore │ ├── cleanup.ipc_cmd │ ├── compile.ipc_cmd │ ├── init.ipc_cmd │ ├── install.ipc_cmd │ └── ipc_cmd │ │ ├── Makefile │ │ ├── ipc2file.c │ │ ├── ipc2file.h │ │ ├── ipc_cmd.c │ │ ├── ipc_cmd.h │ │ ├── ipc_multiplex.c │ │ ├── ipc_multiplex.h │ │ ├── ipc_notify.c │ │ ├── ipc_notify.h │ │ ├── ipc_read.c │ │ ├── ipc_read.h │ │ ├── ptz.c │ │ └── ptz.h ├── jq │ ├── .gitignore │ ├── cleanup.jq │ ├── compile.jq │ ├── config.jq │ ├── init.jq │ ├── install.jq │ └── qemutest.jq ├── libwolf_01_ssl │ ├── .gitignore │ ├── cleanup.libwolf_01_ssl │ ├── compile.libwolf_01_ssl │ ├── config.wolfssl │ ├── init.libwolf_01_ssl │ └── install.libwolf_01_ssl ├── libwolf_02_mqtt │ ├── .gitignore │ ├── cleanup.libwolf_02_mqtt │ ├── compile.libwolf_02_mqtt │ ├── config.wolfmqtt │ ├── fflush.patch │ ├── init.libwolf_02_mqtt │ ├── install.libwolf_02_mqtt │ └── qemutest.libwolf_02_mqtt ├── mdnsd │ ├── .gitignore │ ├── cleanup.mdnsd │ ├── compile.mdnsd │ ├── config.mdnsd │ ├── init.mdnsd │ ├── install.mdnsd │ └── qemutest.mdnsd ├── micropython │ ├── .gitignore │ ├── cleanup.micropython │ ├── compile.micropython │ ├── config.micropython │ ├── init.micropython │ ├── install.micropython │ ├── libffi │ │ ├── cleanup.libffi │ │ ├── compile.libffi │ │ ├── config.libffi │ │ ├── init.libffi │ │ └── install.libffi │ └── qemutest.micropython ├── minimp4 │ ├── .gitignore │ ├── cleanup.minimp4 │ ├── compile.minimp4 │ ├── init.minimp4 │ └── install.minimp4 ├── mjpeg-avi │ ├── .gitignore │ ├── _install │ │ └── script │ │ │ └── create_avi.sh │ ├── cleanup.mjpeg-avi │ ├── compile.mjpeg-avi │ ├── create_avi.sh │ ├── init.mjpeg-avi │ ├── install.mjpeg-avi │ ├── makefile.patch │ └── qemutest.mjpeg-avi ├── mosquitto │ ├── .gitignore │ ├── cleanup.mosquitto │ ├── compile.mosquitto │ ├── config.mosquitto │ ├── init.mosquitto │ ├── install.mosquitto │ └── qemutest.mosquitto ├── mqtt-config │ ├── .gitignore │ ├── cleanup.mqtt-config │ ├── compile.mqtt-config │ ├── init.mqtt-config │ ├── install.mqtt-config │ └── mqtt-config │ │ ├── Makefile │ │ ├── config.c │ │ ├── config.h │ │ ├── mqtt-config.c │ │ ├── mqtt-config.h │ │ ├── mqtt.h │ │ ├── mqtt_mosquitto.c │ │ ├── mqtt_wolf.c │ │ ├── validate.c │ │ └── validate.h ├── mqtt │ ├── .gitignore │ ├── cleanup.mqtt │ ├── compile.mqtt │ ├── config.mak │ ├── dir.patch │ ├── init.mqtt │ └── install.mqtt ├── onvif_simple_server │ ├── .gitignore │ ├── arm-openwrt-linux-toolchain.cmake │ ├── cleanup.onvif_simple_server │ ├── compile.onvif_simple_server │ ├── init.onvif_simple_server │ ├── install.onvif_simple_server │ ├── mbedtls_config.h │ ├── path.patch │ └── qemutest.onvif_simple_server ├── pcmvol │ ├── .gitignore │ ├── cleanup.pcmvol │ ├── compile.pcmvol │ ├── init.pcmvol │ ├── install.pcmvol │ └── pcmvol │ │ ├── Makefile │ │ └── pcmvol.c ├── proccgi │ ├── .gitignore │ ├── cleanup.proccgi │ ├── compile.proccgi │ ├── config.mak │ ├── init.proccgi │ ├── install.proccgi │ └── proccgi │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── config.mak │ │ └── src │ │ └── proccgi.c ├── proxychains-ng │ ├── .gitignore │ ├── cleanup.proxychains-ng │ ├── compile.proxychains-ng │ ├── config.mak │ ├── init.proxychains-ng │ ├── install.proxychains-ng │ └── proxychains.conf ├── rRTSPServer │ ├── .gitignore │ ├── Makefile.libhelix-aac │ ├── Makefile.rRTSPServer │ ├── cleanup.rRTSPServer │ ├── compile.rRTSPServer │ ├── friend.patch │ ├── include │ │ ├── ADTS2PCMFileSink.hh │ │ ├── ADTSAudioFileServerMediaSubsession_BC.hh │ │ ├── ADTSAudioFramedMemoryServerMediaSubsession.hh │ │ ├── AudioFramedMemorySource.hh │ │ ├── FileServerMediaSubsession_BC.hh │ │ ├── H264VideoFramedMemoryServerMediaSubsession.hh │ │ ├── H265VideoFramedMemoryServerMediaSubsession.hh │ │ ├── OnDemandServerMediaSubsession_BC.hh │ │ ├── PCMAudioFileServerMediaSubsession_BC.hh │ │ ├── PCMFileSink.hh │ │ ├── Speaker.hh │ │ ├── VideoFramedMemorySource.hh │ │ ├── WAVAudioFifoServerMediaSubsession.hh │ │ ├── WAVAudioFifoSource.hh │ │ ├── aLawAudioFilter.hh │ │ └── rRTSPServer.h │ ├── init.rRTSPServer │ ├── install.rRTSPServer │ ├── not-arduino.patch │ ├── qemutest.rRTSPServer │ ├── rRTSPServer.patch │ ├── remove-mangling.patch │ └── src │ │ ├── ADTS2PCMFileSink.cpp │ │ ├── ADTSAudioFileServerMediaSubsession_BC.cpp │ │ ├── ADTSAudioFramedMemoryServerMediaSubsession.cpp │ │ ├── AudioFramedMemorySource.cpp │ │ ├── FileServerMediaSubsession_BC.cpp │ │ ├── H264VideoFramedMemoryServerMediaSubsession.cpp │ │ ├── H265VideoFramedMemoryServerMediaSubsession.cpp │ │ ├── OnDemandServerMediaSubsession_BC.cpp │ │ ├── PCMAudioFileServerMediaSubsession_BC.cpp │ │ ├── PCMFileSink.cpp │ │ ├── Speaker.cpp │ │ ├── VideoFramedMemorySource.cpp │ │ ├── WAVAudioFifoServerMediaSubsession.cpp │ │ ├── WAVAudioFifoSource.cpp │ │ ├── aLawAudioFilter.cpp │ │ └── rRTSPServer.cpp ├── rtsp_server_yi │ ├── .gitignore │ ├── Makefile.rtsp_server_yi │ ├── cleanup.rtsp_server_yi │ ├── compile.rtsp_server_yi │ ├── init.rtsp_server_yi │ └── install.rtsp_server_yi ├── set_tz_offset │ ├── .gitignore │ ├── cleanup.set_tz_offset │ ├── compile.set_tz_offset │ ├── init.set_tz_offset │ ├── install.set_tz_offset │ └── set_tz_offset │ │ ├── Makefile │ │ ├── set_tz_offset.c │ │ └── set_tz_offset.h ├── sftp-server │ ├── .gitignore │ ├── cleanup.sftp-server │ ├── compile.sftp-server │ ├── init.sftp-server │ ├── install.sftp-server │ └── qemutest.sftp-server ├── snapshot │ ├── .gitignore │ ├── cleanup.snapshot │ ├── compile.snapshot │ ├── init.snapshot │ ├── install.snapshot │ └── snapshot │ │ ├── Makefile │ │ ├── add_water.c │ │ ├── add_water.h │ │ ├── arm-openwrt-linux-toolchain.cmake │ │ ├── convert2jpg.c │ │ ├── convert2jpg.h │ │ ├── imggrabber.c │ │ ├── water_mark.c │ │ ├── water_mark.h │ │ └── wm_res │ │ ├── high │ │ ├── wm_540p_0.bmp │ │ ├── wm_540p_1.bmp │ │ ├── wm_540p_10.bmp │ │ ├── wm_540p_11.bmp │ │ ├── wm_540p_12.bmp │ │ ├── wm_540p_2.bmp │ │ ├── wm_540p_3.bmp │ │ ├── wm_540p_4.bmp │ │ ├── wm_540p_5.bmp │ │ ├── wm_540p_6.bmp │ │ ├── wm_540p_7.bmp │ │ ├── wm_540p_8.bmp │ │ └── wm_540p_9.bmp │ │ └── low │ │ ├── wm_540p_0.bmp │ │ ├── wm_540p_1.bmp │ │ ├── wm_540p_10.bmp │ │ ├── wm_540p_11.bmp │ │ ├── wm_540p_12.bmp │ │ ├── wm_540p_2.bmp │ │ ├── wm_540p_3.bmp │ │ ├── wm_540p_4.bmp │ │ ├── wm_540p_5.bmp │ │ ├── wm_540p_6.bmp │ │ ├── wm_540p_7.bmp │ │ ├── wm_540p_8.bmp │ │ └── wm_540p_9.bmp ├── speaker │ ├── .gitignore │ ├── cleanup.speaker │ ├── compile.speaker │ ├── init.speaker │ ├── install.speaker │ └── speaker │ │ ├── Makefile │ │ └── speaker.c ├── static │ ├── .gitignore │ ├── cleanup.static │ ├── compile.static │ ├── init.static │ ├── install.static │ └── static │ │ └── yi-hack │ │ ├── bin │ │ ├── cloudAPI │ │ └── cloudAPI_fake │ │ ├── etc │ │ ├── camera.conf │ │ ├── fallback.jpg │ │ ├── mqtt_advertise.conf │ │ ├── mqttv4.conf │ │ ├── ptz_presets.conf │ │ └── system.conf │ │ └── script │ │ ├── blacklist │ │ ├── ip │ │ └── url │ │ ├── check_conf.sh │ │ ├── clean_records.sh │ │ ├── conf2mqtt.sh │ │ ├── configure_wifi.sh │ │ ├── env.sh │ │ ├── ethdhcp.sh │ │ ├── ftppush.sh │ │ ├── mqtt_advertise │ │ ├── check_conf.sh │ │ ├── mqtt_adv_config.sh │ │ ├── mqtt_adv_homeassistant.sh │ │ ├── mqtt_adv_info_global.sh │ │ ├── mqtt_adv_links.sh │ │ ├── mqtt_adv_telemetry.sh │ │ ├── mqtt_set_config.sh │ │ └── startup.sh │ │ ├── ptz_presets.sh │ │ ├── service.sh │ │ ├── system.sh │ │ ├── thumb.sh │ │ ├── time_lapse.sh │ │ ├── wd.sh │ │ └── wifidhcp.sh └── www │ ├── .gitignore │ ├── cleanup.www │ ├── compile.www │ ├── httpd │ ├── cgi-bin │ │ ├── camera_settings.sh │ │ ├── eventsdir.sh │ │ ├── eventsdirdel.sh │ │ ├── eventsfile.sh │ │ ├── eventsfiledel.sh │ │ ├── fw_upgrade.sh │ │ ├── get_configs.sh │ │ ├── getlastrecordedvideo.sh │ │ ├── hostname.js │ │ ├── links.sh │ │ ├── load.sh │ │ ├── preset.sh │ │ ├── proxy.sh │ │ ├── ptz.sh │ │ ├── reboot.sh │ │ ├── record.sh │ │ ├── reset.sh │ │ ├── save.sh │ │ ├── service.sh │ │ ├── set_configs.sh │ │ ├── snapshot.sh │ │ ├── speak.sh │ │ ├── speaker.sh │ │ ├── speaker_file.sh │ │ ├── status.json │ │ ├── timelapse.sh │ │ ├── validate.sh │ │ └── wifi.sh │ ├── htdocs │ │ ├── css │ │ │ ├── all.css │ │ │ ├── custom.css │ │ │ ├── normalize.min.css │ │ │ └── skeleton.min.css │ │ ├── img │ │ │ ├── arrow-up-bold-box-outline.png │ │ │ ├── arrow-up-right-bold-box-outline.png │ │ │ ├── home.png │ │ │ ├── icon.png │ │ │ ├── loading.gif │ │ │ ├── wlan_medium_signal.png │ │ │ ├── wlan_no_signal.png │ │ │ ├── wlan_strong_signal.png │ │ │ └── wlan_weak_signal.png │ │ ├── index.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── jquery.min.js │ │ │ ├── modules │ │ │ │ ├── camera_settings.js │ │ │ │ ├── configurations.js │ │ │ │ ├── configurations_onvif.js │ │ │ │ ├── eventsdir.js │ │ │ │ ├── eventsfile.js │ │ │ │ ├── global.js │ │ │ │ ├── maintenance.js │ │ │ │ ├── mqtt.js │ │ │ │ ├── mqtt_adv.js │ │ │ │ ├── proxy.js │ │ │ │ ├── ptz.js │ │ │ │ ├── snapshot.js │ │ │ │ ├── speak.js │ │ │ │ ├── static_ip.js │ │ │ │ ├── status.js │ │ │ │ ├── timelapse.js │ │ │ │ └── wifi.js │ │ │ └── utils.js │ │ └── pages │ │ │ ├── camera_settings.html │ │ │ ├── configurations.html │ │ │ ├── configurations_onvif.html │ │ │ ├── eventsdir.html │ │ │ ├── eventsfile.html │ │ │ ├── maintenance.html │ │ │ ├── mqtt.html │ │ │ ├── mqtt_adv.html │ │ │ ├── proxy.html │ │ │ ├── ptz.html │ │ │ ├── snapshot.html │ │ │ ├── speak.html │ │ │ ├── static_ip.html │ │ │ ├── status.html │ │ │ ├── timelapse.html │ │ │ ├── tz.html │ │ │ └── wifi.html │ └── tools │ │ └── remcomm.awk │ ├── init.www │ └── install.www ├── sysroot ├── b091qp │ ├── lower_half_init.sh │ └── yi-hack │ │ └── fw_upgrade_in_progress ├── h30ga │ ├── lower_half_init.sh │ └── yi-hack │ │ └── fw_upgrade_in_progress ├── h51ga │ ├── lower_half_init.sh │ └── yi-hack │ │ └── fw_upgrade_in_progress ├── h52ga │ ├── lower_half_init.sh │ └── yi-hack │ │ └── fw_upgrade_in_progress ├── h60ga │ ├── lower_half_init.sh │ └── yi-hack │ │ └── fw_upgrade_in_progress ├── q321br_lsx │ ├── lower_half_init.sh │ └── yi-hack │ │ └── fw_upgrade_in_progress ├── q705br │ ├── lower_half_init.sh │ └── yi-hack │ │ └── fw_upgrade_in_progress ├── qg311r │ ├── lower_half_init.sh │ └── yi-hack │ │ └── fw_upgrade_in_progress ├── r30gb │ ├── lower_half_init.sh │ └── yi-hack │ │ └── fw_upgrade_in_progress ├── r35gb │ ├── lower_half_init.sh │ └── yi-hack │ │ └── fw_upgrade_in_progress ├── r37gb │ ├── lower_half_init.sh │ └── yi-hack │ │ └── fw_upgrade_in_progress ├── r40ga │ ├── lower_half_init.sh │ └── yi-hack │ │ └── fw_upgrade_in_progress ├── y211ba │ ├── lower_half_init.sh │ └── yi-hack │ │ └── fw_upgrade_in_progress ├── y211ga │ ├── lower_half_init.sh │ └── yi-hack │ │ └── fw_upgrade_in_progress ├── y213ga │ ├── lower_half_init.sh │ └── yi-hack │ │ └── fw_upgrade_in_progress ├── y21ga │ ├── lower_half_init.sh │ └── yi-hack │ │ └── fw_upgrade_in_progress ├── y28ga │ ├── lower_half_init.sh │ └── yi-hack │ │ └── fw_upgrade_in_progress ├── y291ga │ ├── lower_half_init.sh │ └── yi-hack │ │ └── fw_upgrade_in_progress ├── y29ga │ ├── lower_half_init.sh │ └── yi-hack │ │ └── fw_upgrade_in_progress └── y623 │ ├── lower_half_init.sh │ └── yi-hack │ └── fw_upgrade_in_progress └── unbrick ├── README.md ├── b091qp ├── filename └── mtd.txt ├── build.bat ├── build.sh ├── clean.bat ├── clean.sh ├── create.jffs2 ├── gzip.exe ├── h30ga ├── filename └── mtd.txt ├── h51ga ├── filename └── mtd.txt ├── h52ga ├── filename └── mtd.txt ├── h60ga ├── filename └── mtd.txt ├── mkfs.jffs2 ├── mkimage.exe ├── mount.jffs2 ├── q321br_lsx ├── filename └── mtd.txt ├── q705br ├── filename └── mtd.txt ├── qg311r ├── filename └── mtd.txt ├── r30gb ├── filename └── mtd.txt ├── r35gb ├── filename └── mtd.txt ├── r37gb ├── filename └── mtd.txt ├── r40ga ├── filename └── mtd.txt ├── y211ba ├── filename └── mtd.txt ├── y211ga ├── filename └── mtd.txt ├── y213ga ├── filename └── mtd.txt ├── y21ga ├── filename └── mtd.txt ├── y28ga ├── filename └── mtd.txt ├── y291ga ├── filename └── mtd.txt ├── y29ga ├── filename └── mtd.txt └── y623 ├── filename └── mtd.txt /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.3.4 2 | -------------------------------------------------------------------------------- /assets/yi-hack-allwinner-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/assets/yi-hack-allwinner-logo.png -------------------------------------------------------------------------------- /assets/yi-hack-allwinner-logo.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/assets/yi-hack-allwinner-logo.sketch -------------------------------------------------------------------------------- /scripts/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/scripts/cleanup.sh -------------------------------------------------------------------------------- /scripts/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/scripts/common.sh -------------------------------------------------------------------------------- /scripts/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/scripts/compile.sh -------------------------------------------------------------------------------- /scripts/pack_fw.all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/scripts/pack_fw.all.sh -------------------------------------------------------------------------------- /scripts/pack_fw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/scripts/pack_fw.sh -------------------------------------------------------------------------------- /sdhack/b091qp/Factory/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/b091qp/Factory/config.sh -------------------------------------------------------------------------------- /sdhack/b091qp/Factory/configure_wifi.cfg.ori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/b091qp/Factory/configure_wifi.cfg.ori -------------------------------------------------------------------------------- /sdhack/b091qp/Factory/configure_wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/b091qp/Factory/configure_wifi.sh -------------------------------------------------------------------------------- /sdhack/b091qp/Factory/factory_test.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdhack/h30ga/Factory/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/h30ga/Factory/config.sh -------------------------------------------------------------------------------- /sdhack/h30ga/Factory/configure_wifi.cfg.ori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/h30ga/Factory/configure_wifi.cfg.ori -------------------------------------------------------------------------------- /sdhack/h30ga/Factory/configure_wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/h30ga/Factory/configure_wifi.sh -------------------------------------------------------------------------------- /sdhack/h30ga/Factory/factory_test.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdhack/h51ga/Factory/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/h51ga/Factory/config.sh -------------------------------------------------------------------------------- /sdhack/h51ga/Factory/configure_wifi.cfg.ori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/h51ga/Factory/configure_wifi.cfg.ori -------------------------------------------------------------------------------- /sdhack/h51ga/Factory/configure_wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/h51ga/Factory/configure_wifi.sh -------------------------------------------------------------------------------- /sdhack/h51ga/Factory/factory_test.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdhack/h52ga/Factory/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/h52ga/Factory/config.sh -------------------------------------------------------------------------------- /sdhack/h52ga/Factory/configure_wifi.cfg.ori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/h52ga/Factory/configure_wifi.cfg.ori -------------------------------------------------------------------------------- /sdhack/h52ga/Factory/configure_wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/h52ga/Factory/configure_wifi.sh -------------------------------------------------------------------------------- /sdhack/h52ga/Factory/factory_test.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdhack/h60ga/Factory/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/h60ga/Factory/config.sh -------------------------------------------------------------------------------- /sdhack/h60ga/Factory/configure_wifi.cfg.ori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/h60ga/Factory/configure_wifi.cfg.ori -------------------------------------------------------------------------------- /sdhack/h60ga/Factory/configure_wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/h60ga/Factory/configure_wifi.sh -------------------------------------------------------------------------------- /sdhack/h60ga/Factory/factory_test.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdhack/q321br_lsx/Factory/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/q321br_lsx/Factory/config.sh -------------------------------------------------------------------------------- /sdhack/q321br_lsx/Factory/configure_wifi.cfg.ori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/q321br_lsx/Factory/configure_wifi.cfg.ori -------------------------------------------------------------------------------- /sdhack/q321br_lsx/Factory/configure_wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/q321br_lsx/Factory/configure_wifi.sh -------------------------------------------------------------------------------- /sdhack/q321br_lsx/Factory/factory_test.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdhack/q705br/Factory/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/q705br/Factory/config.sh -------------------------------------------------------------------------------- /sdhack/q705br/Factory/configure_wifi.cfg.ori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/q705br/Factory/configure_wifi.cfg.ori -------------------------------------------------------------------------------- /sdhack/q705br/Factory/configure_wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/q705br/Factory/configure_wifi.sh -------------------------------------------------------------------------------- /sdhack/q705br/Factory/factory_test.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdhack/qg311r/Factory/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/qg311r/Factory/config.sh -------------------------------------------------------------------------------- /sdhack/qg311r/Factory/configure_wifi.cfg.ori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/qg311r/Factory/configure_wifi.cfg.ori -------------------------------------------------------------------------------- /sdhack/qg311r/Factory/configure_wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/qg311r/Factory/configure_wifi.sh -------------------------------------------------------------------------------- /sdhack/qg311r/Factory/factory_test.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdhack/r30gb/Factory/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/r30gb/Factory/config.sh -------------------------------------------------------------------------------- /sdhack/r30gb/Factory/configure_wifi.cfg.ori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/r30gb/Factory/configure_wifi.cfg.ori -------------------------------------------------------------------------------- /sdhack/r30gb/Factory/configure_wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/r30gb/Factory/configure_wifi.sh -------------------------------------------------------------------------------- /sdhack/r30gb/Factory/factory_test.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdhack/r35gb/Factory/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/r35gb/Factory/config.sh -------------------------------------------------------------------------------- /sdhack/r35gb/Factory/configure_wifi.cfg.ori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/r35gb/Factory/configure_wifi.cfg.ori -------------------------------------------------------------------------------- /sdhack/r35gb/Factory/configure_wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/r35gb/Factory/configure_wifi.sh -------------------------------------------------------------------------------- /sdhack/r35gb/Factory/factory_test.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdhack/r37gb/Factory/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/r37gb/Factory/config.sh -------------------------------------------------------------------------------- /sdhack/r37gb/Factory/configure_wifi.cfg.ori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/r37gb/Factory/configure_wifi.cfg.ori -------------------------------------------------------------------------------- /sdhack/r37gb/Factory/configure_wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/r37gb/Factory/configure_wifi.sh -------------------------------------------------------------------------------- /sdhack/r37gb/Factory/factory_test.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdhack/r40ga/Factory/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/r40ga/Factory/config.sh -------------------------------------------------------------------------------- /sdhack/r40ga/Factory/configure_wifi.cfg.ori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/r40ga/Factory/configure_wifi.cfg.ori -------------------------------------------------------------------------------- /sdhack/r40ga/Factory/configure_wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/r40ga/Factory/configure_wifi.sh -------------------------------------------------------------------------------- /sdhack/r40ga/Factory/factory_test.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdhack/y211ba/Factory/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/y211ba/Factory/config.sh -------------------------------------------------------------------------------- /sdhack/y211ba/Factory/configure_wifi.cfg.ori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/y211ba/Factory/configure_wifi.cfg.ori -------------------------------------------------------------------------------- /sdhack/y211ba/Factory/configure_wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/y211ba/Factory/configure_wifi.sh -------------------------------------------------------------------------------- /sdhack/y211ba/Factory/factory_test.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdhack/y211ga/Factory/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/y211ga/Factory/config.sh -------------------------------------------------------------------------------- /sdhack/y211ga/Factory/configure_wifi.cfg.ori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/y211ga/Factory/configure_wifi.cfg.ori -------------------------------------------------------------------------------- /sdhack/y211ga/Factory/configure_wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/y211ga/Factory/configure_wifi.sh -------------------------------------------------------------------------------- /sdhack/y211ga/Factory/factory_test.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdhack/y213ga/Factory/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/y213ga/Factory/config.sh -------------------------------------------------------------------------------- /sdhack/y213ga/Factory/configure_wifi.cfg.ori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/y213ga/Factory/configure_wifi.cfg.ori -------------------------------------------------------------------------------- /sdhack/y213ga/Factory/configure_wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/y213ga/Factory/configure_wifi.sh -------------------------------------------------------------------------------- /sdhack/y213ga/Factory/factory_test.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdhack/y21ga/Factory/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/y21ga/Factory/config.sh -------------------------------------------------------------------------------- /sdhack/y21ga/Factory/configure_wifi.cfg.ori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/y21ga/Factory/configure_wifi.cfg.ori -------------------------------------------------------------------------------- /sdhack/y21ga/Factory/configure_wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/y21ga/Factory/configure_wifi.sh -------------------------------------------------------------------------------- /sdhack/y21ga/Factory/factory_test.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdhack/y28ga/Factory/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/y28ga/Factory/config.sh -------------------------------------------------------------------------------- /sdhack/y28ga/Factory/configure_wifi.cfg.ori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/y28ga/Factory/configure_wifi.cfg.ori -------------------------------------------------------------------------------- /sdhack/y28ga/Factory/configure_wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/y28ga/Factory/configure_wifi.sh -------------------------------------------------------------------------------- /sdhack/y28ga/Factory/factory_test.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdhack/y291ga/Factory/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/y291ga/Factory/config.sh -------------------------------------------------------------------------------- /sdhack/y291ga/Factory/configure_wifi.cfg.ori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/y291ga/Factory/configure_wifi.cfg.ori -------------------------------------------------------------------------------- /sdhack/y291ga/Factory/configure_wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/y291ga/Factory/configure_wifi.sh -------------------------------------------------------------------------------- /sdhack/y291ga/Factory/factory_test.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdhack/y29ga/Factory/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/y29ga/Factory/config.sh -------------------------------------------------------------------------------- /sdhack/y29ga/Factory/configure_wifi.cfg.ori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/y29ga/Factory/configure_wifi.cfg.ori -------------------------------------------------------------------------------- /sdhack/y29ga/Factory/configure_wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/y29ga/Factory/configure_wifi.sh -------------------------------------------------------------------------------- /sdhack/y29ga/Factory/factory_test.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdhack/y623/Factory/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/y623/Factory/config.sh -------------------------------------------------------------------------------- /sdhack/y623/Factory/configure_wifi.cfg.ori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/y623/Factory/configure_wifi.cfg.ori -------------------------------------------------------------------------------- /sdhack/y623/Factory/configure_wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sdhack/y623/Factory/configure_wifi.sh -------------------------------------------------------------------------------- /sdhack/y623/Factory/factory_test.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/alsa-lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/alsa-lib/.gitignore -------------------------------------------------------------------------------- /src/alsa-lib/alsa-lib.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/alsa-lib/alsa-lib.patch -------------------------------------------------------------------------------- /src/alsa-lib/cleanup.alsa-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/alsa-lib/cleanup.alsa-lib -------------------------------------------------------------------------------- /src/alsa-lib/compile.alsa-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/alsa-lib/compile.alsa-lib -------------------------------------------------------------------------------- /src/alsa-lib/init.alsa-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/alsa-lib/init.alsa-lib -------------------------------------------------------------------------------- /src/alsa-lib/install.alsa-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/alsa-lib/install.alsa-lib -------------------------------------------------------------------------------- /src/alsa-lib/patch/001_dmix_support_S16_LE_format.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/alsa-lib/patch/001_dmix_support_S16_LE_format.patch -------------------------------------------------------------------------------- /src/alsa-lib/patch/100-link_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/alsa-lib/patch/100-link_fix.patch -------------------------------------------------------------------------------- /src/alsa-lib/patch/200-fix_include_file_redirect_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/alsa-lib/patch/200-fix_include_file_redirect_warnings.patch -------------------------------------------------------------------------------- /src/alsa-lib/patch/201-fix-snd_pcm_area_silence-remaining-samples-issue.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/alsa-lib/patch/201-fix-snd_pcm_area_silence-remaining-samples-issue.patch -------------------------------------------------------------------------------- /src/alsa-lib/patch/300-ensure-ringbuffer-empty-with-dmix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/alsa-lib/patch/300-ensure-ringbuffer-empty-with-dmix.patch -------------------------------------------------------------------------------- /src/busybox/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/busybox/.config -------------------------------------------------------------------------------- /src/busybox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/busybox/.gitignore -------------------------------------------------------------------------------- /src/busybox/auth.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/busybox/auth.patch -------------------------------------------------------------------------------- /src/busybox/cleanup.busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/busybox/cleanup.busybox -------------------------------------------------------------------------------- /src/busybox/compile.busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/busybox/compile.busybox -------------------------------------------------------------------------------- /src/busybox/config.busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/busybox/config.busybox -------------------------------------------------------------------------------- /src/busybox/gzdef.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/busybox/gzdef.patch -------------------------------------------------------------------------------- /src/busybox/init.busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/busybox/init.busybox -------------------------------------------------------------------------------- /src/busybox/install.busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/busybox/install.busybox -------------------------------------------------------------------------------- /src/busybox/onvif.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/busybox/onvif.patch -------------------------------------------------------------------------------- /src/busybox/qemutest.busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/busybox/qemutest.busybox -------------------------------------------------------------------------------- /src/dropbear/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/dropbear/.gitignore -------------------------------------------------------------------------------- /src/dropbear/cleanup.dropbear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/dropbear/cleanup.dropbear -------------------------------------------------------------------------------- /src/dropbear/compile.dropbear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/dropbear/compile.dropbear -------------------------------------------------------------------------------- /src/dropbear/config.dropbear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/dropbear/config.dropbear -------------------------------------------------------------------------------- /src/dropbear/init.dropbear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/dropbear/init.dropbear -------------------------------------------------------------------------------- /src/dropbear/install.dropbear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/dropbear/install.dropbear -------------------------------------------------------------------------------- /src/dropbear/localoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/dropbear/localoptions.h -------------------------------------------------------------------------------- /src/dropbear/qemutest.dropbear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/dropbear/qemutest.dropbear -------------------------------------------------------------------------------- /src/ftpd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/ftpd/.gitignore -------------------------------------------------------------------------------- /src/ftpd/cleanup.ftpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/ftpd/cleanup.ftpd -------------------------------------------------------------------------------- /src/ftpd/compile.ftpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/ftpd/compile.ftpd -------------------------------------------------------------------------------- /src/ftpd/ftpd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/ftpd/ftpd.patch -------------------------------------------------------------------------------- /src/ftpd/init.ftpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/ftpd/init.ftpd -------------------------------------------------------------------------------- /src/ftpd/install.ftpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/ftpd/install.ftpd -------------------------------------------------------------------------------- /src/go2rtc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/go2rtc/.gitignore -------------------------------------------------------------------------------- /src/go2rtc/cleanup.go2rtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/go2rtc/cleanup.go2rtc -------------------------------------------------------------------------------- /src/go2rtc/compile.go2rtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/go2rtc/compile.go2rtc -------------------------------------------------------------------------------- /src/go2rtc/init.go2rtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/go2rtc/init.go2rtc -------------------------------------------------------------------------------- /src/go2rtc/install.go2rtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/go2rtc/install.go2rtc -------------------------------------------------------------------------------- /src/go2rtc/qemutest.go2rtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/go2rtc/qemutest.go2rtc -------------------------------------------------------------------------------- /src/h264grabber/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/h264grabber/.gitignore -------------------------------------------------------------------------------- /src/h264grabber/cleanup.h264grabber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/h264grabber/cleanup.h264grabber -------------------------------------------------------------------------------- /src/h264grabber/compile.h264grabber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/h264grabber/compile.h264grabber -------------------------------------------------------------------------------- /src/h264grabber/h264grabber/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/h264grabber/h264grabber/Makefile -------------------------------------------------------------------------------- /src/h264grabber/h264grabber/h264grabber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/h264grabber/h264grabber/h264grabber.c -------------------------------------------------------------------------------- /src/h264grabber/init.h264grabber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/h264grabber/init.h264grabber -------------------------------------------------------------------------------- /src/h264grabber/install.h264grabber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/h264grabber/install.h264grabber -------------------------------------------------------------------------------- /src/ipc_cmd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/ipc_cmd/.gitignore -------------------------------------------------------------------------------- /src/ipc_cmd/cleanup.ipc_cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/ipc_cmd/cleanup.ipc_cmd -------------------------------------------------------------------------------- /src/ipc_cmd/compile.ipc_cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/ipc_cmd/compile.ipc_cmd -------------------------------------------------------------------------------- /src/ipc_cmd/init.ipc_cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/ipc_cmd/init.ipc_cmd -------------------------------------------------------------------------------- /src/ipc_cmd/install.ipc_cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/ipc_cmd/install.ipc_cmd -------------------------------------------------------------------------------- /src/ipc_cmd/ipc_cmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/ipc_cmd/ipc_cmd/Makefile -------------------------------------------------------------------------------- /src/ipc_cmd/ipc_cmd/ipc2file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/ipc_cmd/ipc_cmd/ipc2file.c -------------------------------------------------------------------------------- /src/ipc_cmd/ipc_cmd/ipc2file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/ipc_cmd/ipc_cmd/ipc2file.h -------------------------------------------------------------------------------- /src/ipc_cmd/ipc_cmd/ipc_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/ipc_cmd/ipc_cmd/ipc_cmd.c -------------------------------------------------------------------------------- /src/ipc_cmd/ipc_cmd/ipc_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/ipc_cmd/ipc_cmd/ipc_cmd.h -------------------------------------------------------------------------------- /src/ipc_cmd/ipc_cmd/ipc_multiplex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/ipc_cmd/ipc_cmd/ipc_multiplex.c -------------------------------------------------------------------------------- /src/ipc_cmd/ipc_cmd/ipc_multiplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/ipc_cmd/ipc_cmd/ipc_multiplex.h -------------------------------------------------------------------------------- /src/ipc_cmd/ipc_cmd/ipc_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/ipc_cmd/ipc_cmd/ipc_notify.c -------------------------------------------------------------------------------- /src/ipc_cmd/ipc_cmd/ipc_notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/ipc_cmd/ipc_cmd/ipc_notify.h -------------------------------------------------------------------------------- /src/ipc_cmd/ipc_cmd/ipc_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/ipc_cmd/ipc_cmd/ipc_read.c -------------------------------------------------------------------------------- /src/ipc_cmd/ipc_cmd/ipc_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/ipc_cmd/ipc_cmd/ipc_read.h -------------------------------------------------------------------------------- /src/ipc_cmd/ipc_cmd/ptz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/ipc_cmd/ipc_cmd/ptz.c -------------------------------------------------------------------------------- /src/ipc_cmd/ipc_cmd/ptz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/ipc_cmd/ipc_cmd/ptz.h -------------------------------------------------------------------------------- /src/jq/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/jq/.gitignore -------------------------------------------------------------------------------- /src/jq/cleanup.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/jq/cleanup.jq -------------------------------------------------------------------------------- /src/jq/compile.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/jq/compile.jq -------------------------------------------------------------------------------- /src/jq/config.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/jq/config.jq -------------------------------------------------------------------------------- /src/jq/init.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/jq/init.jq -------------------------------------------------------------------------------- /src/jq/install.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/jq/install.jq -------------------------------------------------------------------------------- /src/jq/qemutest.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/jq/qemutest.jq -------------------------------------------------------------------------------- /src/libwolf_01_ssl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/libwolf_01_ssl/.gitignore -------------------------------------------------------------------------------- /src/libwolf_01_ssl/cleanup.libwolf_01_ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/libwolf_01_ssl/cleanup.libwolf_01_ssl -------------------------------------------------------------------------------- /src/libwolf_01_ssl/compile.libwolf_01_ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/libwolf_01_ssl/compile.libwolf_01_ssl -------------------------------------------------------------------------------- /src/libwolf_01_ssl/config.wolfssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/libwolf_01_ssl/config.wolfssl -------------------------------------------------------------------------------- /src/libwolf_01_ssl/init.libwolf_01_ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/libwolf_01_ssl/init.libwolf_01_ssl -------------------------------------------------------------------------------- /src/libwolf_01_ssl/install.libwolf_01_ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/libwolf_01_ssl/install.libwolf_01_ssl -------------------------------------------------------------------------------- /src/libwolf_02_mqtt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/libwolf_02_mqtt/.gitignore -------------------------------------------------------------------------------- /src/libwolf_02_mqtt/cleanup.libwolf_02_mqtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/libwolf_02_mqtt/cleanup.libwolf_02_mqtt -------------------------------------------------------------------------------- /src/libwolf_02_mqtt/compile.libwolf_02_mqtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/libwolf_02_mqtt/compile.libwolf_02_mqtt -------------------------------------------------------------------------------- /src/libwolf_02_mqtt/config.wolfmqtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/libwolf_02_mqtt/config.wolfmqtt -------------------------------------------------------------------------------- /src/libwolf_02_mqtt/fflush.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/libwolf_02_mqtt/fflush.patch -------------------------------------------------------------------------------- /src/libwolf_02_mqtt/init.libwolf_02_mqtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/libwolf_02_mqtt/init.libwolf_02_mqtt -------------------------------------------------------------------------------- /src/libwolf_02_mqtt/install.libwolf_02_mqtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/libwolf_02_mqtt/install.libwolf_02_mqtt -------------------------------------------------------------------------------- /src/libwolf_02_mqtt/qemutest.libwolf_02_mqtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/libwolf_02_mqtt/qemutest.libwolf_02_mqtt -------------------------------------------------------------------------------- /src/mdnsd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mdnsd/.gitignore -------------------------------------------------------------------------------- /src/mdnsd/cleanup.mdnsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mdnsd/cleanup.mdnsd -------------------------------------------------------------------------------- /src/mdnsd/compile.mdnsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mdnsd/compile.mdnsd -------------------------------------------------------------------------------- /src/mdnsd/config.mdnsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mdnsd/config.mdnsd -------------------------------------------------------------------------------- /src/mdnsd/init.mdnsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mdnsd/init.mdnsd -------------------------------------------------------------------------------- /src/mdnsd/install.mdnsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mdnsd/install.mdnsd -------------------------------------------------------------------------------- /src/mdnsd/qemutest.mdnsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mdnsd/qemutest.mdnsd -------------------------------------------------------------------------------- /src/micropython/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/micropython/.gitignore -------------------------------------------------------------------------------- /src/micropython/cleanup.micropython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/micropython/cleanup.micropython -------------------------------------------------------------------------------- /src/micropython/compile.micropython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/micropython/compile.micropython -------------------------------------------------------------------------------- /src/micropython/config.micropython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/micropython/config.micropython -------------------------------------------------------------------------------- /src/micropython/init.micropython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/micropython/init.micropython -------------------------------------------------------------------------------- /src/micropython/install.micropython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/micropython/install.micropython -------------------------------------------------------------------------------- /src/micropython/libffi/cleanup.libffi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/micropython/libffi/cleanup.libffi -------------------------------------------------------------------------------- /src/micropython/libffi/compile.libffi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/micropython/libffi/compile.libffi -------------------------------------------------------------------------------- /src/micropython/libffi/config.libffi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/micropython/libffi/config.libffi -------------------------------------------------------------------------------- /src/micropython/libffi/init.libffi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/micropython/libffi/init.libffi -------------------------------------------------------------------------------- /src/micropython/libffi/install.libffi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/micropython/libffi/install.libffi -------------------------------------------------------------------------------- /src/micropython/qemutest.micropython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/micropython/qemutest.micropython -------------------------------------------------------------------------------- /src/minimp4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/minimp4/.gitignore -------------------------------------------------------------------------------- /src/minimp4/cleanup.minimp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/minimp4/cleanup.minimp4 -------------------------------------------------------------------------------- /src/minimp4/compile.minimp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/minimp4/compile.minimp4 -------------------------------------------------------------------------------- /src/minimp4/init.minimp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/minimp4/init.minimp4 -------------------------------------------------------------------------------- /src/minimp4/install.minimp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/minimp4/install.minimp4 -------------------------------------------------------------------------------- /src/mjpeg-avi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mjpeg-avi/.gitignore -------------------------------------------------------------------------------- /src/mjpeg-avi/_install/script/create_avi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mjpeg-avi/_install/script/create_avi.sh -------------------------------------------------------------------------------- /src/mjpeg-avi/cleanup.mjpeg-avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mjpeg-avi/cleanup.mjpeg-avi -------------------------------------------------------------------------------- /src/mjpeg-avi/compile.mjpeg-avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mjpeg-avi/compile.mjpeg-avi -------------------------------------------------------------------------------- /src/mjpeg-avi/create_avi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mjpeg-avi/create_avi.sh -------------------------------------------------------------------------------- /src/mjpeg-avi/init.mjpeg-avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mjpeg-avi/init.mjpeg-avi -------------------------------------------------------------------------------- /src/mjpeg-avi/install.mjpeg-avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mjpeg-avi/install.mjpeg-avi -------------------------------------------------------------------------------- /src/mjpeg-avi/makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mjpeg-avi/makefile.patch -------------------------------------------------------------------------------- /src/mjpeg-avi/qemutest.mjpeg-avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mjpeg-avi/qemutest.mjpeg-avi -------------------------------------------------------------------------------- /src/mosquitto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mosquitto/.gitignore -------------------------------------------------------------------------------- /src/mosquitto/cleanup.mosquitto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mosquitto/cleanup.mosquitto -------------------------------------------------------------------------------- /src/mosquitto/compile.mosquitto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mosquitto/compile.mosquitto -------------------------------------------------------------------------------- /src/mosquitto/config.mosquitto: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | #USE_MOSQUITTO=1 4 | BUILD_FOLDER="mosquitto" 5 | -------------------------------------------------------------------------------- /src/mosquitto/init.mosquitto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mosquitto/init.mosquitto -------------------------------------------------------------------------------- /src/mosquitto/install.mosquitto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mosquitto/install.mosquitto -------------------------------------------------------------------------------- /src/mosquitto/qemutest.mosquitto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mosquitto/qemutest.mosquitto -------------------------------------------------------------------------------- /src/mqtt-config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mqtt-config/.gitignore -------------------------------------------------------------------------------- /src/mqtt-config/cleanup.mqtt-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mqtt-config/cleanup.mqtt-config -------------------------------------------------------------------------------- /src/mqtt-config/compile.mqtt-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mqtt-config/compile.mqtt-config -------------------------------------------------------------------------------- /src/mqtt-config/init.mqtt-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mqtt-config/init.mqtt-config -------------------------------------------------------------------------------- /src/mqtt-config/install.mqtt-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mqtt-config/install.mqtt-config -------------------------------------------------------------------------------- /src/mqtt-config/mqtt-config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mqtt-config/mqtt-config/Makefile -------------------------------------------------------------------------------- /src/mqtt-config/mqtt-config/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mqtt-config/mqtt-config/config.c -------------------------------------------------------------------------------- /src/mqtt-config/mqtt-config/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mqtt-config/mqtt-config/config.h -------------------------------------------------------------------------------- /src/mqtt-config/mqtt-config/mqtt-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mqtt-config/mqtt-config/mqtt-config.c -------------------------------------------------------------------------------- /src/mqtt-config/mqtt-config/mqtt-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mqtt-config/mqtt-config/mqtt-config.h -------------------------------------------------------------------------------- /src/mqtt-config/mqtt-config/mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mqtt-config/mqtt-config/mqtt.h -------------------------------------------------------------------------------- /src/mqtt-config/mqtt-config/mqtt_mosquitto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mqtt-config/mqtt-config/mqtt_mosquitto.c -------------------------------------------------------------------------------- /src/mqtt-config/mqtt-config/mqtt_wolf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mqtt-config/mqtt-config/mqtt_wolf.c -------------------------------------------------------------------------------- /src/mqtt-config/mqtt-config/validate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mqtt-config/mqtt-config/validate.c -------------------------------------------------------------------------------- /src/mqtt-config/mqtt-config/validate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mqtt-config/mqtt-config/validate.h -------------------------------------------------------------------------------- /src/mqtt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mqtt/.gitignore -------------------------------------------------------------------------------- /src/mqtt/cleanup.mqtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mqtt/cleanup.mqtt -------------------------------------------------------------------------------- /src/mqtt/compile.mqtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mqtt/compile.mqtt -------------------------------------------------------------------------------- /src/mqtt/config.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mqtt/config.mak -------------------------------------------------------------------------------- /src/mqtt/dir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mqtt/dir.patch -------------------------------------------------------------------------------- /src/mqtt/init.mqtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mqtt/init.mqtt -------------------------------------------------------------------------------- /src/mqtt/install.mqtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/mqtt/install.mqtt -------------------------------------------------------------------------------- /src/onvif_simple_server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/onvif_simple_server/.gitignore -------------------------------------------------------------------------------- /src/onvif_simple_server/arm-openwrt-linux-toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/onvif_simple_server/arm-openwrt-linux-toolchain.cmake -------------------------------------------------------------------------------- /src/onvif_simple_server/cleanup.onvif_simple_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/onvif_simple_server/cleanup.onvif_simple_server -------------------------------------------------------------------------------- /src/onvif_simple_server/compile.onvif_simple_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/onvif_simple_server/compile.onvif_simple_server -------------------------------------------------------------------------------- /src/onvif_simple_server/init.onvif_simple_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/onvif_simple_server/init.onvif_simple_server -------------------------------------------------------------------------------- /src/onvif_simple_server/install.onvif_simple_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/onvif_simple_server/install.onvif_simple_server -------------------------------------------------------------------------------- /src/onvif_simple_server/mbedtls_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/onvif_simple_server/mbedtls_config.h -------------------------------------------------------------------------------- /src/onvif_simple_server/path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/onvif_simple_server/path.patch -------------------------------------------------------------------------------- /src/onvif_simple_server/qemutest.onvif_simple_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/onvif_simple_server/qemutest.onvif_simple_server -------------------------------------------------------------------------------- /src/pcmvol/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/pcmvol/.gitignore -------------------------------------------------------------------------------- /src/pcmvol/cleanup.pcmvol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/pcmvol/cleanup.pcmvol -------------------------------------------------------------------------------- /src/pcmvol/compile.pcmvol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/pcmvol/compile.pcmvol -------------------------------------------------------------------------------- /src/pcmvol/init.pcmvol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/pcmvol/init.pcmvol -------------------------------------------------------------------------------- /src/pcmvol/install.pcmvol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/pcmvol/install.pcmvol -------------------------------------------------------------------------------- /src/pcmvol/pcmvol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/pcmvol/pcmvol/Makefile -------------------------------------------------------------------------------- /src/pcmvol/pcmvol/pcmvol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/pcmvol/pcmvol/pcmvol.c -------------------------------------------------------------------------------- /src/proccgi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/proccgi/.gitignore -------------------------------------------------------------------------------- /src/proccgi/cleanup.proccgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/proccgi/cleanup.proccgi -------------------------------------------------------------------------------- /src/proccgi/compile.proccgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/proccgi/compile.proccgi -------------------------------------------------------------------------------- /src/proccgi/config.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/proccgi/config.mak -------------------------------------------------------------------------------- /src/proccgi/init.proccgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/proccgi/init.proccgi -------------------------------------------------------------------------------- /src/proccgi/install.proccgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/proccgi/install.proccgi -------------------------------------------------------------------------------- /src/proccgi/proccgi/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /src/proccgi/proccgi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/proccgi/proccgi/Makefile -------------------------------------------------------------------------------- /src/proccgi/proccgi/config.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/proccgi/proccgi/config.mak -------------------------------------------------------------------------------- /src/proccgi/proccgi/src/proccgi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/proccgi/proccgi/src/proccgi.c -------------------------------------------------------------------------------- /src/proxychains-ng/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/proxychains-ng/.gitignore -------------------------------------------------------------------------------- /src/proxychains-ng/cleanup.proxychains-ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/proxychains-ng/cleanup.proxychains-ng -------------------------------------------------------------------------------- /src/proxychains-ng/compile.proxychains-ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/proxychains-ng/compile.proxychains-ng -------------------------------------------------------------------------------- /src/proxychains-ng/config.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/proxychains-ng/config.mak -------------------------------------------------------------------------------- /src/proxychains-ng/init.proxychains-ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/proxychains-ng/init.proxychains-ng -------------------------------------------------------------------------------- /src/proxychains-ng/install.proxychains-ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/proxychains-ng/install.proxychains-ng -------------------------------------------------------------------------------- /src/proxychains-ng/proxychains.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/proxychains-ng/proxychains.conf -------------------------------------------------------------------------------- /src/rRTSPServer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/.gitignore -------------------------------------------------------------------------------- /src/rRTSPServer/Makefile.libhelix-aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/Makefile.libhelix-aac -------------------------------------------------------------------------------- /src/rRTSPServer/Makefile.rRTSPServer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/Makefile.rRTSPServer -------------------------------------------------------------------------------- /src/rRTSPServer/cleanup.rRTSPServer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/cleanup.rRTSPServer -------------------------------------------------------------------------------- /src/rRTSPServer/compile.rRTSPServer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/compile.rRTSPServer -------------------------------------------------------------------------------- /src/rRTSPServer/friend.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/friend.patch -------------------------------------------------------------------------------- /src/rRTSPServer/include/ADTS2PCMFileSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/include/ADTS2PCMFileSink.hh -------------------------------------------------------------------------------- /src/rRTSPServer/include/ADTSAudioFileServerMediaSubsession_BC.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/include/ADTSAudioFileServerMediaSubsession_BC.hh -------------------------------------------------------------------------------- /src/rRTSPServer/include/ADTSAudioFramedMemoryServerMediaSubsession.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/include/ADTSAudioFramedMemoryServerMediaSubsession.hh -------------------------------------------------------------------------------- /src/rRTSPServer/include/AudioFramedMemorySource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/include/AudioFramedMemorySource.hh -------------------------------------------------------------------------------- /src/rRTSPServer/include/FileServerMediaSubsession_BC.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/include/FileServerMediaSubsession_BC.hh -------------------------------------------------------------------------------- /src/rRTSPServer/include/H264VideoFramedMemoryServerMediaSubsession.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/include/H264VideoFramedMemoryServerMediaSubsession.hh -------------------------------------------------------------------------------- /src/rRTSPServer/include/H265VideoFramedMemoryServerMediaSubsession.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/include/H265VideoFramedMemoryServerMediaSubsession.hh -------------------------------------------------------------------------------- /src/rRTSPServer/include/OnDemandServerMediaSubsession_BC.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/include/OnDemandServerMediaSubsession_BC.hh -------------------------------------------------------------------------------- /src/rRTSPServer/include/PCMAudioFileServerMediaSubsession_BC.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/include/PCMAudioFileServerMediaSubsession_BC.hh -------------------------------------------------------------------------------- /src/rRTSPServer/include/PCMFileSink.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/include/PCMFileSink.hh -------------------------------------------------------------------------------- /src/rRTSPServer/include/Speaker.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/include/Speaker.hh -------------------------------------------------------------------------------- /src/rRTSPServer/include/VideoFramedMemorySource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/include/VideoFramedMemorySource.hh -------------------------------------------------------------------------------- /src/rRTSPServer/include/WAVAudioFifoServerMediaSubsession.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/include/WAVAudioFifoServerMediaSubsession.hh -------------------------------------------------------------------------------- /src/rRTSPServer/include/WAVAudioFifoSource.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/include/WAVAudioFifoSource.hh -------------------------------------------------------------------------------- /src/rRTSPServer/include/aLawAudioFilter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/include/aLawAudioFilter.hh -------------------------------------------------------------------------------- /src/rRTSPServer/include/rRTSPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/include/rRTSPServer.h -------------------------------------------------------------------------------- /src/rRTSPServer/init.rRTSPServer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/init.rRTSPServer -------------------------------------------------------------------------------- /src/rRTSPServer/install.rRTSPServer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/install.rRTSPServer -------------------------------------------------------------------------------- /src/rRTSPServer/not-arduino.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/not-arduino.patch -------------------------------------------------------------------------------- /src/rRTSPServer/qemutest.rRTSPServer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/qemutest.rRTSPServer -------------------------------------------------------------------------------- /src/rRTSPServer/rRTSPServer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/rRTSPServer.patch -------------------------------------------------------------------------------- /src/rRTSPServer/remove-mangling.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/remove-mangling.patch -------------------------------------------------------------------------------- /src/rRTSPServer/src/ADTS2PCMFileSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/src/ADTS2PCMFileSink.cpp -------------------------------------------------------------------------------- /src/rRTSPServer/src/ADTSAudioFileServerMediaSubsession_BC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/src/ADTSAudioFileServerMediaSubsession_BC.cpp -------------------------------------------------------------------------------- /src/rRTSPServer/src/ADTSAudioFramedMemoryServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/src/ADTSAudioFramedMemoryServerMediaSubsession.cpp -------------------------------------------------------------------------------- /src/rRTSPServer/src/AudioFramedMemorySource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/src/AudioFramedMemorySource.cpp -------------------------------------------------------------------------------- /src/rRTSPServer/src/FileServerMediaSubsession_BC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/src/FileServerMediaSubsession_BC.cpp -------------------------------------------------------------------------------- /src/rRTSPServer/src/H264VideoFramedMemoryServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/src/H264VideoFramedMemoryServerMediaSubsession.cpp -------------------------------------------------------------------------------- /src/rRTSPServer/src/H265VideoFramedMemoryServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/src/H265VideoFramedMemoryServerMediaSubsession.cpp -------------------------------------------------------------------------------- /src/rRTSPServer/src/OnDemandServerMediaSubsession_BC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/src/OnDemandServerMediaSubsession_BC.cpp -------------------------------------------------------------------------------- /src/rRTSPServer/src/PCMAudioFileServerMediaSubsession_BC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/src/PCMAudioFileServerMediaSubsession_BC.cpp -------------------------------------------------------------------------------- /src/rRTSPServer/src/PCMFileSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/src/PCMFileSink.cpp -------------------------------------------------------------------------------- /src/rRTSPServer/src/Speaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/src/Speaker.cpp -------------------------------------------------------------------------------- /src/rRTSPServer/src/VideoFramedMemorySource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/src/VideoFramedMemorySource.cpp -------------------------------------------------------------------------------- /src/rRTSPServer/src/WAVAudioFifoServerMediaSubsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/src/WAVAudioFifoServerMediaSubsession.cpp -------------------------------------------------------------------------------- /src/rRTSPServer/src/WAVAudioFifoSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/src/WAVAudioFifoSource.cpp -------------------------------------------------------------------------------- /src/rRTSPServer/src/aLawAudioFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/src/aLawAudioFilter.cpp -------------------------------------------------------------------------------- /src/rRTSPServer/src/rRTSPServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rRTSPServer/src/rRTSPServer.cpp -------------------------------------------------------------------------------- /src/rtsp_server_yi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rtsp_server_yi/.gitignore -------------------------------------------------------------------------------- /src/rtsp_server_yi/Makefile.rtsp_server_yi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rtsp_server_yi/Makefile.rtsp_server_yi -------------------------------------------------------------------------------- /src/rtsp_server_yi/cleanup.rtsp_server_yi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rtsp_server_yi/cleanup.rtsp_server_yi -------------------------------------------------------------------------------- /src/rtsp_server_yi/compile.rtsp_server_yi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rtsp_server_yi/compile.rtsp_server_yi -------------------------------------------------------------------------------- /src/rtsp_server_yi/init.rtsp_server_yi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rtsp_server_yi/init.rtsp_server_yi -------------------------------------------------------------------------------- /src/rtsp_server_yi/install.rtsp_server_yi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/rtsp_server_yi/install.rtsp_server_yi -------------------------------------------------------------------------------- /src/set_tz_offset/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/set_tz_offset/.gitignore -------------------------------------------------------------------------------- /src/set_tz_offset/cleanup.set_tz_offset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/set_tz_offset/cleanup.set_tz_offset -------------------------------------------------------------------------------- /src/set_tz_offset/compile.set_tz_offset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/set_tz_offset/compile.set_tz_offset -------------------------------------------------------------------------------- /src/set_tz_offset/init.set_tz_offset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/set_tz_offset/init.set_tz_offset -------------------------------------------------------------------------------- /src/set_tz_offset/install.set_tz_offset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/set_tz_offset/install.set_tz_offset -------------------------------------------------------------------------------- /src/set_tz_offset/set_tz_offset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/set_tz_offset/set_tz_offset/Makefile -------------------------------------------------------------------------------- /src/set_tz_offset/set_tz_offset/set_tz_offset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/set_tz_offset/set_tz_offset/set_tz_offset.c -------------------------------------------------------------------------------- /src/set_tz_offset/set_tz_offset/set_tz_offset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/set_tz_offset/set_tz_offset/set_tz_offset.h -------------------------------------------------------------------------------- /src/sftp-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/sftp-server/.gitignore -------------------------------------------------------------------------------- /src/sftp-server/cleanup.sftp-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/sftp-server/cleanup.sftp-server -------------------------------------------------------------------------------- /src/sftp-server/compile.sftp-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/sftp-server/compile.sftp-server -------------------------------------------------------------------------------- /src/sftp-server/init.sftp-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/sftp-server/init.sftp-server -------------------------------------------------------------------------------- /src/sftp-server/install.sftp-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/sftp-server/install.sftp-server -------------------------------------------------------------------------------- /src/sftp-server/qemutest.sftp-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/sftp-server/qemutest.sftp-server -------------------------------------------------------------------------------- /src/snapshot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/.gitignore -------------------------------------------------------------------------------- /src/snapshot/cleanup.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/cleanup.snapshot -------------------------------------------------------------------------------- /src/snapshot/compile.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/compile.snapshot -------------------------------------------------------------------------------- /src/snapshot/init.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/init.snapshot -------------------------------------------------------------------------------- /src/snapshot/install.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/install.snapshot -------------------------------------------------------------------------------- /src/snapshot/snapshot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/Makefile -------------------------------------------------------------------------------- /src/snapshot/snapshot/add_water.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/add_water.c -------------------------------------------------------------------------------- /src/snapshot/snapshot/add_water.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/add_water.h -------------------------------------------------------------------------------- /src/snapshot/snapshot/arm-openwrt-linux-toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/arm-openwrt-linux-toolchain.cmake -------------------------------------------------------------------------------- /src/snapshot/snapshot/convert2jpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/convert2jpg.c -------------------------------------------------------------------------------- /src/snapshot/snapshot/convert2jpg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/convert2jpg.h -------------------------------------------------------------------------------- /src/snapshot/snapshot/imggrabber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/imggrabber.c -------------------------------------------------------------------------------- /src/snapshot/snapshot/water_mark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/water_mark.c -------------------------------------------------------------------------------- /src/snapshot/snapshot/water_mark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/water_mark.h -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/high/wm_540p_0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/high/wm_540p_0.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/high/wm_540p_1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/high/wm_540p_1.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/high/wm_540p_10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/high/wm_540p_10.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/high/wm_540p_11.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/high/wm_540p_11.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/high/wm_540p_12.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/high/wm_540p_12.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/high/wm_540p_2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/high/wm_540p_2.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/high/wm_540p_3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/high/wm_540p_3.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/high/wm_540p_4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/high/wm_540p_4.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/high/wm_540p_5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/high/wm_540p_5.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/high/wm_540p_6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/high/wm_540p_6.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/high/wm_540p_7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/high/wm_540p_7.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/high/wm_540p_8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/high/wm_540p_8.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/high/wm_540p_9.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/high/wm_540p_9.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/low/wm_540p_0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/low/wm_540p_0.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/low/wm_540p_1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/low/wm_540p_1.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/low/wm_540p_10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/low/wm_540p_10.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/low/wm_540p_11.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/low/wm_540p_11.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/low/wm_540p_12.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/low/wm_540p_12.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/low/wm_540p_2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/low/wm_540p_2.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/low/wm_540p_3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/low/wm_540p_3.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/low/wm_540p_4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/low/wm_540p_4.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/low/wm_540p_5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/low/wm_540p_5.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/low/wm_540p_6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/low/wm_540p_6.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/low/wm_540p_7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/low/wm_540p_7.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/low/wm_540p_8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/low/wm_540p_8.bmp -------------------------------------------------------------------------------- /src/snapshot/snapshot/wm_res/low/wm_540p_9.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/snapshot/snapshot/wm_res/low/wm_540p_9.bmp -------------------------------------------------------------------------------- /src/speaker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/speaker/.gitignore -------------------------------------------------------------------------------- /src/speaker/cleanup.speaker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/speaker/cleanup.speaker -------------------------------------------------------------------------------- /src/speaker/compile.speaker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/speaker/compile.speaker -------------------------------------------------------------------------------- /src/speaker/init.speaker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/speaker/init.speaker -------------------------------------------------------------------------------- /src/speaker/install.speaker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/speaker/install.speaker -------------------------------------------------------------------------------- /src/speaker/speaker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/speaker/speaker/Makefile -------------------------------------------------------------------------------- /src/speaker/speaker/speaker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/speaker/speaker/speaker.c -------------------------------------------------------------------------------- /src/static/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/.gitignore -------------------------------------------------------------------------------- /src/static/cleanup.static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/cleanup.static -------------------------------------------------------------------------------- /src/static/compile.static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/compile.static -------------------------------------------------------------------------------- /src/static/init.static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/init.static -------------------------------------------------------------------------------- /src/static/install.static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/install.static -------------------------------------------------------------------------------- /src/static/static/yi-hack/bin/cloudAPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/bin/cloudAPI -------------------------------------------------------------------------------- /src/static/static/yi-hack/bin/cloudAPI_fake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/bin/cloudAPI_fake -------------------------------------------------------------------------------- /src/static/static/yi-hack/etc/camera.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/etc/camera.conf -------------------------------------------------------------------------------- /src/static/static/yi-hack/etc/fallback.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/etc/fallback.jpg -------------------------------------------------------------------------------- /src/static/static/yi-hack/etc/mqtt_advertise.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/etc/mqtt_advertise.conf -------------------------------------------------------------------------------- /src/static/static/yi-hack/etc/mqttv4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/etc/mqttv4.conf -------------------------------------------------------------------------------- /src/static/static/yi-hack/etc/ptz_presets.conf: -------------------------------------------------------------------------------- 1 | 0= 2 | 1= 3 | 2= 4 | 3= 5 | 4= 6 | 5= 7 | 6= 8 | 7= 9 | -------------------------------------------------------------------------------- /src/static/static/yi-hack/etc/system.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/etc/system.conf -------------------------------------------------------------------------------- /src/static/static/yi-hack/script/blacklist/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/script/blacklist/ip -------------------------------------------------------------------------------- /src/static/static/yi-hack/script/blacklist/url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/script/blacklist/url -------------------------------------------------------------------------------- /src/static/static/yi-hack/script/check_conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/script/check_conf.sh -------------------------------------------------------------------------------- /src/static/static/yi-hack/script/clean_records.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/script/clean_records.sh -------------------------------------------------------------------------------- /src/static/static/yi-hack/script/conf2mqtt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/script/conf2mqtt.sh -------------------------------------------------------------------------------- /src/static/static/yi-hack/script/configure_wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/script/configure_wifi.sh -------------------------------------------------------------------------------- /src/static/static/yi-hack/script/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/script/env.sh -------------------------------------------------------------------------------- /src/static/static/yi-hack/script/ethdhcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/script/ethdhcp.sh -------------------------------------------------------------------------------- /src/static/static/yi-hack/script/ftppush.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/script/ftppush.sh -------------------------------------------------------------------------------- /src/static/static/yi-hack/script/mqtt_advertise/check_conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/script/mqtt_advertise/check_conf.sh -------------------------------------------------------------------------------- /src/static/static/yi-hack/script/mqtt_advertise/mqtt_adv_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/script/mqtt_advertise/mqtt_adv_config.sh -------------------------------------------------------------------------------- /src/static/static/yi-hack/script/mqtt_advertise/mqtt_adv_homeassistant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/script/mqtt_advertise/mqtt_adv_homeassistant.sh -------------------------------------------------------------------------------- /src/static/static/yi-hack/script/mqtt_advertise/mqtt_adv_info_global.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/script/mqtt_advertise/mqtt_adv_info_global.sh -------------------------------------------------------------------------------- /src/static/static/yi-hack/script/mqtt_advertise/mqtt_adv_links.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/script/mqtt_advertise/mqtt_adv_links.sh -------------------------------------------------------------------------------- /src/static/static/yi-hack/script/mqtt_advertise/mqtt_adv_telemetry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/script/mqtt_advertise/mqtt_adv_telemetry.sh -------------------------------------------------------------------------------- /src/static/static/yi-hack/script/mqtt_advertise/mqtt_set_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/script/mqtt_advertise/mqtt_set_config.sh -------------------------------------------------------------------------------- /src/static/static/yi-hack/script/mqtt_advertise/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/script/mqtt_advertise/startup.sh -------------------------------------------------------------------------------- /src/static/static/yi-hack/script/ptz_presets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/script/ptz_presets.sh -------------------------------------------------------------------------------- /src/static/static/yi-hack/script/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/script/service.sh -------------------------------------------------------------------------------- /src/static/static/yi-hack/script/system.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/script/system.sh -------------------------------------------------------------------------------- /src/static/static/yi-hack/script/thumb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/script/thumb.sh -------------------------------------------------------------------------------- /src/static/static/yi-hack/script/time_lapse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/script/time_lapse.sh -------------------------------------------------------------------------------- /src/static/static/yi-hack/script/wd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/script/wd.sh -------------------------------------------------------------------------------- /src/static/static/yi-hack/script/wifidhcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/static/static/yi-hack/script/wifidhcp.sh -------------------------------------------------------------------------------- /src/www/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/.gitignore -------------------------------------------------------------------------------- /src/www/cleanup.www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/cleanup.www -------------------------------------------------------------------------------- /src/www/compile.www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/compile.www -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/camera_settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/camera_settings.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/eventsdir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/eventsdir.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/eventsdirdel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/eventsdirdel.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/eventsfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/eventsfile.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/eventsfiledel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/eventsfiledel.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/fw_upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/fw_upgrade.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/get_configs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/get_configs.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/getlastrecordedvideo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/getlastrecordedvideo.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/hostname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/hostname.js -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/links.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/links.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/load.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/preset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/preset.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/proxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/proxy.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/ptz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/ptz.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/reboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/reboot.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/record.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/record.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/reset.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/save.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/save.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/service.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/set_configs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/set_configs.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/snapshot.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/speak.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/speak.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/speaker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/speaker.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/speaker_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/speaker_file.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/status.json -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/timelapse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/timelapse.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/validate.sh -------------------------------------------------------------------------------- /src/www/httpd/cgi-bin/wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/cgi-bin/wifi.sh -------------------------------------------------------------------------------- /src/www/httpd/htdocs/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/css/all.css -------------------------------------------------------------------------------- /src/www/httpd/htdocs/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/css/custom.css -------------------------------------------------------------------------------- /src/www/httpd/htdocs/css/normalize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/css/normalize.min.css -------------------------------------------------------------------------------- /src/www/httpd/htdocs/css/skeleton.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/css/skeleton.min.css -------------------------------------------------------------------------------- /src/www/httpd/htdocs/img/arrow-up-bold-box-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/img/arrow-up-bold-box-outline.png -------------------------------------------------------------------------------- /src/www/httpd/htdocs/img/arrow-up-right-bold-box-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/img/arrow-up-right-bold-box-outline.png -------------------------------------------------------------------------------- /src/www/httpd/htdocs/img/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/img/home.png -------------------------------------------------------------------------------- /src/www/httpd/htdocs/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/img/icon.png -------------------------------------------------------------------------------- /src/www/httpd/htdocs/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/img/loading.gif -------------------------------------------------------------------------------- /src/www/httpd/htdocs/img/wlan_medium_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/img/wlan_medium_signal.png -------------------------------------------------------------------------------- /src/www/httpd/htdocs/img/wlan_no_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/img/wlan_no_signal.png -------------------------------------------------------------------------------- /src/www/httpd/htdocs/img/wlan_strong_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/img/wlan_strong_signal.png -------------------------------------------------------------------------------- /src/www/httpd/htdocs/img/wlan_weak_signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/img/wlan_weak_signal.png -------------------------------------------------------------------------------- /src/www/httpd/htdocs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/index.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/js/app.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/js/jquery.min.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/camera_settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/js/modules/camera_settings.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/configurations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/js/modules/configurations.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/configurations_onvif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/js/modules/configurations_onvif.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/eventsdir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/js/modules/eventsdir.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/eventsfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/js/modules/eventsfile.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/js/modules/global.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/maintenance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/js/modules/maintenance.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/mqtt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/js/modules/mqtt.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/mqtt_adv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/js/modules/mqtt_adv.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/js/modules/proxy.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/ptz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/js/modules/ptz.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/snapshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/js/modules/snapshot.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/speak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/js/modules/speak.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/static_ip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/js/modules/static_ip.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/js/modules/status.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/timelapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/js/modules/timelapse.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/modules/wifi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/js/modules/wifi.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/js/utils.js -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/camera_settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/pages/camera_settings.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/configurations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/pages/configurations.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/configurations_onvif.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/pages/configurations_onvif.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/eventsdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/pages/eventsdir.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/eventsfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/pages/eventsfile.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/maintenance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/pages/maintenance.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/mqtt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/pages/mqtt.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/mqtt_adv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/pages/mqtt_adv.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/proxy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/pages/proxy.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/ptz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/pages/ptz.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/snapshot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/pages/snapshot.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/speak.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/pages/speak.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/static_ip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/pages/static_ip.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/pages/status.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/timelapse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/pages/timelapse.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/tz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/pages/tz.html -------------------------------------------------------------------------------- /src/www/httpd/htdocs/pages/wifi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/htdocs/pages/wifi.html -------------------------------------------------------------------------------- /src/www/httpd/tools/remcomm.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/httpd/tools/remcomm.awk -------------------------------------------------------------------------------- /src/www/init.www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/init.www -------------------------------------------------------------------------------- /src/www/install.www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/src/www/install.www -------------------------------------------------------------------------------- /sysroot/b091qp/lower_half_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sysroot/b091qp/lower_half_init.sh -------------------------------------------------------------------------------- /sysroot/b091qp/yi-hack/fw_upgrade_in_progress: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/h30ga/lower_half_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sysroot/h30ga/lower_half_init.sh -------------------------------------------------------------------------------- /sysroot/h30ga/yi-hack/fw_upgrade_in_progress: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/h51ga/lower_half_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sysroot/h51ga/lower_half_init.sh -------------------------------------------------------------------------------- /sysroot/h51ga/yi-hack/fw_upgrade_in_progress: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/h52ga/lower_half_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sysroot/h52ga/lower_half_init.sh -------------------------------------------------------------------------------- /sysroot/h52ga/yi-hack/fw_upgrade_in_progress: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/h60ga/lower_half_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sysroot/h60ga/lower_half_init.sh -------------------------------------------------------------------------------- /sysroot/h60ga/yi-hack/fw_upgrade_in_progress: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/q321br_lsx/lower_half_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sysroot/q321br_lsx/lower_half_init.sh -------------------------------------------------------------------------------- /sysroot/q321br_lsx/yi-hack/fw_upgrade_in_progress: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/q705br/lower_half_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sysroot/q705br/lower_half_init.sh -------------------------------------------------------------------------------- /sysroot/q705br/yi-hack/fw_upgrade_in_progress: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/qg311r/lower_half_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sysroot/qg311r/lower_half_init.sh -------------------------------------------------------------------------------- /sysroot/qg311r/yi-hack/fw_upgrade_in_progress: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/r30gb/lower_half_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sysroot/r30gb/lower_half_init.sh -------------------------------------------------------------------------------- /sysroot/r30gb/yi-hack/fw_upgrade_in_progress: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/r35gb/lower_half_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sysroot/r35gb/lower_half_init.sh -------------------------------------------------------------------------------- /sysroot/r35gb/yi-hack/fw_upgrade_in_progress: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/r37gb/lower_half_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sysroot/r37gb/lower_half_init.sh -------------------------------------------------------------------------------- /sysroot/r37gb/yi-hack/fw_upgrade_in_progress: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/r40ga/lower_half_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sysroot/r40ga/lower_half_init.sh -------------------------------------------------------------------------------- /sysroot/r40ga/yi-hack/fw_upgrade_in_progress: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/y211ba/lower_half_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sysroot/y211ba/lower_half_init.sh -------------------------------------------------------------------------------- /sysroot/y211ba/yi-hack/fw_upgrade_in_progress: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/y211ga/lower_half_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sysroot/y211ga/lower_half_init.sh -------------------------------------------------------------------------------- /sysroot/y211ga/yi-hack/fw_upgrade_in_progress: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/y213ga/lower_half_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sysroot/y213ga/lower_half_init.sh -------------------------------------------------------------------------------- /sysroot/y213ga/yi-hack/fw_upgrade_in_progress: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/y21ga/lower_half_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sysroot/y21ga/lower_half_init.sh -------------------------------------------------------------------------------- /sysroot/y21ga/yi-hack/fw_upgrade_in_progress: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/y28ga/lower_half_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sysroot/y28ga/lower_half_init.sh -------------------------------------------------------------------------------- /sysroot/y28ga/yi-hack/fw_upgrade_in_progress: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/y291ga/lower_half_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sysroot/y291ga/lower_half_init.sh -------------------------------------------------------------------------------- /sysroot/y291ga/yi-hack/fw_upgrade_in_progress: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/y29ga/lower_half_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sysroot/y29ga/lower_half_init.sh -------------------------------------------------------------------------------- /sysroot/y29ga/yi-hack/fw_upgrade_in_progress: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysroot/y623/lower_half_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/sysroot/y623/lower_half_init.sh -------------------------------------------------------------------------------- /sysroot/y623/yi-hack/fw_upgrade_in_progress: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unbrick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/README.md -------------------------------------------------------------------------------- /unbrick/b091qp/filename: -------------------------------------------------------------------------------- 1 | b091qp 2 | -------------------------------------------------------------------------------- /unbrick/b091qp/mtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/b091qp/mtd.txt -------------------------------------------------------------------------------- /unbrick/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/build.bat -------------------------------------------------------------------------------- /unbrick/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/build.sh -------------------------------------------------------------------------------- /unbrick/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/clean.bat -------------------------------------------------------------------------------- /unbrick/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/clean.sh -------------------------------------------------------------------------------- /unbrick/create.jffs2: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ./mkfs.jffs2 -l --pad=$1 -e 4KiB -r $2 -o $3 4 | -------------------------------------------------------------------------------- /unbrick/gzip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/gzip.exe -------------------------------------------------------------------------------- /unbrick/h30ga/filename: -------------------------------------------------------------------------------- 1 | h30ga 2 | -------------------------------------------------------------------------------- /unbrick/h30ga/mtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/h30ga/mtd.txt -------------------------------------------------------------------------------- /unbrick/h51ga/filename: -------------------------------------------------------------------------------- 1 | h51ga 2 | -------------------------------------------------------------------------------- /unbrick/h51ga/mtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/h51ga/mtd.txt -------------------------------------------------------------------------------- /unbrick/h52ga/filename: -------------------------------------------------------------------------------- 1 | h52ga 2 | -------------------------------------------------------------------------------- /unbrick/h52ga/mtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/h52ga/mtd.txt -------------------------------------------------------------------------------- /unbrick/h60ga/filename: -------------------------------------------------------------------------------- 1 | h60ga 2 | -------------------------------------------------------------------------------- /unbrick/h60ga/mtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/h60ga/mtd.txt -------------------------------------------------------------------------------- /unbrick/mkfs.jffs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/mkfs.jffs2 -------------------------------------------------------------------------------- /unbrick/mkimage.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/mkimage.exe -------------------------------------------------------------------------------- /unbrick/mount.jffs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/mount.jffs2 -------------------------------------------------------------------------------- /unbrick/q321br_lsx/filename: -------------------------------------------------------------------------------- 1 | q321br_lsx 2 | -------------------------------------------------------------------------------- /unbrick/q321br_lsx/mtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/q321br_lsx/mtd.txt -------------------------------------------------------------------------------- /unbrick/q705br/filename: -------------------------------------------------------------------------------- 1 | q705br 2 | -------------------------------------------------------------------------------- /unbrick/q705br/mtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/q705br/mtd.txt -------------------------------------------------------------------------------- /unbrick/qg311r/filename: -------------------------------------------------------------------------------- 1 | qg311r 2 | -------------------------------------------------------------------------------- /unbrick/qg311r/mtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/qg311r/mtd.txt -------------------------------------------------------------------------------- /unbrick/r30gb/filename: -------------------------------------------------------------------------------- 1 | r30gb 2 | -------------------------------------------------------------------------------- /unbrick/r30gb/mtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/r30gb/mtd.txt -------------------------------------------------------------------------------- /unbrick/r35gb/filename: -------------------------------------------------------------------------------- 1 | r35gb 2 | -------------------------------------------------------------------------------- /unbrick/r35gb/mtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/r35gb/mtd.txt -------------------------------------------------------------------------------- /unbrick/r37gb/filename: -------------------------------------------------------------------------------- 1 | r37gb 2 | -------------------------------------------------------------------------------- /unbrick/r37gb/mtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/r37gb/mtd.txt -------------------------------------------------------------------------------- /unbrick/r40ga/filename: -------------------------------------------------------------------------------- 1 | r40ga 2 | -------------------------------------------------------------------------------- /unbrick/r40ga/mtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/r40ga/mtd.txt -------------------------------------------------------------------------------- /unbrick/y211ba/filename: -------------------------------------------------------------------------------- 1 | y211ba 2 | -------------------------------------------------------------------------------- /unbrick/y211ba/mtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/y211ba/mtd.txt -------------------------------------------------------------------------------- /unbrick/y211ga/filename: -------------------------------------------------------------------------------- 1 | y211ga 2 | -------------------------------------------------------------------------------- /unbrick/y211ga/mtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/y211ga/mtd.txt -------------------------------------------------------------------------------- /unbrick/y213ga/filename: -------------------------------------------------------------------------------- 1 | y213ga 2 | -------------------------------------------------------------------------------- /unbrick/y213ga/mtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/y213ga/mtd.txt -------------------------------------------------------------------------------- /unbrick/y21ga/filename: -------------------------------------------------------------------------------- 1 | y21ga 2 | -------------------------------------------------------------------------------- /unbrick/y21ga/mtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/y21ga/mtd.txt -------------------------------------------------------------------------------- /unbrick/y28ga/filename: -------------------------------------------------------------------------------- 1 | y28ga 2 | -------------------------------------------------------------------------------- /unbrick/y28ga/mtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/y28ga/mtd.txt -------------------------------------------------------------------------------- /unbrick/y291ga/filename: -------------------------------------------------------------------------------- 1 | y291ga 2 | -------------------------------------------------------------------------------- /unbrick/y291ga/mtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/y291ga/mtd.txt -------------------------------------------------------------------------------- /unbrick/y29ga/filename: -------------------------------------------------------------------------------- 1 | y29ga 2 | -------------------------------------------------------------------------------- /unbrick/y29ga/mtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/y29ga/mtd.txt -------------------------------------------------------------------------------- /unbrick/y623/filename: -------------------------------------------------------------------------------- 1 | y623 2 | -------------------------------------------------------------------------------- /unbrick/y623/mtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roleoroleo/yi-hack-Allwinner-v2/HEAD/unbrick/y623/mtd.txt --------------------------------------------------------------------------------