Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cca97de1184f6000d22b4106d47687b31cca1fa3
Commit:     cca97de1184f6000d22b4106d47687b31cca1fa3
Parent:     bbd4bb9aa7635063284ffb3470ab24c36c14d935
Author:     Alon Bar-Lev <[EMAIL PROTECTED]>
AuthorDate: Mon Feb 12 00:54:29 2007 -0800
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Mon Feb 12 09:48:39 2007 -0800

    [PATCH] ia64: 2048-byte command line
    
    Current implementation allows the kernel to receive up to 255 characters 
from
    the bootloader.  While the boot protocol allows greater buffers to be sent.
    
    In current environment, the command-line is used in order to specify many
    values, including suspend/resume, module arguments, splash, initramfs and
    more.
    
    255 characters are not enough anymore.
    
    After edd issue was fixed, and dynammic kernel command-line patch was
    accepted, we can extend the COMMAND_LINE_SIZE without runtime memory
    requirements.
    
    Signed-off-by: Alon Bar-Lev <[EMAIL PROTECTED]>
    Cc: "Luck, Tony" <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 include/asm-ia64/setup.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/asm-ia64/setup.h b/include/asm-ia64/setup.h
index ea29b57..4399a44 100644
--- a/include/asm-ia64/setup.h
+++ b/include/asm-ia64/setup.h
@@ -1,6 +1,6 @@
 #ifndef __IA64_SETUP_H
 #define __IA64_SETUP_H
 
-#define COMMAND_LINE_SIZE      512
+#define COMMAND_LINE_SIZE      2048
 
 #endif
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to