forked from luck/tmp_suning_uos_patched
571b7e69f7
In preparation for supporting other YAMON-using boards (Malta) & sharing code to translate information from YAMON into device tree properties, pull the code doing so for the kernel command line, system memory & serial configuration out of the SEAD-3 board code. Signed-off-by: Paul Burton <paul.burton@imgtec.com> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/16181/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
18 lines
524 B
Makefile
18 lines
524 B
Makefile
#
|
|
# Copyright (C) 2016 Imagination Technologies
|
|
# Author: Paul Burton <paul.burton@imgtec.com>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by the
|
|
# Free Software Foundation; either version 2 of the License, or (at your
|
|
# option) any later version.
|
|
#
|
|
|
|
obj-y += init.o
|
|
obj-y += irq.o
|
|
obj-y += proc.o
|
|
|
|
obj-$(CONFIG_YAMON_DT_SHIM) += yamon-dt.o
|
|
obj-$(CONFIG_LEGACY_BOARD_SEAD3) += board-sead3.o
|
|
obj-$(CONFIG_KEXEC) += kexec.o
|