aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/busybox/busybox/busybox-sulogin-empty-root-password.patch
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2014-01-22 10:39:46 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-02-02 11:21:56 +0000
commitfa282186d82e8fe3c590d4ea79e464116e5ceea2 (patch)
treeeb19131a90c0d817bde9ff6f12057092a6df6493 /meta/recipes-core/busybox/busybox/busybox-sulogin-empty-root-password.patch
parentee4061b43522c4893b41c3be63d06be1ee7e3c70 (diff)
downloadopenembedded-core-contrib-fa282186d82e8fe3c590d4ea79e464116e5ceea2.tar.gz
busybox: upgrade to stable 1.22.1
Upgrade busybox to the stable release 1.22.1. During this upgrade, 9 patches are removed. Reasons are detailed below. The following 6 patches are removed as they have been merged. meta/recipes-core/busybox/busybox/busybox-lineedit-initialize-delptr.patch meta/recipes-core/busybox/busybox/busybox-list-suid-and-non-suid-app-configs.patch meta/recipes-core/busybox/busybox/busybox-sed-fix-sed-clusternewline-testcase.patch meta/recipes-core/busybox/busybox/busybox-sulogin-empty-root-password.patch meta/recipes-core/busybox/busybox/find-get-rid-of-nested-functions.patch meta/recipes-core/busybox/busybox/testsuite-du-du-k-works-fix-false-positive.patch The following three patches are removed because they are mainly about moving binaries from /bin to /usr/bin to make the update-alternative work correctly at rootfs time. We can easily solve this problem by changing recipes. There's no compelling reason why such patches are needed. meta/recipes-core/busybox/busybox/run-parts.in.usr-bin.patch meta/recipes-core/busybox/busybox/stat-usr-bin.patch meta/recipes-core/busybox/busybox/watch.in.usr-bin.patch Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-core/busybox/busybox/busybox-sulogin-empty-root-password.patch')
-rw-r--r--meta/recipes-core/busybox/busybox/busybox-sulogin-empty-root-password.patch58
1 files changed, 0 insertions, 58 deletions
diff --git a/meta/recipes-core/busybox/busybox/busybox-sulogin-empty-root-password.patch b/meta/recipes-core/busybox/busybox/busybox-sulogin-empty-root-password.patch
deleted file mode 100644
index baad298a3f..0000000000
--- a/meta/recipes-core/busybox/busybox/busybox-sulogin-empty-root-password.patch
+++ /dev/null
@@ -1,58 +0,0 @@
-Upstream-Status: Backport
-Signed-off-by: Jonathan Liu <net147@gmail.com>
-
-From b6dc13c2d3754704b1bf5af4e6b957b48585102f Mon Sep 17 00:00:00 2001
-From: Jonathan Liu <net147@gmail.com>
-Date: Tue, 21 May 2013 17:01:55 +0200
-Subject: [PATCH] sulogin: allow system maintenance login if root password is
- empty
-
-The current password checking is unable to distinguish between the user
-entering an empty password or pressing Control-D. As a result, an empty
-password always results in normal startup.
-
-We modify bb_ask to return NULL if Control-D is pressed without entering
-a password. The sulogin applet is then modified to only proceed to
-normal startup if bb_ask returns NULL. This covers EOF with no password,
-interrupt by timeout and ^C.
-
-Signed-off-by: Jonathan Liu <net147@gmail.com>
-Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
----
- libbb/bb_askpass.c | 4 +++-
- loginutils/sulogin.c | 4 ++--
- 2 files changed, 5 insertions(+), 3 deletions(-)
-
-diff --git a/libbb/bb_askpass.c b/libbb/bb_askpass.c
-index fe2b506..77c1bcd 100644
---- a/libbb/bb_askpass.c
-+++ b/libbb/bb_askpass.c
-@@ -65,7 +65,9 @@ char* FAST_FUNC bb_ask(const int fd, int timeout, const char *prompt)
- i = 0;
- while (1) {
- int r = read(fd, &ret[i], 1);
-- if (r < 0) {
-+ if ((i == 0 && r == 0) /* EOF (^D) with no password */
-+ || r < 0
-+ ) {
- /* read is interrupted by timeout or ^C */
- ret = NULL;
- break;
-diff --git a/loginutils/sulogin.c b/loginutils/sulogin.c
-index f79802a..65e6384 100644
---- a/loginutils/sulogin.c
-+++ b/loginutils/sulogin.c
-@@ -83,8 +83,8 @@ int sulogin_main(int argc UNUSED_PARAM, char **argv)
- cp = bb_ask(STDIN_FILENO, timeout,
- "Give root password for system maintenance\n"
- "(or type Control-D for normal startup):");
--
-- if (!cp || !*cp) {
-+ if (!cp) {
-+ /* ^D, ^C, timeout, or read error */
- bb_info_msg("Normal startup");
- return 0;
- }
---
-1.8.2.3
-