Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | # |
| 3 | # Makefile for the linux kernel. |
| 4 | # |
| 5 | |
| 6 | # Common support |
Dmitry Eremin-Solenikov | 22b67ac | 2015-05-19 16:17:09 +0100 | [diff] [blame] | 7 | obj-y := clock.o generic.o #nmi-oopser.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | # Specific board support |
| 10 | obj-$(CONFIG_SA1100_ASSABET) += assabet.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | obj-$(CONFIG_ASSABET_NEPONSET) += neponset.o |
| 12 | |
| 13 | obj-$(CONFIG_SA1100_BADGE4) += badge4.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | |
| 15 | obj-$(CONFIG_SA1100_CERF) += cerf.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
| 17 | obj-$(CONFIG_SA1100_COLLIE) += collie.o |
| 18 | |
Dmitry Artamonow | 86e5e38 | 2009-11-27 12:10:55 +0100 | [diff] [blame] | 19 | obj-$(CONFIG_SA1100_H3100) += h3100.o h3xxx.o |
| 20 | obj-$(CONFIG_SA1100_H3600) += h3600.o h3xxx.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
| 22 | obj-$(CONFIG_SA1100_HACKKIT) += hackkit.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
| 24 | obj-$(CONFIG_SA1100_JORNADA720) += jornada720.o |
Kristoffer Ericson | 69ebb22 | 2007-07-20 18:22:57 +0100 | [diff] [blame] | 25 | obj-$(CONFIG_SA1100_JORNADA720_SSP) += jornada720_ssp.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
| 27 | obj-$(CONFIG_SA1100_LART) += lart.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
Marcelo Roberto Jimenez | 9f15d2c | 2010-12-16 20:51:30 +0100 | [diff] [blame] | 29 | obj-$(CONFIG_SA1100_NANOENGINE) += nanoengine.o |
Marcelo Roberto Jimenez | b080ac8 | 2010-12-16 21:34:51 +0100 | [diff] [blame] | 30 | obj-$(CONFIG_PCI_NANOENGINE) += pci-nanoengine.o |
Marcelo Roberto Jimenez | 9f15d2c | 2010-12-16 20:51:30 +0100 | [diff] [blame] | 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | obj-$(CONFIG_SA1100_PLEB) += pleb.o |
| 33 | |
| 34 | obj-$(CONFIG_SA1100_SHANNON) += shannon.o |
| 35 | |
| 36 | obj-$(CONFIG_SA1100_SIMPAD) += simpad.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 38 | # Miscellaneous functions |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | obj-$(CONFIG_PM) += pm.o sleep.o |
| 40 | obj-$(CONFIG_SA1100_SSP) += ssp.o |
Kristoffer Ericson | 69ebb22 | 2007-07-20 18:22:57 +0100 | [diff] [blame] | 41 | |