Tianling Shen
|
6a9a1c9b99
|
treewide: replace old domain with new one
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
|
2021-03-01 22:13:52 +08:00 |
|
Chuck
|
2908424223
|
autocore: optimize the performance of obtaining CPU usage
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>
[adjusted for our own tree]
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-20 00:23:40 +08:00 |
|
Chuck
|
6ada9d5252
|
autocore: optimize the performance of obtaining CPU temperature
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>
[adjusted for our own tree]
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-20 00:06:58 +08:00 |
|
CN_SZTL
|
70557e367e
|
autocore-arm: fix LuCI version display
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-18 19:15:31 +08:00 |
|
CN_SZTL
|
6dc22d68e8
|
autocore: fix LuCI version display
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-18 19:14:24 +08:00 |
|
CN_SZTL
|
16e89bfbfd
|
image: rename distribution to ImmortalWrt
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-18 17:49:40 +08:00 |
|
CN_SZTL
|
bf04ac46fb
|
autocore: merge changes from LuCI
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-09 21:07:19 +08:00 |
|
CN_SZTL
|
20d8f45ff3
|
autocore: fix logic error of big core freq detection
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-08 01:20:50 +08:00 |
|
AmadeusGhost
|
0ab2aa1967
|
autocore-arm: add target sunxi support
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-07 01:31:42 +08:00 |
|
CN_SZTL
|
93b29ba7dd
|
treewide: update Copyright info
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-02-06 17:57:14 +08:00 |
|
CN_SZTL
|
28c808e4af
|
Package Lean: Cleanup Makefile
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-01-30 19:06:57 +08:00 |
|
CN_SZTL
|
bf406023f9
|
autocore: sync with upstream
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-01-23 22:49:18 +08:00 |
|
CN_SZTL
|
285bb05ca3
|
autocore: display ? if "model name" doesn't exist
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-01-23 22:39:13 +08:00 |
|
CN_SZTL
|
68692453e2
|
autocore: remove hack for ARMv8
The related issue was fixed so this hack is totally useless now.
Signed-off-by: CN_SZTL <cnsztl@project-openwrt.eu.org>
|
2021-01-23 21:33:19 +08:00 |
|
CN_SZTL
|
bc939ccb15
|
autocore: sync with upstream source
|
2021-01-09 02:25:47 +08:00 |
|
CN_SZTL
|
140c8fdaa1
|
Merge Official Sourve
|
2021-01-05 13:18:37 +08:00 |
|
CN_SZTL
|
205486763d
|
autocore-arm: redirect error_msg to blackhole
|
2020-12-26 17:17:07 +08:00 |
|
AmadeusGhost
|
42416392d7
|
autocore-arm: avoid resource busy issue on rpi4
|
2020-12-25 18:55:26 +08:00 |
|
Tianling Shen
|
c98cf04893
|
autocore-arm: bug fixes
|
2020-12-23 22:57:30 +08:00 |
|
CN_SZTL
|
ac003a674f
|
autocore-arm: add support for big.LITTLE arch
|
2020-12-19 19:33:12 +08:00 |
|
CN_SZTL
|
3961fc7859
|
autocore: sync with official source
|
2020-11-28 20:14:47 +08:00 |
|
CN_SZTL
|
c3bbc9cf36
|
autocore: add support for mvebu
|
2020-11-13 19:49:40 +08:00 |
|
CN_SZTL
|
84c8974c75
|
autocore: add bcm53xx support
|
2020-08-23 23:45:03 +08:00 |
|
CN_SZTL
|
c41007c9f5
|
autocore: sync with recently changes
|
2020-08-03 20:53:02 +08:00 |
|
CN_SZTL
|
7f8ab7ca11
|
autocore-arm: simplify script
|
2020-08-01 19:32:42 +08:00 |
|
CN_SZTL
|
ac394d4d1d
|
autocore-arm: add ipq40xx support
|
2020-07-28 03:16:04 +08:00 |
|
CN_SZTL
|
6cbc1e0bc5
|
autocore-arm: read real-time cpu frequency
|
2020-07-20 17:47:50 +08:00 |
|
CN_SZTL
|
721bbb4b84
|
autocore-arm: fix define cpuinfo
|
2020-07-19 22:20:48 +08:00 |
|
CN_SZTL
|
407e60996e
|
autocore: fix typo error
|
2020-07-19 22:08:47 +08:00 |
|
CN_SZTL
|
e452dfef2e
|
autocore-arm: fix cpu arch detection
|
2020-07-19 22:00:20 +08:00 |
|
CN_SZTL
|
9a9a8b6231
|
autocore: add ARM support
|
2020-07-19 21:51:04 +08:00 |
|
CN_SZTL
|
08e0efdd64
|
autocore: drop luci ver display
|
2020-07-18 00:13:53 +08:00 |
|
coolsnowwolf
|
9603758ab7
|
x86: fix cpu temp info
|
2020-07-07 20:32:33 +08:00 |
|
CN_SZTL
|
20097d7996
|
autocore: fix on newer LuCI
|
2020-04-11 22:36:45 +08:00 |
|
CN_SZTL
|
c1171caec5
|
autocore: mark as BROKEN due to LuCI change
|
2020-04-10 08:22:38 +08:00 |
|
CN_SZTL
|
42abd69d90
|
autocore: fix cpu usage display
|
2020-03-27 16:38:17 +08:00 |
|
CN_SZTL
|
a9c0a21fa3
|
autocore: fix typo error
|
2020-03-22 06:34:41 +08:00 |
|
CN_SZTL
|
fcc82e37ba
|
autocore: show cpubench score
|
2020-03-21 22:32:13 +08:00 |
|
CN_SZTL
|
d99694cd92
|
autocore: adjust for x86
|
2020-03-16 05:02:00 +08:00 |
|
CN_SZTL
|
030cb13ae1
|
Sync with CTCGFW's main code
|
2020-02-01 02:30:25 +08:00 |
|
CN_SZTL
|
53db75023e
|
package lean: add packages
|
2019-11-08 22:57:22 +08:00 |
|