* Can you add a signature to the kernel ELF image?
@ 2009-11-24 22:46 Adam Nielsen
2009-11-24 23:39 ` David Daney
2009-11-24 23:44 ` Ralf Baechle
0 siblings, 2 replies; 4+ messages in thread
From: Adam Nielsen @ 2009-11-24 22:46 UTC (permalink / raw)
To: linux-mips
Hi all,
I'm trying to port the kernel to an NCD HMX X-Terminal (MIPS R4600), but the
one thing I have to do before I can actually boot the image is attach a
signature to it. I have the signature 'code' in assembly[1], but I'm not sure
how to link it so that it ends up as the first bit of code in the ELF image
(the very first instruction is a 'b' to jump over the actual signature text.)
Without this the boot monitor will refuse to boot the kernel. Any suggestions
as to how I might accomplish this?
Many thanks,
Adam.
[1] http://www.linux-mips.org/wiki/HMX
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Can you add a signature to the kernel ELF image?
2009-11-24 22:46 Can you add a signature to the kernel ELF image? Adam Nielsen
@ 2009-11-24 23:39 ` David Daney
2009-11-24 23:44 ` Ralf Baechle
1 sibling, 0 replies; 4+ messages in thread
From: David Daney @ 2009-11-24 23:39 UTC (permalink / raw)
To: Adam Nielsen; +Cc: linux-mips
Adam Nielsen wrote:
> Hi all,
>
> I'm trying to port the kernel to an NCD HMX X-Terminal (MIPS R4600), but
> the one thing I have to do before I can actually boot the image is
> attach a signature to it. I have the signature 'code' in assembly[1],
> but I'm not sure how to link it so that it ends up as the first bit of
> code in the ELF image (the very first instruction is a 'b' to jump over
> the actual signature text.)
>
> Without this the boot monitor will refuse to boot the kernel. Any
> suggestions as to how I might accomplish this?
>
Edit the linker script (arch/mips/kernel/vmlinux.lds.S)
David Daney
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Can you add a signature to the kernel ELF image?
2009-11-24 22:46 Can you add a signature to the kernel ELF image? Adam Nielsen
2009-11-24 23:39 ` David Daney
@ 2009-11-24 23:44 ` Ralf Baechle
2009-11-25 11:34 ` Adam Nielsen
1 sibling, 1 reply; 4+ messages in thread
From: Ralf Baechle @ 2009-11-24 23:44 UTC (permalink / raw)
To: Adam Nielsen; +Cc: linux-mips
On Wed, Nov 25, 2009 at 08:46:51AM +1000, Adam Nielsen wrote:
> I'm trying to port the kernel to an NCD HMX X-Terminal (MIPS R4600), but
> the one thing I have to do before I can actually boot the image is attach
> a signature to it. I have the signature 'code' in assembly[1], but I'm
> not sure how to link it so that it ends up as the first bit of code in
> the ELF image (the very first instruction is a 'b' to jump over the
> actual signature text.)
>
> Without this the boot monitor will refuse to boot the kernel. Any
> suggestions as to how I might accomplish this?
Take a look at arch/mips/kernel/head.S. This file will be the first on
the final linker call's command line, that is head.S's .text section will
end at the lowest address.
In head.S there is this
#ifdef CONFIG_BOOT_RAW
/*
* Give us a fighting chance of running if execution beings at the
* kernel load address. This is needed because this platform does
* not have a ELF loader yet.
*/
FEXPORT(__kernel_entry)
j kernel_entry
#endif
ifdef. Add your own magic stuff there, something like
#ifdef CONFIG_NCD_HMX
b 1f
nop
nop
.word 0x20
.asciz "XncdHMX"
.word 0, 0, 0
#endif
> [1] http://www.linux-mips.org/wiki/HMX
The wiki page says something about a CRC but just poking a 0x20 into a
constant address is not exactly a CRC calculation. Not sure how this
really is meant.
Ralf
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Can you add a signature to the kernel ELF image?
2009-11-24 23:44 ` Ralf Baechle
@ 2009-11-25 11:34 ` Adam Nielsen
0 siblings, 0 replies; 4+ messages in thread
From: Adam Nielsen @ 2009-11-25 11:34 UTC (permalink / raw)
To: Ralf Baechle; +Cc: linux-mips
> Take a look at arch/mips/kernel/head.S. This file will be the first on
> the final linker call's command line, that is head.S's .text section will
> end at the lowest address.
Ah excellent, that combined with the linker script (to twiddle load addresses)
is just what I'm after.
> #ifdef CONFIG_NCD_HMX
> b 1f
> nop
> nop
> .word 0x20
> .asciz "XncdHMX"
> .word 0, 0, 0
> #endif
Perfect, thanks for the example, that makes it much easier.
>> [1] http://www.linux-mips.org/wiki/HMX
>
> The wiki page says something about a CRC but just poking a 0x20 into a
> constant address is not exactly a CRC calculation. Not sure how this
> really is meant.
As far as I'm aware 0x20 means "ignore the CRC", I think the CRC itself is
covered by one of the zero words.
Cheers,
Adam.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-11-25 11:34 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-24 22:46 Can you add a signature to the kernel ELF image? Adam Nielsen
2009-11-24 23:39 ` David Daney
2009-11-24 23:44 ` Ralf Baechle
2009-11-25 11:34 ` Adam Nielsen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox