update to v101014,sync timezone to UTC, add Gateway config,sync avs-sdk rpm to 16beff7640
This commit is contained in:
parent
638672dfd6
commit
4824399db5
Binary file not shown.
|
@ -16,6 +16,9 @@
|
||||||
"manufacturerName": "KS",
|
"manufacturerName": "KS",
|
||||||
"description": "Feier"
|
"description": "Feier"
|
||||||
},
|
},
|
||||||
|
"avsGatewayManager": {
|
||||||
|
"avsGateway": "https://alexa.na.gateway.devices.a2z.com"
|
||||||
|
},
|
||||||
"capabilitiesDelegate":{
|
"capabilitiesDelegate":{
|
||||||
"databaseFilePath":"/data/database/capabilitiesDelegate.db"
|
"databaseFilePath":"/data/database/capabilitiesDelegate.db"
|
||||||
},
|
},
|
||||||
|
@ -80,8 +83,9 @@
|
||||||
"audioMediaPlayerPoolSize":3
|
"audioMediaPlayerPoolSize":3
|
||||||
},
|
},
|
||||||
"sampleApp": {
|
"sampleApp": {
|
||||||
"firmwareVersion":101013,
|
"firmwareVersion":101014,
|
||||||
"displayCardsSupported":false,
|
"endpoint": "https://alexa.na.gateway.devices.a2z.com",
|
||||||
|
"displayCardsSupported":false,
|
||||||
"wakeModelCfg":"/etc/WakewordModelMapping.json",
|
"wakeModelCfg":"/etc/WakewordModelMapping.json",
|
||||||
"PryonLiteModelPath":"/data/avs/wakeword-models/x1f8/X.en-CA+en-US.alexa.bin",
|
"PryonLiteModelPath":"/data/avs/wakeword-models/x1f8/X.en-CA+en-US.alexa.bin",
|
||||||
"PryonLiteFingerprintListPath":"/data/avs/samples/fingerprinting/fingerprint_test_list",
|
"PryonLiteFingerprintListPath":"/data/avs/samples/fingerprinting/fingerprint_test_list",
|
||||||
|
|
|
@ -59,6 +59,5 @@ then
|
||||||
--label $ACSDK_PKCS11_MAIN_KEY
|
--label $ACSDK_PKCS11_MAIN_KEY
|
||||||
fi
|
fi
|
||||||
|
|
||||||
date -s 20220706
|
|
||||||
setcap 'CAP_NET_RAW+eip CAP_NET_ADMIN+eip' /home/avs/SampleApp/SampleApp
|
setcap 'CAP_NET_RAW+eip CAP_NET_ADMIN+eip' /home/avs/SampleApp/SampleApp
|
||||||
/sbin/start-stop-daemon --start -c avs --exec /home/avs/SampleApp/SampleApp -- /home/avs/SampleApp/appLWA.json ERROR > /tmp/avs.log
|
/sbin/start-stop-daemon --start -c avs --exec /home/avs/SampleApp/SampleApp -- /home/avs/SampleApp/appLWA.json ERROR > /tmp/avs.log
|
||||||
|
|
|
@ -135,14 +135,11 @@ install_proc() {
|
||||||
|
|
||||||
# delete all timezone execpt Hong_Kong
|
# delete all timezone execpt Hong_Kong
|
||||||
cd ${IMAGE_ROOTFS}/usr/share/zoneinfo
|
cd ${IMAGE_ROOTFS}/usr/share/zoneinfo
|
||||||
rm -rf `ls|egrep -v Asia`
|
rm -rf `ls|egrep -v UTC`
|
||||||
cd -
|
|
||||||
cd ${IMAGE_ROOTFS}/usr/share/zoneinfo/Asia
|
|
||||||
rm -rf `ls|egrep -v Hong_Kong`
|
|
||||||
cd -
|
cd -
|
||||||
cd ${IMAGE_ROOTFS}/etc
|
cd ${IMAGE_ROOTFS}/etc
|
||||||
rm -rf localtime
|
rm -rf localtime
|
||||||
ln -s ../usr/share/zoneinfo/Asia/Hong_Kong localtime
|
ln -s ../usr/share/zoneinfo/UTC localtime
|
||||||
cd -
|
cd -
|
||||||
|
|
||||||
sed -i '2,$s#/bin/sh#/bin/false#' ${IMAGE_ROOTFS}/etc/passwd
|
sed -i '2,$s#/bin/sh#/bin/false#' ${IMAGE_ROOTFS}/etc/passwd
|
||||||
|
|
|
@ -41,7 +41,7 @@
|
||||||
bootargs = "console=tty0 console=ttyS0,921600n1 ubi.mtd=8 root=ubi0:aud8516p1v2-consys-slc-128-rootfs rootfstype=ubifs vmalloc=496M androidboot.hardware=aud8516p1_linux";
|
bootargs = "console=tty0 console=ttyS0,921600n1 ubi.mtd=8 root=ubi0:aud8516p1v2-consys-slc-128-rootfs rootfstype=ubifs vmalloc=496M androidboot.hardware=aud8516p1_linux";
|
||||||
};
|
};
|
||||||
version {
|
version {
|
||||||
ver= "101013";
|
ver= "101014";
|
||||||
};
|
};
|
||||||
|
|
||||||
/* sensor standardization */
|
/* sensor standardization */
|
||||||
|
|
Loading…
Reference in New Issue