From: Adrian Bunk Date: Fri, 30 Jun 2006 08:55:51 +0000 (-0700) Subject: [PATCH] UML: fix the INIT_ENV_ARG_LIMIT dependencies X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=dd673bca474a199fb8d1b6a311832592977ecb5f;p=linux-beck.git [PATCH] UML: fix the INIT_ENV_ARG_LIMIT dependencies Fix the INIT_ENV_ARG_LIMIT dependencies to what seems to have been intended. Spotted by Jean-Luc Leger. Signed-off-by: Adrian Bunk Acked-by: Paolo 'Blaisorblade' Giarrusso Cc: Jeff Dike Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/init/Kconfig b/init/Kconfig index f515948889a7..a5b073a103e7 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -54,8 +54,8 @@ config LOCK_KERNEL config INIT_ENV_ARG_LIMIT int - default 32 if !USERMODE - default 128 if USERMODE + default 32 if !UML + default 128 if UML help Maximum of each of the number of arguments and environment variables passed to init from the kernel command line.