63323ec54a
Create own directory for DB1200 code and update it with new features. - SPI support: - tmp121 temperature sensor - SPI flash on DB1200 - I2C support - NE1619 sensor - AT24 eeprom - I2C/SPI can be selected at boot time via switch S6.8 - Carddetect IRQs for SD cards. - gen_nand based NAND support. - hexleds count sleep/wake transitions. Signed-off-by: Manuel Lauss <manuel.lauss@gmail.com> Cc: Linux-MIPS <linux-mips@linux-mips.org> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
21 lines
558 B
Makefile
21 lines
558 B
Makefile
#
|
|
# Alchemy Develboards
|
|
#
|
|
|
|
obj-y += prom.o bcsr.o platform.o
|
|
obj-$(CONFIG_PM) += pm.o
|
|
obj-$(CONFIG_MIPS_PB1000) += pb1000/
|
|
obj-$(CONFIG_MIPS_PB1100) += pb1100/
|
|
obj-$(CONFIG_MIPS_PB1200) += pb1200/
|
|
obj-$(CONFIG_MIPS_PB1500) += pb1500/
|
|
obj-$(CONFIG_MIPS_PB1550) += pb1550/
|
|
obj-$(CONFIG_MIPS_DB1000) += db1x00/
|
|
obj-$(CONFIG_MIPS_DB1100) += db1x00/
|
|
obj-$(CONFIG_MIPS_DB1200) += db1200/
|
|
obj-$(CONFIG_MIPS_DB1500) += db1x00/
|
|
obj-$(CONFIG_MIPS_DB1550) += db1x00/
|
|
obj-$(CONFIG_MIPS_BOSPORUS) += db1x00/
|
|
obj-$(CONFIG_MIPS_MIRAGE) += db1x00/
|
|
|
|
EXTRA_CFLAGS += -Werror
|