diff options
author | Michael J. Chudobiak <mjc@avtechpulse.com> | 2016-04-25 10:00:44 -0400 |
---|---|---|
committer | Michael J. Chudobiak <mjc@avtechpulse.com> | 2016-04-25 10:00:44 -0400 |
commit | a1df417e74aa6dae7352dc8cbb0ad471af5b7c69 (patch) | |
tree | c34b2311e37ea31db153c90cb8f4570374d05e78 /linux/arch/arm/plat-samsung/Makefile |
initial Olimex linux tree from Daniel, originally Feb 3, 2016
Diffstat (limited to 'linux/arch/arm/plat-samsung/Makefile')
-rw-r--r-- | linux/arch/arm/plat-samsung/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/linux/arch/arm/plat-samsung/Makefile b/linux/arch/arm/plat-samsung/Makefile new file mode 100644 index 00000000..1a29ab1f --- /dev/null +++ b/linux/arch/arm/plat-samsung/Makefile @@ -0,0 +1,39 @@ +# arch/arm/plat-samsung/Makefile +# +# Copyright 2009 Simtec Electronics +# +# Licensed under GPLv2 + +ccflags-$(CONFIG_ARCH_MULTI_V7) += -I$(srctree)/$(src)/include + +# Objects we always build independent of SoC choice + +obj-y += init.o cpu.o + +# ADC + +obj-$(CONFIG_S3C_ADC) += adc.o + +# devices + +obj-$(CONFIG_SAMSUNG_ATAGS) += platformdata.o + +obj-$(CONFIG_SAMSUNG_ATAGS) += devs.o +obj-$(CONFIG_SAMSUNG_ATAGS) += dev-uart.o +obj-$(CONFIG_S5P_DEV_MFC) += s5p-dev-mfc.o + +obj-$(CONFIG_SAMSUNG_DEV_BACKLIGHT) += dev-backlight.o + +obj-$(CONFIG_S3C_SETUP_CAMIF) += setup-camif.o + +# PM support + +obj-$(CONFIG_PM_SLEEP) += pm-common.o +obj-$(CONFIG_EXYNOS_CPU_SUSPEND) += pm-common.o +obj-$(CONFIG_SAMSUNG_PM) += pm.o +obj-$(CONFIG_SAMSUNG_PM_GPIO) += pm-gpio.o +obj-$(CONFIG_SAMSUNG_PM_CHECK) += pm-check.o +obj-$(CONFIG_SAMSUNG_PM_DEBUG) += pm-debug.o + +obj-$(CONFIG_SAMSUNG_WAKEMASK) += wakeup-mask.o +obj-$(CONFIG_SAMSUNG_WDT_RESET) += watchdog-reset.o |