diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-05-22 03:57:37 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-07-24 09:51:03 -0400 |
commit | 5a4dcfac1e05f7c025a465d3372a1c1425004c2b (patch) | |
tree | 70e09c7663af2785fd2272b8f678cc14894dc13d /board/qemu-malta/Makefile | |
parent | 843a76b66be70a28a55f295fa72faa74dde9e02b (diff) | |
download | blackbird-obmc-uboot-5a4dcfac1e05f7c025a465d3372a1c1425004c2b.tar.gz blackbird-obmc-uboot-5a4dcfac1e05f7c025a465d3372a1c1425004c2b.zip |
MIPS: qemu-malta: add support for emulated MIPS Malta board
Add minimal support for the MIPS Malta CoreLV board
emulated by Qemu. The only supported peripherial is
the UART.
This is enough to boot U-Boot to the command prompt
both in little and big endian mode.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
Cc: Daniel Schwierzeck <daniel.schwierzeck@googlemail.com>
Diffstat (limited to 'board/qemu-malta/Makefile')
-rw-r--r-- | board/qemu-malta/Makefile | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/board/qemu-malta/Makefile b/board/qemu-malta/Makefile new file mode 100644 index 0000000000..6251bb84ad --- /dev/null +++ b/board/qemu-malta/Makefile @@ -0,0 +1,45 @@ +# +# (C) Copyright 2003-2006 +# Wolfgang Denk, DENX Software Engineering, wd@denx.de. +# +# See file CREDITS for list of people who contributed to this +# project. +# +# 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. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, +# MA 02111-1307 USA +# + +include $(TOPDIR)/config.mk + +LIB = $(obj)lib$(BOARD).o + +COBJS = $(BOARD).o +SOBJS = lowlevel_init.o + +SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) +OBJS := $(addprefix $(obj),$(COBJS)) +SOBJS := $(addprefix $(obj),$(SOBJS)) + +$(LIB): $(OBJS) $(SOBJS) + $(call cmd_link_o_target, $(OBJS) $(SOBJS)) + +######################################################################### + +# defines $(obj).depend target +include $(SRCTREE)/rules.mk + +sinclude $(obj).depend + +######################################################################### |