diff --git a/README.md b/README.md index bcdda1d..45b565d 100644 --- a/README.md +++ b/README.md @@ -184,6 +184,7 @@ __WARNING__: If using the wyze app to view the live stream, viewing in "HD" or ## Latest Updates +* 05-01-22: Removed dropbearmulti, replaced with individual binaries. dropbear dbclient dropbearkey dropbearconvert scp now included. * 04-30-22: Recompiled uClibc with LD_DEBUG enabled. Enable in v3_post.sh, for debugging. * 04-30-22: Move built-in kernel stuff to modules, usb_direct kernel no longer needed, modules now included. Added usb-storage support for usb hdd/ssd/flash drive, cifs support, and rndis support for tethering camera directly to a mobile device. * 04-26-22: Add customization of PATH via hook in v3_init.sh, and add audioplay_t31 binary for playing audio files before iCamera loads. diff --git a/SD_ROOT/wz_mini/bin/dbclient b/SD_ROOT/wz_mini/bin/dbclient new file mode 100755 index 0000000..e50d997 Binary files /dev/null and b/SD_ROOT/wz_mini/bin/dbclient differ diff --git a/SD_ROOT/wz_mini/bin/dropbear b/SD_ROOT/wz_mini/bin/dropbear new file mode 100755 index 0000000..a0a17bf Binary files /dev/null and b/SD_ROOT/wz_mini/bin/dropbear differ diff --git a/SD_ROOT/wz_mini/bin/dropbearconvert b/SD_ROOT/wz_mini/bin/dropbearconvert new file mode 100755 index 0000000..c81b1d8 Binary files /dev/null and b/SD_ROOT/wz_mini/bin/dropbearconvert differ diff --git a/SD_ROOT/wz_mini/bin/dropbearkey b/SD_ROOT/wz_mini/bin/dropbearkey new file mode 100755 index 0000000..c07ca20 Binary files /dev/null and b/SD_ROOT/wz_mini/bin/dropbearkey differ diff --git a/SD_ROOT/wz_mini/bin/dropbearmulti b/SD_ROOT/wz_mini/bin/dropbearmulti deleted file mode 100644 index 81e614e..0000000 Binary files a/SD_ROOT/wz_mini/bin/dropbearmulti and /dev/null differ diff --git a/SD_ROOT/wz_mini/bin/scp b/SD_ROOT/wz_mini/bin/scp new file mode 100755 index 0000000..548e41e Binary files /dev/null and b/SD_ROOT/wz_mini/bin/scp differ diff --git a/SD_ROOT/wz_mini/etc/init.d/v3_init.sh b/SD_ROOT/wz_mini/etc/init.d/v3_init.sh index 855b6ed..ccbae73 100755 --- a/SD_ROOT/wz_mini/etc/init.d/v3_init.sh +++ b/SD_ROOT/wz_mini/etc/init.d/v3_init.sh @@ -104,7 +104,7 @@ else fi echo "Run dropbear ssh server" -/opt/wz_mini/bin/dropbearmulti dropbear -R -s -g +/opt/wz_mini/bin/dropbear -R -s -g if [[ $(cat /opt/wz_mini/run_mmc.sh | grep "DEBUG_ENABLED\=") == "DEBUG_ENABLED\=\"true\"" ]]; then sed -i '/app_init.sh/,+3d' /opt/wz_mini/tmp/.storage/rcS diff --git a/SD_ROOT/wz_mini/run_mmc.sh b/SD_ROOT/wz_mini/run_mmc.sh index a28fd30..a656138 100755 --- a/SD_ROOT/wz_mini/run_mmc.sh +++ b/SD_ROOT/wz_mini/run_mmc.sh @@ -2,8 +2,6 @@ set -x -DISABLE_FW_UPGRADE="false" - HOSTNAME="WCV3" #####NETWORKING##### @@ -13,6 +11,11 @@ ENABLE_USB_DIRECT="false" USB_DIRECT_MAC_ADDR="02:01:02:03:04:08" ENABLE_USB_RNDIS="false" + +ENABLE_IPV6="false" + +ENABLE_WIREGUARD="false" + #####ACCESSORIES##### REMOTE_SPOTLIGHT="false" REMOTE_SPOTLIGHT_HOST="0.0.0.0" @@ -25,11 +28,10 @@ RTSP_PASSWORD="" RTSP_PORT="8554" #####GENERAL##### -ENABLE_IPV6="false" ENABLE_USB_STORAGE="false" -ENABLE_WIREGUARD="false" ENABLE_EXT4="false" ENABLE_CIFS="false" +DISABLE_FW_UPGRADE="false" #####DEBUG##### DEBUG_ENABLED="false"