mirror of
https://github.com/stich86/UF-Instant-Mod.git
synced 2025-01-22 00:55:39 +00:00
5a1a71cddb
rc35 -- fix upload bandwidth issue if the stick is running in HiSGMII mode (LAN_SDS_MODE 4 o 5) runlanshs.sh -- get the value of LAN_SDS_MODE from config xml
16 lines
586 B
Plaintext
16 lines
586 B
Plaintext
echo 'Turn on phy power...'
|
|
bin/diag port set phy-force-power-down port all state disable
|
|
/bin/echo 2048 > /proc/sys/vm/min_free_kbytes
|
|
lan_sds_mode=`flash get LAN_SDS_MODE | sed 's/LAN_SDS_MODE=//g'`
|
|
|
|
if [ $lan_sds_mode == "4" ]; then
|
|
echo 'Fix upload issue for HiSGMII...'
|
|
/bin/diag bandwidth set egress port all rate 4194296
|
|
/bin/diag bandwidth set ingress port all rate 4194296
|
|
fi
|
|
if [ $lan_sds_mode == "5" ]; then
|
|
echo 'Fix upload issue for HiSGMII...'
|
|
/bin/diag bandwidth set egress port all rate 4194296
|
|
/bin/diag bandwidth set ingress port all rate 4194296
|
|
fi
|