e118c3fec9
As of commits d8f347ba35cf ("nios2: enable earlycon support"),0dcc0542a0
("serial: altera_jtaguart: add earlycon support") and4d9d7d896d
("serial: altera_uart: add earlycon support"), the nios2 architecture and the altera_uart/altera_jtaguart drivers support earlycon. Thus, the custom early console implementation for nios2 is no longer necessary to get early boot messages. Remove it and rely fully on earlycon support. Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
26 lines
465 B
Makefile
26 lines
465 B
Makefile
#
|
|
# Makefile for the nios2 linux kernel.
|
|
#
|
|
|
|
extra-y += head.o
|
|
extra-y += vmlinux.lds
|
|
|
|
obj-y += cpuinfo.o
|
|
obj-y += entry.o
|
|
obj-y += insnemu.o
|
|
obj-y += irq.o
|
|
obj-y += nios2_ksyms.o
|
|
obj-y += process.o
|
|
obj-y += prom.o
|
|
obj-y += ptrace.o
|
|
obj-y += setup.o
|
|
obj-y += signal.o
|
|
obj-y += sys_nios2.o
|
|
obj-y += syscall_table.o
|
|
obj-y += time.o
|
|
obj-y += traps.o
|
|
|
|
obj-$(CONFIG_KGDB) += kgdb.o
|
|
obj-$(CONFIG_MODULES) += module.o
|
|
obj-$(CONFIG_NIOS2_ALIGNMENT_TRAP) += misaligned.o
|