diff options
| author | Sam Ravnborg <sam@mars.(none)> | 2005-09-09 15:28:48 -0400 |
|---|---|---|
| committer | Sam Ravnborg <sam@mars.(none)> | 2005-09-09 15:28:48 -0400 |
| commit | e2d5df935d8a82cb7a2c50726628fa928aa89b9b (patch) | |
| tree | dd7c5bffa423a57e58b7b3f62432c33521c2e776 /arch/alpha | |
| parent | e6ae744dd2eae8e00af328b11b1fe77cb0931136 (diff) | |
kbuild: alpha,x86_64 use generic asm-offsets.h support
Delete obsolete stuff from arch makefiles
Rename .h file to asm-offsets.h
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'arch/alpha')
| -rw-r--r-- | arch/alpha/Makefile | 11 | ||||
| -rw-r--r-- | arch/alpha/kernel/entry.S | 2 | ||||
| -rw-r--r-- | arch/alpha/kernel/head.S | 2 | ||||
| -rw-r--r-- | arch/alpha/lib/dbg_stackcheck.S | 2 | ||||
| -rw-r--r-- | arch/alpha/lib/dbg_stackkill.S | 2 |
5 files changed, 4 insertions, 15 deletions
diff --git a/arch/alpha/Makefile b/arch/alpha/Makefile index 22ebfb2be0e4..1b704ee54bf3 100644 --- a/arch/alpha/Makefile +++ b/arch/alpha/Makefile | |||
| @@ -108,20 +108,9 @@ $(boot)/vmlinux.gz: vmlinux | |||
| 108 | bootimage bootpfile bootpzfile: vmlinux | 108 | bootimage bootpfile bootpzfile: vmlinux |
| 109 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ | 109 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
| 110 | 110 | ||
| 111 | |||
| 112 | prepare: include/asm-$(ARCH)/asm_offsets.h | ||
| 113 | |||
| 114 | arch/$(ARCH)/kernel/asm-offsets.s: include/asm include/linux/version.h \ | ||
| 115 | include/config/MARKER | ||
| 116 | |||
| 117 | include/asm-$(ARCH)/asm_offsets.h: arch/$(ARCH)/kernel/asm-offsets.s | ||
| 118 | $(call filechk,gen-asm-offsets) | ||
| 119 | |||
| 120 | archclean: | 111 | archclean: |
| 121 | $(Q)$(MAKE) $(clean)=$(boot) | 112 | $(Q)$(MAKE) $(clean)=$(boot) |
| 122 | 113 | ||
| 123 | CLEAN_FILES += include/asm-$(ARCH)/asm_offsets.h | ||
| 124 | |||
| 125 | define archhelp | 114 | define archhelp |
| 126 | echo '* boot - Compressed kernel image (arch/alpha/boot/vmlinux.gz)' | 115 | echo '* boot - Compressed kernel image (arch/alpha/boot/vmlinux.gz)' |
| 127 | echo ' bootimage - SRM bootable image (arch/alpha/boot/bootimage)' | 116 | echo ' bootimage - SRM bootable image (arch/alpha/boot/bootimage)' |
diff --git a/arch/alpha/kernel/entry.S b/arch/alpha/kernel/entry.S index f0927ee53f29..76cc0cb5fc2e 100644 --- a/arch/alpha/kernel/entry.S +++ b/arch/alpha/kernel/entry.S | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | */ | 5 | */ |
| 6 | 6 | ||
| 7 | #include <linux/config.h> | 7 | #include <linux/config.h> |
| 8 | #include <asm/asm_offsets.h> | 8 | #include <asm/asm-offsets.h> |
| 9 | #include <asm/thread_info.h> | 9 | #include <asm/thread_info.h> |
| 10 | #include <asm/pal.h> | 10 | #include <asm/pal.h> |
| 11 | #include <asm/errno.h> | 11 | #include <asm/errno.h> |
diff --git a/arch/alpha/kernel/head.S b/arch/alpha/kernel/head.S index 4ca2e404708a..0905721fcbca 100644 --- a/arch/alpha/kernel/head.S +++ b/arch/alpha/kernel/head.S | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | 9 | ||
| 10 | #include <linux/config.h> | 10 | #include <linux/config.h> |
| 11 | #include <asm/system.h> | 11 | #include <asm/system.h> |
| 12 | #include <asm/asm_offsets.h> | 12 | #include <asm/asm-offsets.h> |
| 13 | 13 | ||
| 14 | .globl swapper_pg_dir | 14 | .globl swapper_pg_dir |
| 15 | .globl _stext | 15 | .globl _stext |
diff --git a/arch/alpha/lib/dbg_stackcheck.S b/arch/alpha/lib/dbg_stackcheck.S index cc5ce3a5fcad..3c1f3e6522e5 100644 --- a/arch/alpha/lib/dbg_stackcheck.S +++ b/arch/alpha/lib/dbg_stackcheck.S | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | * Verify that we have not overflowed the stack. Oops if we have. | 5 | * Verify that we have not overflowed the stack. Oops if we have. |
| 6 | */ | 6 | */ |
| 7 | 7 | ||
| 8 | #include <asm/asm_offsets.h> | 8 | #include <asm/asm-offsets.h> |
| 9 | 9 | ||
| 10 | .text | 10 | .text |
| 11 | .set noat | 11 | .set noat |
diff --git a/arch/alpha/lib/dbg_stackkill.S b/arch/alpha/lib/dbg_stackkill.S index e09f2ae1e09e..e9f6a9dcf2b7 100644 --- a/arch/alpha/lib/dbg_stackkill.S +++ b/arch/alpha/lib/dbg_stackkill.S | |||
| @@ -6,7 +6,7 @@ | |||
| 6 | * uninitialized local variables in the act. | 6 | * uninitialized local variables in the act. |
| 7 | */ | 7 | */ |
| 8 | 8 | ||
| 9 | #include <asm/asm_offsets.h> | 9 | #include <asm/asm-offsets.h> |
| 10 | 10 | ||
| 11 | .text | 11 | .text |
| 12 | .set noat | 12 | .set noat |
