mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] busybox: fix for busybox prompting durring prepare
@ 2012-09-25 17:24 Joseph A. Lutz
  2012-09-25 19:51 ` Marc Kleine-Budde
  0 siblings, 1 reply; 2+ messages in thread
From: Joseph A. Lutz @ 2012-09-25 17:24 UTC (permalink / raw)
  To: ptxdist

From: "Joseph A. Lutz" <joseph.lutz@novatechweb.com>

Renamed config option BUSYBOX_MD5_SMALL -> BUSYBOX_MD5_SIZE_VS_SPEED so
it would match with the downloaded version of busybox.

Uncommented the LENGTH config option and changed the name to
BUSYBOX_LENGTH. length is a busybox program in the corutils group. I do
not know why it was commented out.

Signed-off-by: Joseph A. Lutz <joseph.lutz@novatechweb.com>
---
 config/busybox/coreutils/Config.in | 10 +++++-----
 config/busybox/libbb/Config.in     |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/config/busybox/coreutils/Config.in b/config/busybox/coreutils/Config.in
index 6393c1c..86478a9 100644
--- a/config/busybox/coreutils/Config.in
+++ b/config/busybox/coreutils/Config.in
@@ -419,11 +419,11 @@ config BUSYBOX_FEATURE_INSTALL_LONG_OPTIONS
 	help
 	  Support long options for the install applet.
 
-####config LENGTH
-####	bool "length"
-####	default y
-####	help
-####	  length is used to print out the length of a specified string.
+config BUSYBOX_LENGTH
+	bool "length"
+	default y
+	help
+	  length is used to print out the length of a specified string.
 
 config BUSYBOX_LN
 	bool "ln"
diff --git a/config/busybox/libbb/Config.in b/config/busybox/libbb/Config.in
index 032d746..00c8d96 100644
--- a/config/busybox/libbb/Config.in
+++ b/config/busybox/libbb/Config.in
@@ -28,7 +28,7 @@ config BUSYBOX_PASSWORD_MINLEN
 	help
 	  Minimum allowable password length.
 
-config BUSYBOX_MD5_SMALL
+config BUSYBOX_MD5_SIZE_VS_SPEED
 	int "MD5: Trade bytes for speed (0:fast, 3:slow)"
 	default 1
 	range 0 3
-- 
1.7.12.1



-- 
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [ptxdist] [PATCH] busybox: fix for busybox prompting durring prepare
  2012-09-25 17:24 [ptxdist] [PATCH] busybox: fix for busybox prompting durring prepare Joseph A. Lutz
@ 2012-09-25 19:51 ` Marc Kleine-Budde
  0 siblings, 0 replies; 2+ messages in thread
From: Marc Kleine-Budde @ 2012-09-25 19:51 UTC (permalink / raw)
  To: ptxdist


[-- Attachment #1.1: Type: text/plain, Size: 2162 bytes --]

On 09/25/2012 07:24 PM, Joseph A. Lutz wrote:
> From: "Joseph A. Lutz" <joseph.lutz@novatechweb.com>
> 
> Renamed config option BUSYBOX_MD5_SMALL -> BUSYBOX_MD5_SIZE_VS_SPEED so
> it would match with the downloaded version of busybox.
> 
> Uncommented the LENGTH config option and changed the name to
> BUSYBOX_LENGTH. length is a busybox program in the corutils group. I do
> not know why it was commented out.
> 
> Signed-off-by: Joseph A. Lutz <joseph.lutz@novatechweb.com>
> ---
>  config/busybox/coreutils/Config.in | 10 +++++-----
>  config/busybox/libbb/Config.in     |  2 +-
>  2 files changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/config/busybox/coreutils/Config.in b/config/busybox/coreutils/Config.in
> index 6393c1c..86478a9 100644
> --- a/config/busybox/coreutils/Config.in
> +++ b/config/busybox/coreutils/Config.in
> @@ -419,11 +419,11 @@ config BUSYBOX_FEATURE_INSTALL_LONG_OPTIONS
>  	help
>  	  Support long options for the install applet.
>  
> -####config LENGTH
> -####	bool "length"
> -####	default y
> -####	help
> -####	  length is used to print out the length of a specified string.
> +config BUSYBOX_LENGTH
> +	bool "length"
> +	default y
> +	help
> +	  length is used to print out the length of a specified string.

It's commented out in the busybox tarball....

>  
>  config BUSYBOX_LN
>  	bool "ln"
> diff --git a/config/busybox/libbb/Config.in b/config/busybox/libbb/Config.in
> index 032d746..00c8d96 100644
> --- a/config/busybox/libbb/Config.in
> +++ b/config/busybox/libbb/Config.in
> @@ -28,7 +28,7 @@ config BUSYBOX_PASSWORD_MINLEN
>  	help
>  	  Minimum allowable password length.
>  
> -config BUSYBOX_MD5_SMALL
> +config BUSYBOX_MD5_SIZE_VS_SPEED

This matches with busybox-1.20.1

>  	int "MD5: Trade bytes for speed (0:fast, 3:slow)"
>  	default 1
>  	range 0 3
> 

Marc

-- 
Pengutronix e.K.                  | Marc Kleine-Budde           |
Industrial Linux Solutions        | Phone: +49-231-2826-924     |
Vertretung West/Dortmund          | Fax:   +49-5121-206917-5555 |
Amtsgericht Hildesheim, HRA 2686  | http://www.pengutronix.de   |


[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 259 bytes --]

[-- Attachment #2: Type: text/plain, Size: 48 bytes --]

-- 
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-09-25 19:51 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-09-25 17:24 [ptxdist] [PATCH] busybox: fix for busybox prompting durring prepare Joseph A. Lutz
2012-09-25 19:51 ` Marc Kleine-Budde

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox