| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636 |
- #!/bin/sh
- LOG_NAME=/opt/wz_mini/log/wz_user
- if [[ -e $LOG_NAME.log || -L $LOG_NAME.log ]] ; then
- i=0
- while [[ -e $LOG_NAME.log.$i || -L $LOG_NAME.log.$i ]] ; do
- let i++
- done
- mv $LOG_NAME.log $LOG_NAME.log.$i
- LOG_NAME=$LOG_NAME
- fi
- touch -- "$LOG_NAME".log
- exec 1> $LOG_NAME.log 2>&1
- set -x
- echo "welcome to wz_user.sh"
- echo "PID $$"
- if [[ -e /tmp/dbgflag ]];then
- echo "debug mode, disabled"
- exit 0
- fi
- export WZMINI_CFG=/opt/wz_mini/wz_mini.conf
- [ -f $WZMINI_CFG ] && source $WZMINI_CFG
- hostname_set() {
- echo "set hostname"
- hostname $CUSTOM_HOSTNAME
- }
- first_run_check() {
- if [ -e /opt/wz_mini/tmp/.wz_user_firstrun ]; then
- echo "wz_user.sh already run once, exit."
- exit 0
- fi
- }
- store_mac() {
- echo "store original mac"
- cat /sys/class/net/wlan0/address | tr '[:lower:]' '[:upper:]' > /opt/wz_mini/tmp/wlan0_mac
- }
- wait_wlan() {
- ##Check if the driver has been loaded for the onboard wlan0, store the MAC.
- while true
- do
- if ifconfig wlan0 | grep "HWaddr"; then
- store_mac
- break
- elif ifconfig wlan0 | grep "HWaddr" && [[ "$ENABLE_USB_ETH" == "true" || "$ENABLE_USB_DIRECT" == "true" ]]; then
- store_mac
- break
- fi
- echo " wlan0 not ready yet..."
- sleep 5
- done
- }
- rename_interface() {
- ##Fool iCamera by renaming the hardline interface to wlan0
- echo "renaming interfaces"
- ifconfig $1 down
- ifconfig wlan0 down
- /opt/wz_mini/bin/busybox ip link set wlan0 name wlanold
- /opt/wz_mini/bin/busybox ip addr flush dev wlanold
- /opt/wz_mini/bin/busybox ip link set $1 name wlan0
- eth_wlan_up
- }
- rename_interface_and_setup_bonding() {
- ##Fool iCamera by renaming the hardline interface to wlan0
- ## $1 Bonding Interface, $2 Primary Interface, $3 Secondary Interface
- bonding_interface=$1
- primary_interface=$2
- secondary_interface=$3
- echo "renaming interfaces"
- # Bring all interfaces down
- ifconfig $bonding_interface down
- ifconfig $primary_interface down
- ifconfig $secondary_interface down
- # Have to bring bonding interface up to be able to bond our slaves.
- /opt/wz_mini/bin/busybox ip link set $bonding_interface up
- # Rename the real wlan0 interface if needed/used
- if [[ "$primary_interface" == "wlan0" ]]; then
- /opt/wz_mini/bin/busybox ip link set $primary_interface name wlanold
- /opt/wz_mini/bin/busybox ip addr flush dev wlanold
- primary_interface="wlanold"
- # Because we just changed the name of the primary interface, we need to
- # tell the bonding driver about the name change as well.
- echo "$primary_interface" > /sys/devices/virtual/net/$bonding_interface/bonding/primary
- fi
- if [[ "$secondary_interface" == "wlan0" ]]; then
- /opt/wz_mini/bin/busybox ip link set $secondary_interface name wlanold
- /opt/wz_mini/bin/busybox ip addr flush dev wlanold
- secondary_interface="wlanold"
- fi
- # Enslave the Ethernet and Original Wifi interfaces
- # under the bonding interface.
- /opt/wz_mini/tmp/.bin/ifenslave $bonding_interface $primary_interface $secondary_interface
- # Have to bring bonding interface down to be rename the interface
- /opt/wz_mini/bin/busybox ip link set $bonding_interface down
- # Name the bonding interface to be the "new" wlan0 interface
- /opt/wz_mini/bin/busybox ip link set $bonding_interface name wlan0
- # Bring the newly renamed wlan0 (actually the bond interface) back up
- eth_wlan_up
- }
- bonding_setup() {
- echo "bonding kernel module setup"
- if [[ "$BONDING_ENABLED" == "true" ]]; then
- if [[ "$BONDING_LINK_MONITORING_FREQ_MS" == "" ]]; then
- BONDING_LINK_MONITORING_FREQ_MS="100"
- fi
- if [[ "$BONDING_DOWN_DELAY_MS" == "" ]]; then
- BONDING_DOWN_DELAY_MS="5000"
- fi
- if [[ "$BONDING_UP_DELAY_MS" == "" ]]; then
- BONDING_UP_DELAY_MS="5000"
- fi
- if [[ "$BONDING_PRIMARY_INTERFACE" == "" ]]; then
- BONDING_PRIMARY_INTERFACE="$1"
- fi
- if [[ "$BONDING_SECONDARY_INTERFACE" == "" ]]; then
- BONDING_SECONDARY_INTERFACE="$2"
- fi
- if [[ "$BONDING_FAIL_OVER_MAC" == "" ]]; then
- BONDING_FAIL_OVER_MAC="0"
- fi
- # Insert the bonding driver into the kernel
- insmod $KMOD_PATH/kernel/drivers/net/bonding/bonding.ko mode=active-backup miimon="$BONDING_LINK_MONITORING_FREQ_MS" downdelay="$BONDING_DOWN_DELAY_MS" updelay="$BONDING_UP_DELAY_MS" primary="$BONDING_PRIMARY_INTERFACE" fail_over_mac="$BONDING_FAIL_OVER_MAC"
- fi
- }
- eth_wlan_up() {
- ##Run DHCP client, and bind mount our fake wpa_cli.sh to fool iCamera
- ifconfig wlan0 up
- pkill udhcpc
- udhcpc -i wlan0 -x hostname:$CUSTOM_HOSTNAME -p /var/run/udhcpc.pid -b
- # If running with Interface Bonding enabled, kill any existing
- # wpa_supplicant that might be running and spawn our own instead
- if [[ "$BONDING_ENABLED" == "true" ]] && ([[ "$ENABLE_USB_ETH" == "true" ]] || [[ "$ENABLE_USB_DIRECT" == "true" ]]); then
- /opt/wz_mini/bin/busybox killall wpa_supplicant
- wpa_supplicant -D nl80211 -i wlanold -c /tmp/wpa_supplicant.conf -B -s
- fi
- if [ -f /opt/wz_mini/tmp/.T20 ]; then
- mount -o bind /opt/wz_mini/bin/wpa_cli.sh /system/bin/wpa_cli
- else
- mount -o bind /opt/wz_mini/bin/wpa_cli.sh /bin/wpa_cli
- fi
- break
- }
- wpa_check() {
- #Check if wpa_supplicant has been created by iCamera
- if [ -e /tmp/wpa_supplicant.conf ]; then
- wait_wlan
- echo "wpa_supplicant.conf ready"
- if ([[ "$ENABLE_USB_ETH" == "true" ]] || [[ "$ENABLE_USB_DIRECT" == "true" ]]); then
- wlanold_check $1
- fi
- else
- echo "wpa_supplicant.conf not ready, wait some time for creation."
- COUNT=0
- ATTEMPTS=15
- until [[ -e /tmp/wpa_supplicant.conf ]] || [[ $COUNT -eq $ATTEMPTS ]]; do
- echo -e "$(( COUNT++ ))... \c"
- sleep 5
- done
- if [[ $COUNT -eq $ATTEMPTS ]]; then
- echo "time exceeded waiting for iCamera, continue potentially broken condition without network."
- if ([[ "$ENABLE_USB_ETH" == "true" ]] || [[ "$ENABLE_USB_DIRECT" == "true" ]]); then
- wlanold_check $1
- fi
- fi
- fi
- }
- wlanold_check() {
- #Have we renamed interfaces yet?
- if [ -d /sys/class/net/wlanold ]; then
- echo "wlanold exist"
- eth_wlan_up
- else
- echo "wlanold doesn't exist"
- if [[ "$BONDING_ENABLED" == "true" ]] && ([[ "$ENABLE_USB_ETH" == "true" ]] || [[ "$ENABLE_USB_DIRECT" == "true" ]]); then
- rename_interface_and_setup_bonding bond0 "$BONDING_PRIMARY_INTERFACE" "$BONDING_SECONDARY_INTERFACE"
- else
- rename_interface $1
- fi
- fi
- }
- netloop() {
- ##While loop for check
- while true
- do
- wpa_check $1
- echo "wlan0 not ready yet..."
- sleep 5
- done
- }
- swap_enable() {
- if [ -e /opt/wz_mini/swap ]; then
- echo "Swap file exists"
- if cat /proc/swaps | grep "mini" ; then
- echo "Swap is already enabled"
- else
- echo "Enable swap"
- swapon /opt/wz_mini/swap
- fi
- else
- echo "Swap file missing!"
- fi
- }
- dmesg_log() {
- DMESG_LOG=/opt/wz_mini/log/dmesg
- if [[ -e $DMESG_LOG.log || -L $DMESG_LOG.log ]] ; then
- i=0
- while [[ -e $DMESG_LOG.log.$i || -L $DMESG_LOG.log.$i ]] ; do
- let i++
- done
- mv $DMESG_LOG.log $DMESG_LOG.log.$i
- DMESG_LOG=$DMESG_LOG
- fi
- touch -- "$DMESG_LOG".log
- dmesg > $DMESG_LOG.log 2>&1
- }
- trim_logs() {
- echo "Deleting logs older than 5 boots..."
- find /opt/wz_mini/log -name '*log*' | while read file; do
- [ "${file#/opt/wz_mini/log/*log.}" -gt 5 ] && rm -v "$file"
- done
- }
- first_run_check
- wpa_check
- #Set module dir depending on platform
- if [ -f /opt/wz_mini/tmp/.T20 ]; then
- KMOD_PATH="/opt/wz_mini/lib/modules/3.10.14"
- else
- KMOD_PATH="/opt/wz_mini/lib/modules/3.10.14__isvp_swan_1.0__"
- fi
- swap_enable
- if [[ "$ENABLE_IPV6" == "true" ]]; then
- echo "ipv6 enabled"
- else
- echo "ipv6 disabled"
- sysctl -w net.ipv6.conf.all.disable_ipv6=1
- fi
- if [[ "$ENABLE_NFSv4" == "true" ]]; then
- insmod $KMOD_PATH/kernel/lib/oid_registry.ko
- insmod $KMOD_PATH/kernel/net/dns_resolver/dns_resolver.ko
- insmod $KMOD_PATH/kernel/fs/nfs/nfsv4.ko
- insmod $KMOD_PATH/kernel/net/sunrpc/auth_gss/auth_rpcgss.ko
- echo nfsv4 enabled
- else
- echo nfsv4 disabled
- fi
- if [[ "$ENABLE_IPTABLES" == "true" ]]; then
- insmod $KMOD_PATH/kernel/net/netfilter/x_tables.ko
- insmod $KMOD_PATH/kernel/net/ipv4/netfilter/ip_tables.ko
- insmod $KMOD_PATH/kernel/net/ipv4/netfilter/ipt_REJECT.ko
- insmod $KMOD_PATH/kernel/net/ipv4/netfilter/iptable_filter.ko
- insmod $KMOD_PATH/kernel/net/ipv4/netfilter/iptable_mangle.ko
- echo "iptables ipv4 enabled"
- if [[ "$ENABLE_IPV6" == "true" ]]; then
- insmod $KMOD_PATH/kernel/net/ipv6/netfilter/ip6_tables.ko
- insmod $KMOD_PATH/kernel/net/ipv6/netfilter/ip6t_REJECT.ko
- insmod $KMOD_PATH/kernel/net/ipv6/netfilter/ip6table_filter.ko
- insmod $KMOD_PATH/kernel/net/ipv6/netfilter/ip6table_mangle.ko
- echo "iptables ipv6 enabled"
- fi
- else
- echo "iptables disabled"
- fi
- if [[ "$ENABLE_USB_ETH" == "true" ]]; then
- insmod $KMOD_PATH/kernel/drivers/net/usb/usbnet.ko
- # Auto-Detect an Ethernet Driver and load it
- if [[ "$ENABLE_USB_ETH_MODULE_AUTODETECT" == "true" ]]; then
- for DEVICE in `lsusb | awk '{print $6}'| tr '[:upper:]' '[:lower:]'`; do
- case $DEVICE in
- '077b:2226' | '0846:1040' | '2001:1a00' | '0b95:1720' | '07b8:420a' |\
- '08dd:90ff' | '0557:2009' | '0411:003d' | '0411:006e' | '6189:182d' |\
- '0df6:0056' | '07aa:0017' | '1189:0893' | '1631:6200' | '04f1:3008' |\
- '17ef:7203' | '0b95:772b' | '0b95:7720' | '0b95:1780' | '0789:0160' |\
- '13b1:0018' | '1557:7720' | '07d1:3c05' | '2001:3c05' | '2001:1a02' |\
- '1737:0039' | '04bb:0930' | '050d:5055' | '05ac:1402' | '0b95:772a' |\
- '14ea:ab11' | '0db0:a877' | '0b95:7e2b' | '0b95:172a' | '066b:20f9')
- echo "Loading ASIX Ethernet driver..."
- modprobe asix
- ;;
- '0b95:1790' | '0b95:178a' | '0df6:0072')
- echo "Loading AX88179 Gigabit Ethernet driver..."
- modprobe ax88179_178a
- ;;
- '1004:61aa' | '046d:c11f' | '1410:b001' | '1410:9010' | '413c:8195' |\
- '413c:8196' | '413c:819b' | '16d5:650a' | '12d1:14ac')
- echo "Loading USB CDC Ethernet driver..."
- modprobe cdc_ether
- ;;
- '0bda:8152')
- echo "Loading Realtek RTL8152 driver..."
- modprobe r8152
- ;;
- esac
- done
- fi
- # Manually load any other Ethernet Drivers if asked for
- if [[ "$ENABLE_USB_ETH_MODULE_MANUAL" != "" ]]; then
- for i in $(echo "$ENABLE_USB_ETH_MODULE_MANUAL" | tr "," "\n")
- do
- insmod $KMOD_PATH/kernel/drivers/net/usb/$i.ko
- done
- fi
- bonding_setup eth0 wlan0
- swap_enable
- netloop eth0
- else
- echo "USB Ethernet disabled"
- fi
- if [[ "$ENABLE_USB_DIRECT" == "true" ]]; then
- HOST_MACADDR=$(echo "$CUSTOM_HOSTNAME"|md5sum|sed 's/^\(..\)\(..\)\(..\)\(..\)\(..\).*$/02:\1:\2:\3:\4:\5/')
- if [ -f /opt/wz_mini/tmp/.T20 ]; then
- echo connect > /sys/devices/platform/jz-dwc2/dwc2/udc/dwc2/soft_connect
- sleep 1
- devmem 0x10000040 32 0x0b800096
- sleep 1
- devmem 0x13500000 32 0x001100cc
- else
- #Set dwc2 ID_PIN driver memory
- devmem 0x13500000 32 0x001100cc
- devmem 0x10000040 32 0x0b000096
- #wipe the bits to set the ID_PIN, only for the V3.
- devmem 0x10000040 32 0x0b000FFF
- fi
- insmod $KMOD_PATH/kernel/drivers/usb/gadget/libcomposite.ko
- if [ -f /opt/wz_mini/tmp/.T31 ]; then
- insmod /opt/wz_mini/lib/modules/3.10.14__isvp_swan_1.0__/kernel/drivers/usb/gadget/u_ether.ko
- insmod /opt/wz_mini/lib/modules/3.10.14__isvp_swan_1.0__/kernel/drivers/usb/gadget/usb_f_ncm.ko
- fi
- insmod $KMOD_PATH/kernel/drivers/usb/gadget/g_ncm.ko iManufacturer=wz_mini_ncm host_addr="$HOST_MACADDR" dev_addr="$USB_DIRECT_MAC_ADDR"
- sleep 1
- bonding_setup usb0 wlan0
- swap_enable
- #loop begin
- while true
- do
- wpa_check usb0
- echo "wlan0 not ready yet..."
- sleep 1
- done
- else
- echo "USB Direct disabled"
- fi
- if [[ "$ENABLE_USB_RNDIS" == "true" ]]; then
- if [[ "$ENABLE_USB_ETH" == "true" ]] || [[ "$ENABLE_USB_DIRECT" == "true" ]]; then
- echo "RNDIS is not compatible with ENABLE_USB_ETH or ENABLE_USB_DIRECT. Please enable only ENABLE_USB_RNDIS"
- else
- insmod $KMOD_PATH/kernel/drivers/net/usb/usbnet.ko
- insmod $KMOD_PATH/kernel/drivers/net/usb/cdc_ether.ko
- insmod $KMOD_PATH/kernel/drivers/net/usb/rndis_host.ko
- sleep 1
- swap_enable
- #loop begin
- while true
- do
- wpa_check usb0
- echo "wlan0 not ready yet..."
- sleep 1
- done
- fi
- else
- echo "usb rndis disabled"
- fi
- if [[ "$ENABLE_WIREGUARD" == "true" ]]; then
- insmod $KMOD_PATH/kernel/net/ipv4/tunnel4.ko
- insmod $KMOD_PATH/kernel/net/ipv4/ip_tunnel.ko
- insmod $KMOD_PATH/kernel/net/wireguard/wireguard.ko
- if [[ "$WIREGUARD_IPV4" != "" ]]; then
- if [ -d /opt/wz_mini/etc/wireguard ]; then
- echo "wireguard dir exists"
- else
- mkdir -p /opt/wz_mini/etc/wireguard
- fi
- if [ ! -f /opt/wz_mini/etc/wireguard/privatekey ]; then
- (umask 277 && /opt/wz_mini/bin/wg genkey | /opt/wz_mini/bin/busybox tee /opt/wz_mini/etc/wireguard/privatekey | /opt/wz_mini/bin/wg pubkey > /opt/wz_mini/etc/wireguard/publickey)
- fi
- /opt/wz_mini/bin/busybox ip link add dev wg0 type wireguard
- /opt/wz_mini/bin/busybox ip address add dev wg0 "$WIREGUARD_IPV4"
- /opt/wz_mini/bin/wg set wg0 private-key /opt/wz_mini/etc/wireguard/privatekey
- /opt/wz_mini/bin/busybox ip link set wg0 up
- fi
- if [[ "$WIREGUARD_PEER_PUBLIC_KEY" != "" ]] && [[ "$WIREGUARD_PEER_ALLOWED_IPS" != "" ]] && [[ "$WIREGUARD_PEER_ENDPOINT" != "" ]] && [[ "$WIREGUARD_PEER_KEEP_ALIVE" != "" ]]; then
- /opt/wz_mini/bin/wg set wg0 peer "$WIREGUARD_PEER_PUBLIC_KEY" allowed-ips "$WIREGUARD_PEER_ALLOWED_IPS" endpoint "$WIREGUARD_PEER_ENDPOINT" persistent-keepalive "$WIREGUARD_PEER_KEEP_ALIVE"
- /opt/wz_mini/bin/busybox ip route add "$WIREGUARD_PEER_ALLOWED_IPS" dev wg0
- fi
- else
- echo "wireguard disabled"
- fi
- if [[ "$ENABLE_CIFS" == "true" ]]; then
- insmod $KMOD_PATH/kernel/fs/cifs/cifs.ko
- else
- echo "cifs disabled"
- fi
- if [[ "$ENABLE_USB_STORAGE" == "true" ]]; then
- insmod $KMOD_PATH/kernel/drivers/scsi/scsi_mod.ko
- insmod $KMOD_PATH/kernel/drivers/scsi/sd_mod.ko
- insmod $KMOD_PATH/kernel/drivers/usb/storage/usb-storage.ko
- else
- echo "usb_storage disabled"
- fi
- if [[ "$ENABLE_EXT4" == "true" ]]; then
- if [ -f /opt/wz_mini/tmp/.T20 ]; then
- insmod $KMOD_PATH/kernel/lib/crc16.ko
- fi
- insmod $KMOD_PATH/kernel/fs/jbd2/jbd2.ko
- insmod $KMOD_PATH/kernel/fs/mbcache.ko
- insmod $KMOD_PATH/kernel/fs/ext4/ext4.ko
- else
- echo "ext4 disabled"
- fi
- if [[ "$DISABLE_FW_UPGRADE" == "true" ]]; then
- mkdir /tmp/Upgrade
- mount -t tmpfs -o size=1,nr_inodes=1 none /tmp/Upgrade
- #Setting this host causes iCamera to segfault, lets ignore it for now
- #echo -e "127.0.0.1 localhost \n127.0.0.1 wyze-upgrade-service.wyzecam.com" > /opt/wz_mini/tmp/.storage/hosts
- #mount --bind /opt/wz_mini/tmp/.storage/hosts /etc/hosts
- /opt/wz_mini/bin/busybox inotifyd /opt/wz_mini/usr/bin/watch_up.sh /tmp:n > /dev/null 2>&1 &
- else
- mkdir /tmp/Upgrade
- /opt/wz_mini/bin/busybox inotifyd /opt/wz_mini/usr/bin/watch_up.sh /tmp:n > /dev/null 2>&1 &
- fi
- if [[ "$REMOTE_SPOTLIGHT" == "true" ]]; then
- /opt/wz_mini/bin/socat pty,link=/dev/ttyUSB0,raw tcp:"$REMOTE_SPOTLIGHT_HOST":9000 &
- echo "remote accessory enabled"
- else
- echo "remote accessory disabled"
- fi
- if [[ "$ENABLE_MP4_WRITE" == "true" ]]; then
- if [ -f /opt/wz_mini/tmp/.T20 ]; then
- echo "mp4_write is not supported on T20"
- else
- /opt/wz_mini/bin/cmd mp4write on
- echo "mp4_write enabled"
- fi
- else
- echo "mp4 write disabled"
- fi
- if [[ "$RTSP_HI_RES_ENABLED" == "true" ]]; then
- if [ -f /opt/wz_mini/tmp/.T20 ]; then
- HI_VIDEO_DEV="/dev/video6"
- else
- HI_VIDEO_DEV="/dev/video1"
- fi
- swap_enable
- if [[ "$RTSP_PASSWORD" = "" ]]; then
- RTSP_PASSWORD=$(cat /opt/wz_mini/tmp/wlan0_mac)
- fi
- /opt/wz_mini/bin/cmd video 0 on
- if [[ "$RTSP_HI_RES_ENABLE_AUDIO" == "true" ]]; then
- /opt/wz_mini/bin/cmd audio 0 on
- AUDIO_CH="-C 1"
- AUDIO_FMT="-a S16_LE"
- DEVICE1="$HI_VIDEO_DEV,hw:0,0"
- else
- DEVICE1="$HI_VIDEO_DEV"
- echo "rtsp audio disabled"
- fi
- else
- echo "rtsp disabled"
- fi
- if [[ "$RTSP_LOW_RES_ENABLED" == "true" ]]; then
- if [ -f /opt/wz_mini/tmp/.T20 ]; then
- LOW_VIDEO_DEV="/dev/video7"
- else
- LOW_VIDEO_DEV="/dev/video2"
- fi
- swap_enable
- /opt/wz_mini/bin/cmd video 1 on
- if [[ "$RTSP_PASSWORD" = "" ]]; then
- RTSP_PASSWORD=$(cat /opt/wz_mini/tmp/wlan0_mac)
- fi
- if [[ "$RTSP_LOW_RES_ENABLE_AUDIO" == "true" ]]; then
- /opt/wz_mini/bin/cmd audio 1 on
- AUDIO_CH="-C 1"
- AUDIO_FMT="-a S16_LE"
- DEVICE2="$LOW_VIDEO_DEV,hw:2,0"
- else
- DEVICE2="$LOW_VIDEO_DEV"
- echo "rtsp audio disabled"
- fi
- else
- echo "rtsp disabled"
- fi
- if [[ "$RTSP_LOW_RES_ENABLED" == "true" ]] || [[ "$RTSP_HI_RES_ENABLED" == "true" ]]; then
- echo "delay RTSP for iCamera"
- #This delay is required. Sometimes, if you start the rtsp server too soon, live view will break on the app.
- sleep 5
- LD_LIBRARY_PATH=/opt/wz_mini/lib /opt/wz_mini/bin/v4l2rtspserver $AUDIO_CH $AUDIO_FMT -F0 -U "$RTSP_LOGIN":"$RTSP_PASSWORD" -P "$RTSP_PORT" $DEVICE1 $DEVICE2 &
- sleep 1
- echo "Set imp variables via helper"
- /opt/wz_mini/usr/bin/imp_helper.sh > /dev/null 2>&1 &
- fi
- if ([[ "$RTSP_LOW_RES_ENABLED" == "true" ]] || [[ "$RTSP_HI_RES_ENABLED" == "true" ]]) && [[ "$RTMP_STREAM_ENABLED" == "true" ]] && ([[ "$RTSP_LOW_RES_ENABLE_AUDIO" == "true" ]] || [[ "$RTSP_HI_RES_ENABLE_AUDIO" == "true" ]]); then
- if [[ "$RTMP_STREAM_DISABLE_AUDIO" == "true" ]]; then
- RTMP_AUDIO="no_audio"
- fi
- echo "delay RTMP server"
- #Follow the delay from the RTSP server
- sleep 5
- /opt/wz_mini/bin/rtmp-stream.sh "$RMTP_STREAM_SERVICE" "$RTMP_AUDIO" &
- fi
- if [[ "$NIGHT_DROP_DISABLE" == "true" ]]; then
- touch /opt/wz_mini/tmp/.nd
- fi
- if [[ "$WEB_SERVER_ENABLED" == "true" ]]; then
- httpd -p 80 -h /opt/wz_mini/www
- fi
- hostname_set
- touch /opt/wz_mini/tmp/.wz_user_firstrun
- pkill -f dumpload #Kill dumpload so it won't waste cpu or ram gathering cores and uploading them when something crashes
- sysctl -w kernel.core_pattern='|/bin/false'
- dmesg_log
- trim_logs
- sync;echo 3 > /proc/sys/vm/drop_caches
- if [ -f "$CUSTOM_SCRIPT_PATH" ]; then
- echo "starting custom script"
- $CUSTOM_SCRIPT_PATH &
- else
- echo "no custom script configured in wz_mini.conf"
- fi
- echo "searching for custom scripts in /opt/wz_mini/etc/rc.local.d"
- if [ -d "${1:-/opt/wz_mini/etc/rc.local.d}" ] ; then
- for filename in $(find /opt/wz_mini/etc/rc.local.d/ -name "*.sh" | /opt/wz_mini/bin/busybox sort) ; do
- if [ -f "${filename}" ] && [ -x "${filename}" ]; then
- echo "running ${filename}"
- "${filename}" &
- fi
- done
- fi
- echo "finished executing custom scripts from /opt/wz_mini/etc/rc.local.d"
- echo "wz_user.sh done" > /dev/kmsg
|