diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2019-06-15 12:16:55 +0300 |
---|---|---|
committer | Hans Dedecker <dedeckeh@gmail.com> | 2019-06-15 19:26:47 +0200 |
commit | 696c511fb480be04a0ab4563b06b5e1b0d7eb684 (patch) | |
tree | 93a6af232f4b5a913214bea92319fffdb9377f32 /package/utils/busybox/config/Config.in | |
parent | f6dab9804413139c3bd2647a81652d04baa1e59d (diff) | |
download | upstream-696c511fb480be04a0ab4563b06b5e1b0d7eb684.tar.gz upstream-696c511fb480be04a0ab4563b06b5e1b0d7eb684.tar.bz2 upstream-696c511fb480be04a0ab4563b06b5e1b0d7eb684.zip |
busybox: update to 1.31.0
* Update busybox to version 1.31.0.
New applets: ts, i2ctransfer
New (restored) feature: error/info levels in syslog messages.
Leave new features disabled by default.
* Refresh patches
* Remove patch that was backported from upstream
Config refreshed with commands below, after which the OpenWrt specific
config defaults (ipv6, login session child) were corrected:
make package/busybox/compile (to populate the build_dir)
cd package/utils/busybox/config/
../convert_menuconfig.pl ../../../../build_dir/target-mips_24kc_musl/busybox-1.31.0
cd package/utils/busybox
./convert_defaults.pl < ../../../build_dir/target-mips_24kc_musl/busybox-1.31.0/.config > Config-defaults.in
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Diffstat (limited to 'package/utils/busybox/config/Config.in')
-rw-r--r-- | package/utils/busybox/config/Config.in | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/package/utils/busybox/config/Config.in b/package/utils/busybox/config/Config.in index 74493aa475..8d1394c2e2 100644 --- a/package/utils/busybox/config/Config.in +++ b/package/utils/busybox/config/Config.in @@ -11,7 +11,7 @@ config BUSYBOX_CONFIG_HAVE_DOT_CONFIG menu "Settings" config BUSYBOX_CONFIG_DESKTOP - bool "Enable compatibility for full-blown desktop systems" + bool "Enable compatibility for full-blown desktop systems (8kb)" default BUSYBOX_DEFAULT_DESKTOP help Enable applet options and features which are not essential. @@ -338,6 +338,15 @@ config BUSYBOX_CONFIG_FEATURE_CLEAN_UP Don't enable this unless you have a really good reason to clean things up manually. +config BUSYBOX_CONFIG_FEATURE_SYSLOG_INFO + bool "Support LOG_INFO level syslog messages" + default BUSYBOX_DEFAULT_FEATURE_SYSLOG_INFO + depends on BUSYBOX_CONFIG_FEATURE_SYSLOG + help + Applets which send their output to syslog use either LOG_INFO or + LOG_ERR log levels, but by disabling this option all messages will + be logged at the LOG_ERR level, saving just under 200 bytes. + # These are auto-selected by other options config BUSYBOX_CONFIG_FEATURE_SYSLOG |