| Submitter | kerstin jonsson |
|---|---|
| Date | Oct. 22, 2010, 10:17 a.m. |
| Message ID | <1287742675-7614-1-git-send-email-kerstin.jonsson@ericsson.com> |
| Download | mbox | patch |
| Permalink | /patch/68831/ |
| State | Accepted |
| Commit | 234a71a7d64832e4aa8d9b5c80133480b86f6de3 |
| Delegated to: | Benjamin Herrenschmidt |
| Headers | show |
Comments
Patch
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig index 50cc5d9..d536fe4 100644 --- a/arch/powerpc/Kconfig +++ b/arch/powerpc/Kconfig @@ -4,6 +4,10 @@ config PPC32 bool default y if !PPC64 +config 32BIT + bool + default y if PPC32 + config 64BIT bool default y if PPC64
commit ffe8018c3424892c9590048fc36caa6c3e0c8a76 of the -mm tree fixes the initramfs size calculation for e.g. s390 but breaks it for 32bit architectures which do not define CONFIG_32BIT. This patch fix the problem for PPC32 which will elsewise end up with a __initramfs_size of 0. Signed-off-by: Kerstin Jonsson <kerstin.jonsson@ericsson.com> Cc: Paul Mackerras <paulus@samba.org> --- arch/powerpc/Kconfig | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-)