From 84040176faa142438608f42c71109bbdc8b0379b Mon Sep 17 00:00:00 2001 From: Jonathon Hall Date: Wed, 17 Jan 2024 16:30:31 -0500 Subject: [PATCH] modules/bash: Enable readline Restores autocomplete and makes bash more usable as an interactive shell. Added 106 KB to compressed initrd (checked librem_14). Signed-off-by: Jonathon Hall --- modules/bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/bash b/modules/bash index d42733866..e29fed726 100644 --- a/modules/bash +++ b/modules/bash @@ -23,7 +23,7 @@ bash_configure := CFLAGS="-g0 -Os" LDFLAGS="-s" ./configure \ --disable-net-redirections \ --enable-single-help-strings \ --disable-nls \ - --disable-readline \ + --enable-readline \ bash_target := $(MAKE_JOBS) \ && $(MAKE) -C $(build)/$(bash_dir) \