forked from Minki/linux
2896bda482
Add support for the Airgoo HMT (home media terminal) device. The HMT is a tablet device with a s3c6410, a 7" LCD and a number of peripheral connections. For more details of the hardware specs, see: http://article.gmane.org/gmane.linux.debian.devel.embedded/4307 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> [ben-linux@fluff.org: subject rewrite] Signed-off-by: Ben Dooks <ben-linux@fluff.org>
27 lines
516 B
Makefile
27 lines
516 B
Makefile
# arch/arm/plat-s3c6410/Makefile
|
|
#
|
|
# Copyright 2008 Openmoko, Inc.
|
|
# Copyright 2008 Simtec Electronics
|
|
#
|
|
# Licensed under GPLv2
|
|
|
|
obj-y :=
|
|
obj-m :=
|
|
obj-n :=
|
|
obj- :=
|
|
|
|
# Core support for S3C6410 system
|
|
|
|
obj-$(CONFIG_CPU_S3C6410) += cpu.o
|
|
|
|
# Helper and device support
|
|
|
|
obj-$(CONFIG_S3C6410_SETUP_SDHCI) += setup-sdhci.o
|
|
|
|
# machine support
|
|
|
|
obj-$(CONFIG_MACH_ANW6410) += mach-anw6410.o
|
|
obj-$(CONFIG_MACH_SMDK6410) += mach-smdk6410.o
|
|
obj-$(CONFIG_MACH_NCP) += mach-ncp.o
|
|
obj-$(CONFIG_MACH_HMT) += mach-hmt.o
|