* [Buildroot] [PATCH 1/1] busybox: Make it possible to override LOGIN_FAIL_DELAY in CONFIG_EXTRA_CFLAGS
@ 2014-12-22 8:34 Peter Kümmel
2014-12-22 8:47 ` Peter Kümmel
2014-12-22 14:00 ` Thomas Petazzoni
0 siblings, 2 replies; 3+ messages in thread
From: Peter Kümmel @ 2014-12-22 8:34 UTC (permalink / raw)
To: buildroot
Signed-off-by: Peter K?mmel <syntheticpp@gmx.net>
---
.../busybox/busybox-0007-login-fail-delay.patch | 32 ++++++++++++++++++++++
1 file changed, 32 insertions(+)
create mode 100644 package/busybox/busybox-0007-login-fail-delay.patch
diff --git a/package/busybox/busybox-0007-login-fail-delay.patch b/package/busybox/busybox-0007-login-fail-delay.patch
new file mode 100644
index 0000000..0e2bb2e
--- /dev/null
+++ b/package/busybox/busybox-0007-login-fail-delay.patch
@@ -0,0 +1,32 @@
+From a6588fa10230e7b87990482773a445701abbaae8 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Peter=20K=C3=BCmmel?= <syntheticpp@gmx.net>
+Date: Mon, 22 Dec 2014 01:55:54 +0100
+Subject: [PATCH 1/1] Make it possible to override LOGIN_FAIL_DELAY in
+ CONFIG_EXTRA_CFLAGS
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Signed-off-by: Peter K?mmel <syntheticpp@gmx.net>
+Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
+---
+ include/libbb.h | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/include/libbb.h b/include/libbb.h
+index 8e8b9ca..68a7cf0 100644
+--- a/include/libbb.h
++++ b/include/libbb.h
+@@ -1271,7 +1271,9 @@ char *bb_simplify_path(const char *path) FAST_FUNC;
+ /* Returns ptr to NUL */
+ char *bb_simplify_abs_path_inplace(char *path) FAST_FUNC;
+
++#ifndef LOGIN_FAIL_DELAY
+ #define LOGIN_FAIL_DELAY 3
++#endif
+ extern void bb_do_delay(int seconds) FAST_FUNC;
+ extern void change_identity(const struct passwd *pw) FAST_FUNC;
+ extern void run_shell(const char *shell, int loginshell, const char *command, const char **additional_args) NORETURN FAST_FUNC;
+--
+1.9.1
+
--
1.9.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/1] busybox: Make it possible to override LOGIN_FAIL_DELAY in CONFIG_EXTRA_CFLAGS
2014-12-22 8:34 [Buildroot] [PATCH 1/1] busybox: Make it possible to override LOGIN_FAIL_DELAY in CONFIG_EXTRA_CFLAGS Peter Kümmel
@ 2014-12-22 8:47 ` Peter Kümmel
2014-12-22 14:00 ` Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Peter Kümmel @ 2014-12-22 8:47 UTC (permalink / raw)
To: buildroot
This is the upstream patch.
Am 22.12.2014 um 09:34 schrieb Peter K?mmel:
> Signed-off-by: Peter K?mmel <syntheticpp@gmx.net>
> ---
> .../busybox/busybox-0007-login-fail-delay.patch | 32 ++++++++++++++++++++++
> 1 file changed, 32 insertions(+)
> create mode 100644 package/busybox/busybox-0007-login-fail-delay.patch
>
> diff --git a/package/busybox/busybox-0007-login-fail-delay.patch b/package/busybox/busybox-0007-login-fail-delay.patch
> new file mode 100644
> index 0000000..0e2bb2e
> --- /dev/null
> +++ b/package/busybox/busybox-0007-login-fail-delay.patch
> @@ -0,0 +1,32 @@
> +From a6588fa10230e7b87990482773a445701abbaae8 Mon Sep 17 00:00:00 2001
> +From: =?UTF-8?q?Peter=20K=C3=BCmmel?= <syntheticpp@gmx.net>
> +Date: Mon, 22 Dec 2014 01:55:54 +0100
> +Subject: [PATCH 1/1] Make it possible to override LOGIN_FAIL_DELAY in
> + CONFIG_EXTRA_CFLAGS
> +MIME-Version: 1.0
> +Content-Type: text/plain; charset=UTF-8
> +Content-Transfer-Encoding: 8bit
> +
> +Signed-off-by: Peter K?mmel <syntheticpp@gmx.net>
> +Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
> +---
> + include/libbb.h | 2 ++
> + 1 file changed, 2 insertions(+)
> +
> +diff --git a/include/libbb.h b/include/libbb.h
> +index 8e8b9ca..68a7cf0 100644
> +--- a/include/libbb.h
> ++++ b/include/libbb.h
> +@@ -1271,7 +1271,9 @@ char *bb_simplify_path(const char *path) FAST_FUNC;
> + /* Returns ptr to NUL */
> + char *bb_simplify_abs_path_inplace(char *path) FAST_FUNC;
> +
> ++#ifndef LOGIN_FAIL_DELAY
> + #define LOGIN_FAIL_DELAY 3
> ++#endif
> + extern void bb_do_delay(int seconds) FAST_FUNC;
> + extern void change_identity(const struct passwd *pw) FAST_FUNC;
> + extern void run_shell(const char *shell, int loginshell, const char *command, const char **additional_args) NORETURN FAST_FUNC;
> +--
> +1.9.1
> +
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/1] busybox: Make it possible to override LOGIN_FAIL_DELAY in CONFIG_EXTRA_CFLAGS
2014-12-22 8:34 [Buildroot] [PATCH 1/1] busybox: Make it possible to override LOGIN_FAIL_DELAY in CONFIG_EXTRA_CFLAGS Peter Kümmel
2014-12-22 8:47 ` Peter Kümmel
@ 2014-12-22 14:00 ` Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2014-12-22 14:00 UTC (permalink / raw)
To: buildroot
Dear Peter K?mmel,
On Mon, 22 Dec 2014 09:34:18 +0100, Peter K?mmel wrote:
> Signed-off-by: Peter K?mmel <syntheticpp@gmx.net>
> ---
> .../busybox/busybox-0007-login-fail-delay.patch | 32 ++++++++++++++++++++++
> 1 file changed, 32 insertions(+)
> create mode 100644 package/busybox/busybox-0007-login-fail-delay.patch
Applied, thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-12-22 14:00 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-22 8:34 [Buildroot] [PATCH 1/1] busybox: Make it possible to override LOGIN_FAIL_DELAY in CONFIG_EXTRA_CFLAGS Peter Kümmel
2014-12-22 8:47 ` Peter Kümmel
2014-12-22 14:00 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox