diff options
author | Nick Hainke <vincent@systemli.org> | 2022-08-19 18:59:36 +0200 |
---|---|---|
committer | David Bauer <mail@david-bauer.net> | 2022-09-06 02:57:21 +0200 |
commit | f54ac98f8cec676761e5144ae06640b8007b4b04 (patch) | |
tree | 639f8cb4f0166685a305d08ded3d9c2704fa0909 /target | |
parent | e16a0e7e8876df0a92ec4779fe766de1a943307a (diff) | |
download | upstream-f54ac98f8cec676761e5144ae06640b8007b4b04.tar.gz upstream-f54ac98f8cec676761e5144ae06640b8007b4b04.tar.bz2 upstream-f54ac98f8cec676761e5144ae06640b8007b4b04.zip |
ath79: add low_mem to tiny image
Devices with SMALL_FLASH enabled have "SQUASHFS_BLOCK_SIZE=1024" in
their config. This significantly increases the cache memory required by
squashfs [0]. This commit enables low_mem leading to a much better
performance because the SQUASHFS_BLOCK_SIZE is reduced to 256.
Example Nanostation M5 (XM):
The image size increases by 128 KiB. However, the memory statisitcs look
much better:
Default tiny build:
------
MemTotal: 26020 kB
MemFree: 5648 kB
MemAvailable: 6112 kB
Buffers: 0 kB
Cached: 3044 kB
low_mem enabled:
-----
MemTotal: 26976 kB
MemFree: 6748 kB
MemAvailable: 11504 kB
Buffers: 0 kB
Cached: 7204 kB
[0] - https://github.com/freifunk-gluon/gluon/commit/7e8af99cf504ca1dc389f282a0c94f4a911571be
Signed-off-by: Nick Hainke <vincent@systemli.org>
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ath79/tiny/target.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ath79/tiny/target.mk b/target/linux/ath79/tiny/target.mk index 91f135b56e..28e02f7a67 100644 --- a/target/linux/ath79/tiny/target.mk +++ b/target/linux/ath79/tiny/target.mk @@ -1,5 +1,5 @@ BOARDNAME:=Devices with small flash -FEATURES += small_flash +FEATURES += low_mem small_flash DEFAULT_PACKAGES += wpad-basic-wolfssl |