The current kernel does not fit in the CEIVA ROM. Also, some functional has already been removed due migrate from 2.6 to 3.0, and it seems that no one uses this platform. So, remove support for this board and modules specific only to this board. Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
20 lines
464 B
Makefile
20 lines
464 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
# Object file lists.
|
|
|
|
obj-y := common.o
|
|
obj-m :=
|
|
obj-n :=
|
|
obj- :=
|
|
|
|
obj-$(CONFIG_ARCH_AUTCPU12) += autcpu12.o
|
|
obj-$(CONFIG_ARCH_CDB89712) += cdb89712.o
|
|
obj-$(CONFIG_ARCH_CLEP7312) += clep7312.o
|
|
obj-$(CONFIG_ARCH_EDB7211) += edb7211-arch.o edb7211-mm.o
|
|
obj-$(CONFIG_ARCH_FORTUNET) += fortunet.o
|
|
obj-$(CONFIG_ARCH_P720T) += p720t.o
|
|
leds-$(CONFIG_ARCH_P720T) += p720t-leds.o
|
|
obj-$(CONFIG_LEDS) += $(leds-y)
|