diff options
author | Michael Ellerman <michael@ellerman.id.au> | 2005-11-11 16:06:06 +0300 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-11-14 08:34:06 +0300 |
commit | 593e537b93193d1696809817533ce5ad510445b1 (patch) | |
tree | b2045132486c3d39950899e3a9b574188df55ce6 /arch/powerpc/kernel | |
parent | c5e24354efae9f962e0e369d875d45f47e0bb9aa (diff) | |
download | linux-593e537b93193d1696809817533ce5ad510445b1.tar.xz |
[PATCH] powerpc: Export htab start/end via device tree
The userspace kexec-tools need to know the location of the htab on non-lpar
machines, as well as the end of the kernel. Export via the device tree.
NB. This patch has been updated to use "linux,x" property names. You may
need to update your kexec-tools to match.
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel')
-rw-r--r-- | arch/powerpc/kernel/setup_64.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/setup_64.c b/arch/powerpc/kernel/setup_64.c index fdbd9f9122f2..608fee7c7e20 100644 --- a/arch/powerpc/kernel/setup_64.c +++ b/arch/powerpc/kernel/setup_64.c @@ -59,6 +59,7 @@ #include <asm/firmware.h> #include <asm/xmon.h> #include <asm/udbg.h> +#include <asm/kexec.h> #include "setup.h" @@ -415,6 +416,10 @@ void __init setup_system(void) */ unflatten_device_tree(); +#ifdef CONFIG_KEXEC + kexec_setup(); /* requires unflattened device tree. */ +#endif + /* * Fill the ppc64_caches & systemcfg structures with informations * retreived from the device-tree. Need to be called before |