From efbed2f9c1828516b1ed3b8551990278ee55119a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Bl=C3=A4se?= Date: Tue, 26 Dec 2023 20:49:55 +0100 Subject: [PATCH] busybox: quality of life improvements MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - enable persistent history, save it to tmpfs (ram) - increase history size to 1024 - enable reverse-i search - enable watch command - enable top SMP command Signed-off-by: Fabian Bläse fff-extra: feature_top_smp (apply for all targets or move to dependency!) --- bsp/default/root_file_system/root/.ash_history | 1 + src/packages/fff/fff-base/Makefile | 4 ++++ 2 files changed, 5 insertions(+) create mode 120000 bsp/default/root_file_system/root/.ash_history diff --git a/bsp/default/root_file_system/root/.ash_history b/bsp/default/root_file_system/root/.ash_history new file mode 120000 index 00000000..d2111fc8 --- /dev/null +++ b/bsp/default/root_file_system/root/.ash_history @@ -0,0 +1 @@ +/tmp/.ash_history \ No newline at end of file diff --git a/src/packages/fff/fff-base/Makefile b/src/packages/fff/fff-base/Makefile index 29f06746..faf24e61 100644 --- a/src/packages/fff/fff-base/Makefile +++ b/src/packages/fff/fff-base/Makefile @@ -12,6 +12,10 @@ define Package/fff-base URL:=https://www.freifunk-franken.de DEFAULT:=y DEPENDS:= \ + +@BUSYBOX_CONFIG_FEATURE_REVERSE_SEARCH \ + +@BUSYBOX_CONFIG_FEATURE_TOP_SMP_CPU \ + +@BUSYBOX_CONFIG_WATCH \ + +@BUSYBOX_CONFIG_FEATURE_EDITING_SAVEHISTORY \ +micrond \ +odhcp6c \ +fff-config \