Under System's Status in OpenWrt's Overview, I see:
Architecture MediaTek MT7621 ver:1 eco:3
What is meant by ver:1 eco:3 above ?
Does the eco:3 mean that my wifi radiation is at the most ecological(lowest) setting/power ?
And what does ver:1 means then ?
I think eco means Engineering Change Order, a manufacturer's term for a slight change to the internal layout or circuit of the CPU that doesn't warrant increasing the major version (ver) number.
Load Average is the same as other Linux systems, there are a lot of explanations on the web. It's complicated but basically a higher number means that the CPU(s) is (are) being used more. The three numbers are averages over different lengths of time.
Thanks for replying and shedding light on the eco. Now there is some info on this.
2ndly, I have a dual core cpu in routor then why are their 3 numbers ? Is the 3rd one average of both cores ? Can you link me to where this notation is described in openwrt.
Linux runs the MT7621A as a 4-core CPU since it supports two threads per core. A very few models have the MT7621S chip which is limited to one core, 2 threads.
The getloadavg() function returns the number of processes in the
system run queue averaged over various periods of time. Up to
nelem samples are retrieved and assigned to successive elements
of loadavg[]. The system imposes a maximum of 3 samples,
representing averages over the last 1, 5, and 15 minutes,
respectively.
I think the above answers why its 3 in number as mentioned in provided link
Thanks