From 0ab0a1d6695805d145fb095f9f1edba1e029fad4 Mon Sep 17 00:00:00 2001 From: Eric Fahlgren Date: Fri, 26 Jun 2026 11:02:32 -0700 Subject: [PATCH] busybox: enable shell history reverse search Following on from e23b37b, it makes sense to also enable searching the history rather that just relying on up and down arrow while scanning the results. On both x86 and ath79, busybox binary is ~4.2k bigger. The resulting x86 .apk is 447 bytes bigger and mips_24kc .apk is 324 bytes bigger. Signed-off-by: Eric Fahlgren Link: https://github.com/openwrt/openwrt/pull/23953 Signed-off-by: Robert Marko --- package/utils/busybox/Config-defaults.in | 2 +- package/utils/busybox/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package/utils/busybox/Config-defaults.in b/package/utils/busybox/Config-defaults.in index 71175bddfc6..4111105c003 100644 --- a/package/utils/busybox/Config-defaults.in +++ b/package/utils/busybox/Config-defaults.in @@ -264,7 +264,7 @@ config BUSYBOX_DEFAULT_FEATURE_EDITING_SAVE_ON_EXIT default y config BUSYBOX_DEFAULT_FEATURE_REVERSE_SEARCH bool - default n + default y config BUSYBOX_DEFAULT_FEATURE_TAB_COMPLETION bool default y diff --git a/package/utils/busybox/Makefile b/package/utils/busybox/Makefile index 740bf407faa..a950cfff73a 100644 --- a/package/utils/busybox/Makefile +++ b/package/utils/busybox/Makefile @@ -6,7 +6,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=busybox PKG_VERSION:=1.38.0 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_FLAGS:=essential PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2