aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/kernel.c
diff options
context:
space:
mode:
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-08-29 15:43:53 +0100
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-08-29 15:43:53 +0100
commitb7794267c2350e634861d1a24ffb08a938c71b95 (patch)
treeab280ce93185737adf5c98634b033cfab29a85f2 /xen/common/kernel.c
parent357caf631ce395870af9d025e0997300edd137bd (diff)
downloadxen-b7794267c2350e634861d1a24ffb08a938c71b95.tar.gz
xen-b7794267c2350e634861d1a24ffb08a938c71b95.tar.bz2
xen-b7794267c2350e634861d1a24ffb08a938c71b95.zip
Skipping image name at start of command line is an
architecture-specific action. Definitely not required on IA64, for now make it just x86 specific. Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'xen/common/kernel.c')
-rw-r--r--xen/common/kernel.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/xen/common/kernel.c b/xen/common/kernel.c
index 117690461f..9bfba6b949 100644
--- a/xen/common/kernel.c
+++ b/xen/common/kernel.c
@@ -34,12 +34,6 @@ void cmdline_parse(char *cmdline)
if ( p == NULL )
return;
- /* Skip whitespace and the image name. */
- while ( *p == ' ' )
- p++;
- if ( (p = strchr(p, ' ')) == NULL )
- return;
-
for ( ; ; )
{
/* Skip whitespace. */