add cootli camv0130

This commit is contained in:
cronyx
2024-01-24 22:42:25 +03:00
parent f83b59b517
commit 9ad39c5c5c
7 changed files with 205 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
#
Experimental system for building OpenIPC firmware for known devices
#

View File

@@ -0,0 +1,13 @@
#!/bin/sh
set_gpio() {
[ "$2" -eq 1 ] && gpio set $1 || gpio clear $1
sleep 1
}
if [ "$1" = "ssv6x5x-generic" ]; then
modprobe ssv6x5x
exit 0
fi
exit 1

View File

@@ -0,0 +1,19 @@
#!/bin/sh
#
# Perform basic settings on a known IP camera
#
#
# Inside IPC_GK7202V300_G4-WR-BL_S38 board from XM
#
# Set custom upgrade url
#
fw_setenv upgrade 'https://github.com/OpenIPC/builder/releases/download/latest/gk7202v300_lite_cootli_camv0103-nor.tgz'
#
#
# Set wlan device and credentials if need
#
fw_setenv wlandev ssv6x5x-generic
#fw_setenv wlanssid Router
#fw_setenv wlanpass 12345678
exit 0