Openembedded Core Discussions
 help / color / mirror / Atom feed
From: "Enrico Jörns" <ejo@pengutronix.de>
To: openembedded-core@lists.openembedded.org
Cc: yocto@pengutronix.de
Subject: [PATCH 1/9] busybox: sync config for busybox 1.36.1
Date: Mon,  7 Oct 2024 14:09:42 +0200	[thread overview]
Message-ID: <20241007120950.975803-2-ejo@pengutronix.de> (raw)
In-Reply-To: <20241007120950.975803-1-ejo@pengutronix.de>

Done by disabling all current cfg fragments in SRC_URI, running

  bitbake -c menuconfig busybox

and copying the generated .config back to the defoncfig file.
Changes to CONFIG_EXTRA_CFLAGS were omitted.

For CONFIG_SHA1_HWACCEL and CONFIG_SHA256_HWACCEL there was also an
explicit fragment 'sha_accel.cfg' introduced for disabling these, thus
it makes sense they've been enabled by default.

Signed-off-by: Enrico Jörns <ejo@pengutronix.de>
---
 meta/recipes-core/busybox/busybox/defconfig | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-core/busybox/busybox/defconfig b/meta/recipes-core/busybox/busybox/defconfig
index 8e3b6e480c..3353aac97a 100644
--- a/meta/recipes-core/busybox/busybox/defconfig
+++ b/meta/recipes-core/busybox/busybox/defconfig
@@ -1,7 +1,7 @@
 #
 # Automatically generated make config: don't edit
-# Busybox version: 1.36.0
-# Tue Jan  3 14:17:01 2023
+# Busybox version: 1.36.1
+# Thu May 18 22:31:00 2023
 #
 CONFIG_HAVE_DOT_CONFIG=y
 
@@ -93,6 +93,9 @@ CONFIG_FEATURE_BUFFERS_USE_MALLOC=y
 # CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set
 CONFIG_PASSWORD_MINLEN=6
 CONFIG_MD5_SMALL=1
+CONFIG_SHA1_SMALL=3
+CONFIG_SHA1_HWACCEL=y
+CONFIG_SHA256_HWACCEL=y
 CONFIG_SHA3_SMALL=1
 CONFIG_FEATURE_NON_POSIX_CP=y
 # CONFIG_FEATURE_VERBOSE_CP_MESSAGE is not set
@@ -882,6 +885,7 @@ CONFIG_FEATURE_HWIB=y
 CONFIG_HOSTNAME=y
 CONFIG_DNSDOMAINNAME=y
 # CONFIG_HTTPD is not set
+CONFIG_FEATURE_HTTPD_PORT_DEFAULT=0
 # CONFIG_FEATURE_HTTPD_RANGES is not set
 # CONFIG_FEATURE_HTTPD_SETUID is not set
 # CONFIG_FEATURE_HTTPD_BASIC_AUTH is not set
@@ -974,6 +978,7 @@ CONFIG_FEATURE_TELNET_AUTOLOGIN=y
 CONFIG_FEATURE_TELNET_WIDTH=y
 # CONFIG_TELNETD is not set
 # CONFIG_FEATURE_TELNETD_STANDALONE is not set
+CONFIG_FEATURE_TELNETD_PORT_DEFAULT=0
 # CONFIG_FEATURE_TELNETD_INETD_WAIT is not set
 CONFIG_TFTP=y
 # CONFIG_FEATURE_TFTP_PROGRESS_BAR is not set
@@ -1011,6 +1016,7 @@ CONFIG_UDHCPC=y
 CONFIG_FEATURE_UDHCPC_ARPING=y
 CONFIG_FEATURE_UDHCPC_SANITIZEOPT=y
 CONFIG_UDHCPC_DEFAULT_SCRIPT="/usr/share/udhcpc/default.script"
+CONFIG_UDHCPC6_DEFAULT_SCRIPT=""
 # CONFIG_UDHCPC6 is not set
 # CONFIG_FEATURE_UDHCPC6_RFC3646 is not set
 # CONFIG_FEATURE_UDHCPC6_RFC4704 is not set
@@ -1020,6 +1026,7 @@ CONFIG_UDHCPC_DEFAULT_SCRIPT="/usr/share/udhcpc/default.script"
 #
 # Common options for DHCP applets
 #
+CONFIG_UDHCPC_DEFAULT_INTERFACE="eth0"
 # CONFIG_FEATURE_UDHCP_PORT is not set
 CONFIG_UDHCP_DEBUG=0
 CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS=80
@@ -1144,6 +1151,7 @@ CONFIG_ASH_EXPAND_PRMT=y
 CONFIG_ASH_ECHO=y
 CONFIG_ASH_PRINTF=y
 CONFIG_ASH_TEST=y
+CONFIG_ASH_SLEEP=y
 CONFIG_ASH_HELP=y
 CONFIG_ASH_GETOPTS=y
 CONFIG_ASH_CMDCMD=y
-- 
2.39.5



  reply	other threads:[~2024-10-07 12:10 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-07 12:09 [PATCH 0/9] busybox: cleanup and fix config fragments Enrico Jörns
2024-10-07 12:09 ` Enrico Jörns [this message]
2024-10-07 12:09 ` [PATCH 2/9] busybox: disable defconfig options from simpler fragments Enrico Jörns
2024-10-07 12:09 ` [PATCH 3/9] busybox: disable defconfig options from syslogd.cfg Enrico Jörns
2024-10-07 12:09 ` [PATCH 4/9] busybox: mdev.cfg: remove CONFIG_SETSID Enrico Jörns
2024-10-07 12:09 ` [PATCH 5/9] busybox: disable defconfig options from login-utilities.cfg Enrico Jörns
2024-10-07 12:09 ` [PATCH 6/9] busybox: disable defconfig options from unicode.cfg Enrico Jörns
2024-10-07 12:09 ` [PATCH 7/9] busybox: getopts.cfg: disable long options Enrico Jörns
2024-10-07 12:09 ` [PATCH 8/9] busybox: disable long options in defconfig and fix longopts.cfg Enrico Jörns
2024-10-07 12:09 ` [PATCH 9/9] busybox: disable defconfig options from mount-via-label.cfg Enrico Jörns
2024-10-24 13:04 ` [yocto] [PATCH 0/9] busybox: cleanup and fix config fragments Enrico Jörns
2024-10-25 15:01   ` Andrej Valek
2024-10-25 15:07     ` [OE-core] " Richard Purdie
2024-10-25 17:26       ` Andrej
2024-10-25 18:07         ` Richard Purdie
2024-10-28  8:36           ` Enrico Jörns

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20241007120950.975803-2-ejo@pengutronix.de \
    --to=ejo@pengutronix.de \
    --cc=openembedded-core@lists.openembedded.org \
    --cc=yocto@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox