From 7e287c4e9158d6127b3f80f3006a797de536f990 Mon Sep 17 00:00:00 2001 From: mivirl <> Date: Mon, 15 Jan 2024 16:44:04 -0600 Subject: [PATCH] Enable inotifyd in busybox --- build.sh | 2 ++ busybox.config | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 7c268b0..6dc2b3b 100644 --- a/build.sh +++ b/build.sh @@ -12,10 +12,12 @@ wget http://staticperl.schmorp.de/smallperl.bin sha256sum -c ../checksums +# Compile busybox # Config file for busybox uses default settings except: # - statically compiled # - sh standalone # - prefer applets +# - enable inotifyd tar -xf busybox-1.36.1.tar.bz2 cp ../busybox.config busybox-1.36.1/.config cd busybox-1.36.1/ diff --git a/busybox.config b/busybox.config index b271808..33f1676 100644 --- a/busybox.config +++ b/busybox.config @@ -808,7 +808,7 @@ CONFIG_I2CSET=y CONFIG_I2CDUMP=y CONFIG_I2CDETECT=y CONFIG_I2CTRANSFER=y -# CONFIG_INOTIFYD is not set +CONFIG_INOTIFYD=y CONFIG_LESS=y CONFIG_FEATURE_LESS_MAXLINES=9999999 CONFIG_FEATURE_LESS_BRACKETS=y -- 2.39.5