mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-19 02:04:19 +08:00
c32e64e852
This patch adds Makefile, Kconfig for build infrastructure. Signed-off-by: Guo Ren <ren_guo@c-sky.com> Acked-by: Arnd Bergmann <arnd@arndb.de>
14 lines
246 B
Makefile
14 lines
246 B
Makefile
ifeq ($(CONFIG_CPU_HAS_CACHEV2),y)
|
|
obj-y += cachev2.o
|
|
else
|
|
obj-y += cachev1.o
|
|
endif
|
|
|
|
obj-y += dma-mapping.o
|
|
obj-y += fault.o
|
|
obj-$(CONFIG_HIGHMEM) += highmem.o
|
|
obj-y += init.o
|
|
obj-y += ioremap.o
|
|
obj-y += syscache.o
|
|
obj-y += tlb.o
|