summaryrefslogtreecommitdiff
path: root/package/busybox/config/miscutils
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2022-01-08 19:28:09 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2022-01-08 19:28:09 +0100
commita4fe6056f3921926cadfd7e81590a34c21693a3d (patch)
treeb0e70be764a15671fbf8c471840b0740d480579f /package/busybox/config/miscutils
parent257011ef97be2a9eb612d92616493b75222935da (diff)
busybox/hush: update to 1.35.0
Diffstat (limited to 'package/busybox/config/miscutils')
-rw-r--r--package/busybox/config/miscutils/Config.in21
1 files changed, 21 insertions, 0 deletions
diff --git a/package/busybox/config/miscutils/Config.in b/package/busybox/config/miscutils/Config.in
index 549042515..a236373ae 100644
--- a/package/busybox/config/miscutils/Config.in
+++ b/package/busybox/config/miscutils/Config.in
@@ -12,6 +12,12 @@ config BUSYBOX_ADJTIMEX
help
Adjtimex reads and optionally sets adjustment parameters for
the Linux clock adjustment algorithm.
+config BUSYBOX_ASCII
+ bool "ascii"
+ default y
+ help
+ Print ascii table.
+
config BUSYBOX_BBCONFIG
bool "bbconfig (9.7 kb)"
default n
@@ -783,4 +789,19 @@ config BUSYBOX_WATCHDOG
certain amount of time, the watchdog device assumes the system has
hung, and will cause the hardware to reboot.
+config BUSYBOX_FEATURE_WATCHDOG_OPEN_TWICE
+ bool "Open watchdog device twice, closing it gracefully in between"
+ depends on BUSYBOX_WATCHDOG
+ default n # this behavior was essentially a hack for a broken driver
+ help
+ When enabled, the watchdog device is opened and then immediately
+ magic-closed, before being opened a second time. This may be necessary
+ for some watchdog devices, but can cause spurious warnings in the
+ kernel log if the nowayout feature is enabled. If this workaround
+ is really needed for you machine to work properly, consider whether
+ it should be fixed in the kernel driver instead. Even when disabled,
+ the behaviour is easily emulated with a "printf 'V' > /dev/watchdog"
+ immediately before starting the busybox watchdog daemon. Say n unless
+ you know that you absolutely need this.
+
endmenu