mirror of
https://github.com/torvalds/linux.git
synced 2024-12-22 19:01:37 +00:00
ba4d1275d1
This patch adds support for MPC8308RDB development board from
Freescale.
Supported devices:
DUART
Dual Ethernet
NOR and NAND flashes
I2C
USB in peripheral mode
PCIE support is broken by the commit 3da34aa
("powerpc/fsl: Support
unique MSI addresses per PCIe Root Complex"). Works after revert.
Signed-off-by: Ilya Yanok <yanok@emcraft.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20 lines
716 B
Makefile
20 lines
716 B
Makefile
#
|
|
# Makefile for the PowerPC 83xx linux kernel.
|
|
#
|
|
obj-y := misc.o usb.o
|
|
obj-$(CONFIG_SUSPEND) += suspend.o suspend-asm.o
|
|
obj-$(CONFIG_MCU_MPC8349EMITX) += mcu_mpc8349emitx.o
|
|
obj-$(CONFIG_MPC830x_RDB) += mpc830x_rdb.o
|
|
obj-$(CONFIG_MPC831x_RDB) += mpc831x_rdb.o
|
|
obj-$(CONFIG_MPC832x_RDB) += mpc832x_rdb.o
|
|
obj-$(CONFIG_MPC834x_MDS) += mpc834x_mds.o
|
|
obj-$(CONFIG_MPC834x_ITX) += mpc834x_itx.o
|
|
obj-$(CONFIG_MPC836x_MDS) += mpc836x_mds.o
|
|
obj-$(CONFIG_MPC836x_RDK) += mpc836x_rdk.o
|
|
obj-$(CONFIG_MPC832x_MDS) += mpc832x_mds.o
|
|
obj-$(CONFIG_MPC837x_MDS) += mpc837x_mds.o
|
|
obj-$(CONFIG_SBC834x) += sbc834x.o
|
|
obj-$(CONFIG_MPC837x_RDB) += mpc837x_rdb.o
|
|
obj-$(CONFIG_ASP834x) += asp834x.o
|
|
obj-$(CONFIG_KMETER1) += kmeter1.o
|