mirror of
https://github.com/nikdoof/builder.git
synced 2025-12-13 15:42:20 +00:00
Merge branch 'master' of github2:OpenIPC/builder
This commit is contained in:
@@ -60,7 +60,6 @@ BR2_PACKAGE_DROPBEAR_OPENIPC=y
|
||||
# BR2_PACKAGE_IFUPDOWN_SCRIPTS is not set
|
||||
# BR2_PACKAGE_FDK_AAC_OPENIPC is not set
|
||||
BR2_PACKAGE_UBOOT_TOOLS=y
|
||||
BR2_PACKAGE_INGENIC_OPENSDK=y
|
||||
BR2_PACKAGE_INGENIC_OSDRV_T31=y
|
||||
BR2_PACKAGE_IPCTOOL=y
|
||||
BR2_PACKAGE_JSON_C=y
|
||||
@@ -115,6 +114,7 @@ BR2_PACKAGE_WIREGUARD_TOOLS=y
|
||||
# DEBUG
|
||||
# BR2_PACKAGE_INGENIC_PWM is not set
|
||||
# BR2_PACKAGE_LOGCAT_OPENIPC is not set
|
||||
# BR2_PACKAGE_INGENIC_DIAG_TOOLS is not set
|
||||
# BR2_PACKAGE_HOST_GDB is not set
|
||||
# BR2_PACKAGE_GDB is not set
|
||||
|
||||
|
||||
@@ -60,7 +60,6 @@ BR2_PACKAGE_DROPBEAR_OPENIPC=y
|
||||
# BR2_PACKAGE_IFUPDOWN_SCRIPTS is not set
|
||||
# BR2_PACKAGE_FDK_AAC_OPENIPC is not set
|
||||
BR2_PACKAGE_UBOOT_TOOLS=y
|
||||
BR2_PACKAGE_INGENIC_OPENSDK=y
|
||||
BR2_PACKAGE_INGENIC_OSDRV_T31=y
|
||||
BR2_PACKAGE_IPCTOOL=y
|
||||
BR2_PACKAGE_JSON_C=y
|
||||
@@ -115,6 +114,7 @@ BR2_PACKAGE_WIREGUARD_TOOLS=y
|
||||
# DEBUG
|
||||
# BR2_PACKAGE_INGENIC_PWM is not set
|
||||
# BR2_PACKAGE_LOGCAT_OPENIPC is not set
|
||||
# BR2_PACKAGE_INGENIC_DIAG_TOOLS is not set
|
||||
# BR2_PACKAGE_HOST_GDB is not set
|
||||
# BR2_PACKAGE_GDB is not set
|
||||
|
||||
|
||||
@@ -60,7 +60,6 @@ BR2_PACKAGE_DROPBEAR_OPENIPC=y
|
||||
# BR2_PACKAGE_IFUPDOWN_SCRIPTS is not set
|
||||
# BR2_PACKAGE_FDK_AAC_OPENIPC is not set
|
||||
BR2_PACKAGE_UBOOT_TOOLS=y
|
||||
BR2_PACKAGE_INGENIC_OPENSDK=y
|
||||
BR2_PACKAGE_INGENIC_OSDRV_T31=y
|
||||
BR2_PACKAGE_IPCTOOL=y
|
||||
BR2_PACKAGE_JSON_C=y
|
||||
@@ -114,6 +113,7 @@ BR2_PACKAGE_WIREGUARD_TOOLS=y
|
||||
# DEBUG
|
||||
# BR2_PACKAGE_INGENIC_PWM is not set
|
||||
# BR2_PACKAGE_LOGCAT_OPENIPC is not set
|
||||
# BR2_PACKAGE_INGENIC_DIAG_TOOLS is not set
|
||||
# BR2_PACKAGE_HOST_GDB is not set
|
||||
# BR2_PACKAGE_GDB is not set
|
||||
|
||||
|
||||
@@ -60,7 +60,6 @@ BR2_PACKAGE_DROPBEAR_OPENIPC=y
|
||||
# BR2_PACKAGE_IFUPDOWN_SCRIPTS is not set
|
||||
# BR2_PACKAGE_FDK_AAC_OPENIPC is not set
|
||||
BR2_PACKAGE_UBOOT_TOOLS=y
|
||||
BR2_PACKAGE_INGENIC_OPENSDK=y
|
||||
BR2_PACKAGE_INGENIC_OSDRV_T31=y
|
||||
BR2_PACKAGE_IPCTOOL=y
|
||||
BR2_PACKAGE_JSON_C=y
|
||||
@@ -83,7 +82,7 @@ BR2_PACKAGE_MBEDTLS_OPENIPC=y
|
||||
# BR2_PACKAGE_MBEDTLS_OPENIPC_COMPRESSION is not set
|
||||
BR2_PACKAGE_WEBUI=y
|
||||
# BR2_PACKAGE_MINI_SNMPD is not set
|
||||
# BR2_PACKAGE_MOTORS is not set
|
||||
BR2_PACKAGE_MOTORS=y
|
||||
BR2_PACKAGE_OPUS_OPENIPC=y
|
||||
BR2_PACKAGE_OPUS_OPENIPC_FIXED_POINT=y
|
||||
# BR2_PACKAGE_SSHPASS is not set
|
||||
@@ -113,8 +112,9 @@ BR2_PACKAGE_WIREGUARD_TOOLS=y
|
||||
# BR2_PACKAGE_ONVIF_SIMPLE_SERVER is not set
|
||||
|
||||
# DEBUG
|
||||
# BR2_PACKAGE_INGENIC_PWM is not set
|
||||
BR2_PACKAGE_INGENIC_PWM=y
|
||||
# BR2_PACKAGE_LOGCAT_OPENIPC is not set
|
||||
# BR2_PACKAGE_INGENIC_DIAG_TOOLS is not set
|
||||
# BR2_PACKAGE_HOST_GDB is not set
|
||||
# BR2_PACKAGE_GDB is not set
|
||||
|
||||
|
||||
23
devices/t31_lite_wansview-q5-2k/general/overlay/etc/wireless/sdio
Executable file
23
devices/t31_lite_wansview-q5-2k/general/overlay/etc/wireless/sdio
Executable file
@@ -0,0 +1,23 @@
|
||||
#!/bin/sh
|
||||
|
||||
set_gpio() {
|
||||
[ "$2" -eq 1 ] && gpio set $1 || gpio clear $1
|
||||
sleep 1
|
||||
}
|
||||
|
||||
set_mmc() {
|
||||
mmc=/sys/devices/platform/jzmmc_v1.2.$1/present
|
||||
[ "$(cat $mmc)" = "N" ] && echo "INSERT" > $mmc
|
||||
}
|
||||
|
||||
# Generic ATBM603X
|
||||
if [ "$1" = "atbm603x-generic" ]; then
|
||||
set_gpio 47 1
|
||||
set_mmc 1
|
||||
cp -f /usr/share/atbm60xx_conf/atbm_txpwer_dcxo_cfg.txt /tmp
|
||||
cp -f /usr/share/atbm60xx_conf/set_rate_power.txt /tmp
|
||||
modprobe atbm603x_wifi_sdio atbm_printk_mask=0
|
||||
exit 0
|
||||
fi
|
||||
|
||||
exit 1
|
||||
@@ -13,10 +13,11 @@ fw_setenv upgrade 'https://github.com/OpenIPC/builder/releases/download/latest/t
|
||||
cli -s .system.webAdmin disabled
|
||||
cli -s .system.staticDir /var/www/majestic
|
||||
cli -s .isp.blkCnt 1
|
||||
#cli -s .nightMode.enabled true
|
||||
#cli -s .nightMode.irCutPin1 58
|
||||
#cli -s .nightMode.irCutPin2 57
|
||||
#cli -s .nightMode.backlightPin ??
|
||||
cli -s .audio.speakerPin 7
|
||||
cli -s .nightMode.enabled true
|
||||
cli -s .nightMode.irCutPin1 58
|
||||
cli -s .nightMode.irCutPin2 57
|
||||
cli -s .nightMode.backlightPin 11
|
||||
cli -s .video0.codec h264
|
||||
#
|
||||
#
|
||||
|
||||
@@ -60,7 +60,6 @@ BR2_PACKAGE_DROPBEAR_OPENIPC=y
|
||||
# BR2_PACKAGE_IFUPDOWN_SCRIPTS is not set
|
||||
# BR2_PACKAGE_FDK_AAC_OPENIPC is not set
|
||||
BR2_PACKAGE_UBOOT_TOOLS=y
|
||||
BR2_PACKAGE_INGENIC_OPENSDK=y
|
||||
BR2_PACKAGE_INGENIC_OSDRV_T31=y
|
||||
BR2_PACKAGE_IPCTOOL=y
|
||||
BR2_PACKAGE_JSON_C=y
|
||||
@@ -115,6 +114,7 @@ BR2_PACKAGE_WIREGUARD_TOOLS=y
|
||||
# DEBUG
|
||||
# BR2_PACKAGE_INGENIC_PWM is not set
|
||||
# BR2_PACKAGE_LOGCAT_OPENIPC is not set
|
||||
# BR2_PACKAGE_INGENIC_DIAG_TOOLS is not set
|
||||
# BR2_PACKAGE_HOST_GDB is not set
|
||||
# BR2_PACKAGE_GDB is not set
|
||||
|
||||
|
||||
@@ -60,7 +60,6 @@ BR2_PACKAGE_DROPBEAR_OPENIPC=y
|
||||
# BR2_PACKAGE_IFUPDOWN_SCRIPTS is not set
|
||||
# BR2_PACKAGE_FDK_AAC_OPENIPC is not set
|
||||
BR2_PACKAGE_UBOOT_TOOLS=y
|
||||
BR2_PACKAGE_INGENIC_OPENSDK=y
|
||||
BR2_PACKAGE_INGENIC_OSDRV_T31=y
|
||||
BR2_PACKAGE_IPCTOOL=y
|
||||
BR2_PACKAGE_JSON_C=y
|
||||
@@ -115,6 +114,7 @@ BR2_PACKAGE_WIREGUARD_TOOLS=y
|
||||
# DEBUG
|
||||
# BR2_PACKAGE_INGENIC_PWM is not set
|
||||
# BR2_PACKAGE_LOGCAT_OPENIPC is not set
|
||||
# BR2_PACKAGE_INGENIC_DIAG_TOOLS is not set
|
||||
# BR2_PACKAGE_HOST_GDB is not set
|
||||
# BR2_PACKAGE_GDB is not set
|
||||
|
||||
|
||||
Reference in New Issue
Block a user