diff options
Diffstat (limited to 'arch/ppc')
-rw-r--r-- | arch/ppc/Makefile | 16 | ||||
-rw-r--r-- | arch/ppc/boot/Makefile | 1 | ||||
-rw-r--r-- | arch/ppc/mm/fault.c | 2 |
3 files changed, 9 insertions, 10 deletions
diff --git a/arch/ppc/Makefile b/arch/ppc/Makefile index eee6264e8a04..95894ef7beaa 100644 --- a/arch/ppc/Makefile +++ b/arch/ppc/Makefile | |||
@@ -22,22 +22,22 @@ endif | |||
22 | 22 | ||
23 | LDFLAGS_vmlinux := -Ttext $(KERNELLOAD) -Bstatic | 23 | LDFLAGS_vmlinux := -Ttext $(KERNELLOAD) -Bstatic |
24 | # The -Iarch/$(ARCH)/include is temporary while we are merging | 24 | # The -Iarch/$(ARCH)/include is temporary while we are merging |
25 | CPPFLAGS += -Iarch/$(ARCH) -Iarch/$(ARCH)/include | 25 | KBUILD_CPPFLAGS += -Iarch/$(ARCH) -Iarch/$(ARCH)/include |
26 | AFLAGS += -Iarch/$(ARCH) | 26 | KBUILD_AFLAGS += -Iarch/$(ARCH) |
27 | CFLAGS += -Iarch/$(ARCH) -msoft-float -pipe \ | 27 | KBUILD_CFLAGS += -Iarch/$(ARCH) -msoft-float -pipe \ |
28 | -ffixed-r2 -mmultiple | 28 | -ffixed-r2 -mmultiple |
29 | 29 | ||
30 | # No AltiVec instruction when building kernel | 30 | # No AltiVec instruction when building kernel |
31 | CFLAGS += $(call cc-option, -mno-altivec) | 31 | KBUILD_CFLAGS += $(call cc-option, -mno-altivec) |
32 | 32 | ||
33 | CPP = $(CC) -E $(CFLAGS) | 33 | CPP = $(CC) -E $(KBUILD_CFLAGS) |
34 | # Temporary hack until we have migrated to asm-powerpc | 34 | # Temporary hack until we have migrated to asm-powerpc |
35 | LINUXINCLUDE += -Iarch/$(ARCH)/include | 35 | LINUXINCLUDE += -Iarch/$(ARCH)/include |
36 | 36 | ||
37 | CHECKFLAGS += -D__powerpc__ | 37 | CHECKFLAGS += -D__powerpc__ |
38 | 38 | ||
39 | ifndef CONFIG_FSL_BOOKE | 39 | ifndef CONFIG_FSL_BOOKE |
40 | CFLAGS += -mstring | 40 | KBUILD_CFLAGS += -mstring |
41 | endif | 41 | endif |
42 | 42 | ||
43 | cpu-as-$(CONFIG_4xx) += -Wa,-m405 | 43 | cpu-as-$(CONFIG_4xx) += -Wa,-m405 |
@@ -45,8 +45,8 @@ cpu-as-$(CONFIG_6xx) += -Wa,-maltivec | |||
45 | cpu-as-$(CONFIG_E500) += -Wa,-me500 | 45 | cpu-as-$(CONFIG_E500) += -Wa,-me500 |
46 | cpu-as-$(CONFIG_E200) += -Wa,-me200 | 46 | cpu-as-$(CONFIG_E200) += -Wa,-me200 |
47 | 47 | ||
48 | AFLAGS += $(cpu-as-y) | 48 | KBUILD_AFLAGS += $(cpu-as-y) |
49 | CFLAGS += $(cpu-as-y) | 49 | KBUILD_CFLAGS += $(cpu-as-y) |
50 | 50 | ||
51 | # Default to the common case. | 51 | # Default to the common case. |
52 | KBUILD_DEFCONFIG := common_defconfig | 52 | KBUILD_DEFCONFIG := common_defconfig |
diff --git a/arch/ppc/boot/Makefile b/arch/ppc/boot/Makefile index b739e25d4728..487dc66dcc74 100644 --- a/arch/ppc/boot/Makefile +++ b/arch/ppc/boot/Makefile | |||
@@ -13,7 +13,6 @@ | |||
13 | # modified by Cort (cort@cs.nmt.edu) | 13 | # modified by Cort (cort@cs.nmt.edu) |
14 | # | 14 | # |
15 | 15 | ||
16 | CFLAGS += -fno-builtin -D__BOOTER__ -Iarch/$(ARCH)/boot/include | ||
17 | HOSTCFLAGS += -Iarch/$(ARCH)/boot/include | 16 | HOSTCFLAGS += -Iarch/$(ARCH)/boot/include |
18 | 17 | ||
19 | BOOT_TARGETS = zImage zImage.initrd znetboot znetboot.initrd | 18 | BOOT_TARGETS = zImage zImage.initrd znetboot znetboot.initrd |
diff --git a/arch/ppc/mm/fault.c b/arch/ppc/mm/fault.c index b98244e277fb..94913ddcf76e 100644 --- a/arch/ppc/mm/fault.c +++ b/arch/ppc/mm/fault.c | |||
@@ -297,7 +297,7 @@ out_of_memory: | |||
297 | } | 297 | } |
298 | printk("VM: killing process %s\n", current->comm); | 298 | printk("VM: killing process %s\n", current->comm); |
299 | if (user_mode(regs)) | 299 | if (user_mode(regs)) |
300 | do_exit(SIGKILL); | 300 | do_group_exit(SIGKILL); |
301 | return SIGKILL; | 301 | return SIGKILL; |
302 | 302 | ||
303 | do_sigbus: | 303 | do_sigbus: |