2019-05-19 15:07:45 +03:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2019-03-26 11:03:47 +03:00
|
|
|
|
|
|
|
CFLAGS_init.o := -mcmodel=medany
|
|
|
|
ifdef CONFIG_FTRACE
|
|
|
|
CFLAGS_REMOVE_init.o = -pg
|
|
|
|
endif
|
|
|
|
|
2017-07-11 04:08:08 +03:00
|
|
|
obj-y += init.o
|
|
|
|
obj-y += extable.o
|
2019-11-28 21:57:12 +03:00
|
|
|
obj-$(CONFIG_MMU) += fault.o
|
2017-10-26 00:30:32 +03:00
|
|
|
obj-y += cacheflush.o
|
2019-03-27 03:41:29 +03:00
|
|
|
obj-y += context.o
|
2019-05-26 15:50:38 +03:00
|
|
|
|
2019-08-21 17:58:37 +03:00
|
|
|
ifeq ($(CONFIG_MMU),y)
|
|
|
|
obj-$(CONFIG_SMP) += tlbflush.o
|
|
|
|
endif
|
2019-05-26 15:50:38 +03:00
|
|
|
obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o
|