[PATCH] kexec/ppc: Check for a uImage initrd with ELF kernel

Simon Horman horms at verge.net.au
Wed Sep 25 00:23:08 EDT 2013


On Wed, Sep 25, 2013 at 08:16:41AM +0530, Suzuki K. Poulose wrote:
> On 09/24/2013 10:53 AM, Athira Rajeev wrote:
> > From: Suzuki K. Poulose <suzuki at in.ibm.com>
> > 
> > We should check if the initrd is in uImage format, when
> > the kernel might be in ELF.
> > 
> > Signed-off-by : Suzuki K Poulose <suzuki at in.ibm.com>
> > Signed-off-by : Athira Rajeev<atrajeev at in.ibm.com>
> 
> Simon,
> 
> Please pull this one as well. Lets a user choose any combination of
> Kernel/Initrd.

Hi,

For some reason I don't seem to have the original post of the patch
in my inbox. Could either you or Athira send it to me with
kexec at lists.infradead.org CCed (again?).

> 
> Suzuki
> 
> > ---
> > 
> >  kexec/arch/ppc/kexec-elf-ppc.c |    2 +-
> >  kexec/arch/ppc/kexec-ppc.h     |    3 +++
> >  2 files changed, 4 insertions(+), 1 deletions(-)
> > 
> > diff --git a/kexec/arch/ppc/kexec-elf-ppc.c b/kexec/arch/ppc/kexec-elf-ppc.c
> > index 98cae9c..df1b521 100644
> > --- a/kexec/arch/ppc/kexec-elf-ppc.c
> > +++ b/kexec/arch/ppc/kexec-elf-ppc.c
> > @@ -371,7 +371,7 @@ int elf_ppc_load(int argc, char **argv,	const char *buf, off_t len,
> >  	blob_buf = fixup_dtb_init(info, blob_buf, &blob_size, kernel_addr, &dtb_addr);
> > 
> >  	if (ramdisk) {
> > -		seg_buf = slurp_file(ramdisk, &seg_size);
> > +		seg_buf = slurp_ramdisk_ppc(ramdisk, &seg_size);
> >  		/* load the ramdisk *above* the device tree */
> >  		hole_addr = add_buffer(info, seg_buf, seg_size, seg_size,
> >  				0, dtb_addr + blob_size + 1,  max_addr, -1);
> > diff --git a/kexec/arch/ppc/kexec-ppc.h b/kexec/arch/ppc/kexec-ppc.h
> > index 68728c6..904cf48 100644
> > --- a/kexec/arch/ppc/kexec-ppc.h
> > +++ b/kexec/arch/ppc/kexec-ppc.h
> > @@ -78,4 +78,7 @@ extern int read_memory_region_limits(int fd, unsigned long long *start,
> >  #define COMMAND_LINE_SIZE	512 /* from kernel */
> >  /*fs2dt*/
> >  void reserve(unsigned long long where, unsigned long long length);
> > +
> > +/* Defined kexec-uImage-ppc.c */
> > +extern char* slurp_ramdisk_ppc(const char *filename, off_t *r_size);
> >  #endif /* KEXEC_PPC_H */
> > 
> 



More information about the kexec mailing list