lean
4f056f8ef3
autocore: ethinfo: rewritten in lua
2022-09-21 18:12:59 +08:00
lean
86eb0f2e34
autocore-arm: disable wireless port info show
2022-09-18 21:42:25 +08:00
AmadeusGhost
176c77d7ee
autocore-arm: add filogic subtarget support
2022-09-16 22:50:09 +08:00
lean
9ae4851e10
autocore: fix arm eth port seq
2022-07-14 15:08:46 +08:00
Bobby
f5307dff2a
index.html: DHCP client list re-order
2022-04-03 12:47:40 +08:00
lean
dced95e705
x86: add brand display for R86S etc.
2022-01-04 23:52:49 +08:00
hubbylei
bde47d3529
Update cpuinfo ( #8250 )
...
Fix errors in scripts
2021-11-13 21:30:01 +08:00
i=菜鸡一批
2c139883e4
Make up the ipq temperature ( #8244 )
...
* Make up the ipq temperature
* Update cpuinfo
* 给bcm27xx加个温度吧。
2021-11-13 00:17:35 +08:00
i=菜鸡一批
e65535d3cf
rockchip:rk3399 increases the frequency of complete information of the big core ( #8232 )
...
* Update cpuinfo
* Add files via upload
Co-authored-by: KLT007 <84753324+KLT007@users.noreply.github.com>
2021-11-11 18:09:46 +08:00
Boos4721
5f47207691
autocore: add missing depend package ethtool ( #8030 )
...
for fix issuse https://github.com/coolsnowwolf/lede/issues/8029
Signed-off-by: boos4721 <3.1415926535boos@gmail.com>
2021-10-12 08:15:59 +08:00
lean
d48fb0f877
autocore: add eth info for arm/armv8 target
2021-10-11 17:12:01 +08:00
ZeaKyX
2fa6c157c8
Fix autocore-arm Makefile for ipq807x ( #7526 )
2021-07-26 11:39:47 +08:00
coolsnowwolf
24714104cc
autocore-arm: drop lm-sensor for ipq806x
2021-06-22 13:18:56 +08:00
coolsnowwolf
84d1b74472
autocore-arm: get rip of lm-sensor to speedup display index.html
2021-06-22 12:57:40 +08:00
lean
744d1ed2c7
autocore: add ax feature
2021-06-16 10:44:10 +08:00
Chuck
e17961f67e
optimize the performance of obtaining CPU temperature ( #6398 )
...
Preformance Test (on NanoPi R2s, repeat 1000 times):
old command:
temp="$(awk "BEGIN{printf (\"%.1f\n\",$(cat /sys/class/thermal/thermal_zone0/temp)/1000) }")°C"
```
real 0m 9.20s
user 0m 3.29s
sys 0m 6.24s
```
new command:
temp="$(awk '{ printf("%.1f °C", $0 / 1000) }' /sys/class/thermal/thermal_zone0/temp)"
```
real 0m 5.57s
user 0m 1.78s
sys 0m 3.97s
```
Signed-off-by: Chuck <fanck0605@qq.com>
2021-02-21 12:27:55 +08:00
Chuck
aaba169f2f
optimize the performance of obtaining CPU usage ( #6399 )
...
Preformance Test (on NanoPi R2s, repeat 1000 times):
old command
cpu_usage=$(expr 100 - $(cat /tmp/top_tmp | grep 'CPU:' | awk -F '%' '{print$4}' | awk -F ' ' '{print$2}'))
```
real 0m 14.25s
user 0m 7.96s
sys 0m 20.33s
```
new command
cpu_usage=$(cat /tmp/top_tmp | awk '/^CPU/ { printf("%d%%", 100 - $8) }')
```
real 0m 6.91s
user 0m 4.29s
sys 0m 6.06s
```
Signed-off-by: Chuck <fanck0605@qq.com>
2021-02-21 12:26:19 +08:00
AmadeusGhost
9f9bc95d6b
autocore: avoid resource busy issue on rpi4 ( #6095 )
2020-12-25 14:32:13 +08:00
CN_SZTL
1e36f5d11c
autocore-arm: add support for mvebu ( #5781 )
...
Co-authored-by: 486057 <4860575@qq.com>
2020-11-14 00:52:55 +08:00
CN_SZTL
c39177efcf
autocore: add cpu freq & temp display for some arm devices ( #5657 )
...
* autocore: add cpu freq & temp display for some arm devices
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
Co-authored-by: AmadeusGhost <42570690+AmadeusGhost@users.noreply.github.com>
* Revert "show CPU Temperature for NanoPi R2S (#5612 )"
This reverts commit 099439f051a8b2393554eb26cec2df074f653fae.
Co-authored-by: AmadeusGhost <42570690+AmadeusGhost@users.noreply.github.com>
2020-10-13 01:07:17 +08:00
coolsnowwolf
7f73591fbf
x86: fix cpu temp info
2020-07-07 20:22:05 +08:00
coolsnowwolf
88aed2924e
autocore: x86 change RPS/XPS handling to all CPUs
2020-07-06 16:13:07 +08:00
lean
b2ca31e6b0
autocore: fix cpu usage display
2020-03-27 01:13:29 +08:00
lean
a59b400913
autocore:getcpu method change
2020-03-25 01:44:35 +08:00
coolsnowwolf
95fc2438ac
autocore: index.html fs.read method
2020-02-16 23:04:59 +08:00
coolsnowwolf
c42496b73f
autocore: fix zh-cn po
2020-02-16 02:33:38 +08:00
coolsnowwolf
e652b67597
autocore: add cpu usage for x86
2020-02-16 00:14:40 +08:00
Hugo Yuan
ac9ba374d8
autocore: add online users count for x86 ( #3101 )
2020-02-15 20:18:25 +08:00
AmadeusGhost
4f32be505b
package: fix issues ( #2831 )
2020-01-21 18:28:25 +08:00
small_5
87f94af113
Update autocore ( #2571 )
2019-12-25 09:12:34 +08:00
LEAN-ESX
bfb99715e5
autocore: make tmp dir
2019-12-05 20:29:34 -08:00
LEAN-ESX
70d5ab92c1
ethinfo: fix infinite eth ports
2019-11-26 07:47:38 -08:00
coolsnowwolf
5b8dac35b9
autocore: bump version
2019-11-26 18:03:28 +08:00
Hugo Yuan
359d56d59a
Update ethinfo ( #2152 )
2019-11-25 20:40:32 +08:00
LEAN-ESX
3d29f8e1ee
autocore: update ethinfo
2019-11-24 18:52:16 -08:00
LEAN-ESX
cf317543d9
x86: add luci eth info display
2019-11-23 21:09:08 -08:00
LEAN-ESX
0cf9415b8b
Version update to R9.10.10
2019-10-09 22:53:58 -07:00
LEAN-ESX
304a646030
add KERNEL_CGROUPS for x86_64 docker-ce
2019-10-08 08:08:09 -07:00
coolsnowwolf
8ba6d1b75b
coremakr: store benchmark scores
2019-04-18 19:37:45 +08:00
coolsnowwolf
3e3bc0c4c4
coremark: fix 64bit support
2019-04-18 18:56:22 +08:00
coolsnowwolf
734a01085d
update x86/x64 index.html info
2018-10-20 11:19:11 +08:00
coolsnowwolf
e575061c57
Revert "move lean packages to my packages feed"
...
This reverts commit 510d2c3e466e953eba52c1a7c4e1d423ee10e21f.
2018-10-19 13:06:16 +08:00
coolsnowwolf
510d2c3e46
move lean packages to my packages feed
2018-10-19 12:40:22 +08:00
coolsnowwolf
074023cab6
speed up x86/x64 samba I/O
2018-10-18 23:44:22 +08:00
coolsnowwolf
977e23e0ff
x86 luci menmory in MB
2018-10-15 09:58:05 +08:00
coolsnowwolf
45b2c4b282
re-add autocore package for x86/x64
2018-10-08 08:56:30 +08:00
coolsnowwolf
c39d3721a6
remove all of my private package
2018-10-06 18:24:46 +08:00
coolsnowwolf
1052c67666
rollback the stupid offical 18.06 luci to 17.01
2018-09-22 14:26:49 +08:00
coolsnowwolf
a7d3c46b79
update new luci style for x86/x64
2018-06-14 22:33:08 +08:00
coolsnowwolf
1087f5679f
add temp and freq display in index for x86/x64
2018-05-23 23:59:36 +08:00