diff options
| author | Guan Xuetao <gxt@mprc.pku.edu.cn> | 2011-05-26 06:17:43 -0400 |
|---|---|---|
| committer | Guan Xuetao <gxt@mprc.pku.edu.cn> | 2011-06-09 04:29:52 -0400 |
| commit | 62b62c5c29468412cadd39dfb1113d3f0a323cfe (patch) | |
| tree | b632e5e4c1d5af29d1d7fbfbe249ca78562815c7 | |
| parent | 42733b3c4861799b3c30c1e416099324bb577960 (diff) | |
unicore32: using generic-y format for one line asm-generic files
The patch adds one-line asm-generic files in arch/unicore32/include/asm/Kbuild
Also, remove the old implementation in arch/unicore32/Makefile
see commit from Sam Ravnborg <d8ecc5cd8e227bc318513b5306ae88a474b8886d>
kbuild: asm-generic support
Signed-off-by: Guan Xuetao <gxt@mprc.pku.edu.cn>
Acked-by: Arnd Bergmann <arnd@arndb.de>
| -rw-r--r-- | arch/unicore32/Makefile | 35 | ||||
| -rw-r--r-- | arch/unicore32/include/asm/Kbuild | 59 |
2 files changed, 59 insertions, 35 deletions
diff --git a/arch/unicore32/Makefile b/arch/unicore32/Makefile index 6555abbaeb87..6af4bc415f2b 100644 --- a/arch/unicore32/Makefile +++ b/arch/unicore32/Makefile | |||
| @@ -40,39 +40,6 @@ core-y += arch/unicore32/mm/ | |||
| 40 | 40 | ||
| 41 | libs-y += arch/unicore32/lib/ | 41 | libs-y += arch/unicore32/lib/ |
| 42 | 42 | ||
| 43 | ASM_GENERATED_DIR := $(srctree)/arch/unicore32/include/generated | ||
| 44 | LINUXINCLUDE += -I$(ASM_GENERATED_DIR) | ||
| 45 | |||
| 46 | ASM_GENERIC_HEADERS := atomic.h auxvec.h | ||
| 47 | ASM_GENERIC_HEADERS += bitsperlong.h bug.h bugs.h | ||
| 48 | ASM_GENERIC_HEADERS += cputime.h current.h | ||
| 49 | ASM_GENERIC_HEADERS += device.h div64.h | ||
| 50 | ASM_GENERIC_HEADERS += emergency-restart.h errno.h | ||
| 51 | ASM_GENERIC_HEADERS += fb.h fcntl.h ftrace.h futex.h | ||
| 52 | ASM_GENERIC_HEADERS += hardirq.h hw_irq.h | ||
| 53 | ASM_GENERIC_HEADERS += ioctl.h ioctls.h ipcbuf.h irq_regs.h | ||
| 54 | ASM_GENERIC_HEADERS += kdebug.h kmap_types.h | ||
| 55 | ASM_GENERIC_HEADERS += local.h | ||
| 56 | ASM_GENERIC_HEADERS += mman.h module.h msgbuf.h | ||
| 57 | ASM_GENERIC_HEADERS += param.h parport.h percpu.h poll.h posix_types.h | ||
| 58 | ASM_GENERIC_HEADERS += resource.h | ||
| 59 | ASM_GENERIC_HEADERS += scatterlist.h sections.h segment.h sembuf.h serial.h | ||
| 60 | ASM_GENERIC_HEADERS += setup.h shmbuf.h shmparam.h | ||
| 61 | ASM_GENERIC_HEADERS += siginfo.h signal.h sizes.h | ||
| 62 | ASM_GENERIC_HEADERS += socket.h sockios.h stat.h statfs.h swab.h syscalls.h | ||
| 63 | ASM_GENERIC_HEADERS += termbits.h termios.h topology.h types.h | ||
| 64 | ASM_GENERIC_HEADERS += ucontext.h unaligned.h user.h | ||
| 65 | ASM_GENERIC_HEADERS += vga.h | ||
| 66 | ASM_GENERIC_HEADERS += xor.h | ||
| 67 | |||
| 68 | archprepare: | ||
| 69 | ifneq ($(ASM_GENERATED_DIR), $(wildcard $(ASM_GENERATED_DIR))) | ||
| 70 | $(Q)mkdir -p $(ASM_GENERATED_DIR)/asm | ||
| 71 | $(Q)$(foreach a, $(ASM_GENERIC_HEADERS), \ | ||
| 72 | echo '#include <asm-generic/$a>' \ | ||
| 73 | > $(ASM_GENERATED_DIR)/asm/$a; ) | ||
| 74 | endif | ||
| 75 | |||
| 76 | boot := arch/unicore32/boot | 43 | boot := arch/unicore32/boot |
| 77 | 44 | ||
| 78 | # Default defconfig and target when executing plain make | 45 | # Default defconfig and target when executing plain make |
| @@ -84,8 +51,6 @@ all: $(KBUILD_IMAGE) | |||
| 84 | zImage Image uImage: vmlinux | 51 | zImage Image uImage: vmlinux |
| 85 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ | 52 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
| 86 | 53 | ||
| 87 | MRPROPER_DIRS += $(ASM_GENERATED_DIR) | ||
| 88 | |||
| 89 | archclean: | 54 | archclean: |
| 90 | $(Q)$(MAKE) $(clean)=$(boot) | 55 | $(Q)$(MAKE) $(clean)=$(boot) |
| 91 | 56 | ||
diff --git a/arch/unicore32/include/asm/Kbuild b/arch/unicore32/include/asm/Kbuild index b200fdaca44d..ca113d6999c5 100644 --- a/arch/unicore32/include/asm/Kbuild +++ b/arch/unicore32/include/asm/Kbuild | |||
| @@ -1,2 +1,61 @@ | |||
| 1 | include include/asm-generic/Kbuild.asm | 1 | include include/asm-generic/Kbuild.asm |
| 2 | 2 | ||
| 3 | generic-y += atomic.h | ||
| 4 | generic-y += auxvec.h | ||
| 5 | generic-y += bitsperlong.h | ||
| 6 | generic-y += bug.h | ||
| 7 | generic-y += bugs.h | ||
| 8 | generic-y += cputime.h | ||
| 9 | generic-y += current.h | ||
| 10 | generic-y += device.h | ||
| 11 | generic-y += div64.h | ||
| 12 | generic-y += emergency-restart.h | ||
| 13 | generic-y += errno.h | ||
| 14 | generic-y += fb.h | ||
| 15 | generic-y += fcntl.h | ||
| 16 | generic-y += ftrace.h | ||
| 17 | generic-y += futex.h | ||
| 18 | generic-y += hardirq.h | ||
| 19 | generic-y += hw_irq.h | ||
| 20 | generic-y += ioctl.h | ||
| 21 | generic-y += ioctls.h | ||
| 22 | generic-y += ipcbuf.h | ||
| 23 | generic-y += irq_regs.h | ||
| 24 | generic-y += kdebug.h | ||
| 25 | generic-y += kmap_types.h | ||
| 26 | generic-y += local.h | ||
| 27 | generic-y += mman.h | ||
| 28 | generic-y += module.h | ||
| 29 | generic-y += msgbuf.h | ||
| 30 | generic-y += param.h | ||
| 31 | generic-y += parport.h | ||
| 32 | generic-y += percpu.h | ||
| 33 | generic-y += poll.h | ||
| 34 | generic-y += posix_types.h | ||
| 35 | generic-y += resource.h | ||
| 36 | generic-y += scatterlist.h | ||
| 37 | generic-y += sections.h | ||
| 38 | generic-y += segment.h | ||
| 39 | generic-y += sembuf.h | ||
| 40 | generic-y += serial.h | ||
| 41 | generic-y += setup.h | ||
| 42 | generic-y += shmbuf.h | ||
| 43 | generic-y += shmparam.h | ||
| 44 | generic-y += siginfo.h | ||
| 45 | generic-y += signal.h | ||
| 46 | generic-y += sizes.h | ||
| 47 | generic-y += socket.h | ||
| 48 | generic-y += sockios.h | ||
| 49 | generic-y += stat.h | ||
| 50 | generic-y += statfs.h | ||
| 51 | generic-y += swab.h | ||
| 52 | generic-y += syscalls.h | ||
| 53 | generic-y += termbits.h | ||
| 54 | generic-y += termios.h | ||
| 55 | generic-y += topology.h | ||
| 56 | generic-y += types.h | ||
| 57 | generic-y += ucontext.h | ||
| 58 | generic-y += unaligned.h | ||
| 59 | generic-y += user.h | ||
| 60 | generic-y += vga.h | ||
| 61 | generic-y += xor.h | ||
