~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to arch/ia64/kernel/setup.c

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
479
479
}
480
480
early_param("nomca", setup_nomca);
481
481
 
482
 
/*
483
 
 * Note: elfcorehdr_addr is not just limited to vmcore. It is also used by
484
 
 * is_kdump_kernel() to determine if we are booting after a panic. Hence
485
 
 * ifdef it under CONFIG_CRASH_DUMP and not CONFIG_PROC_VMCORE.
486
 
 */
487
482
#ifdef CONFIG_CRASH_DUMP
488
 
/* elfcorehdr= specifies the location of elf core header
489
 
 * stored by the crashed kernel.
490
 
 */
491
 
static int __init parse_elfcorehdr(char *arg)
492
 
{
493
 
        if (!arg)
494
 
                return -EINVAL;
495
 
 
496
 
        elfcorehdr_addr = memparse(arg, &arg);
497
 
        return 0;
498
 
}
499
 
early_param("elfcorehdr", parse_elfcorehdr);
500
 
 
501
483
int __init reserve_elfcorehdr(u64 *start, u64 *end)
502
484
{
503
485
        u64 length;