
Hello list,
inside the automatic U-Boot patch tracking system a new ticket [DNX#2006081742000071] was created:
<snip>
Subject: [PATCH] mpc8360epb board support
board/mpc8360epb/Makefile | 45 +++ board/mpc8360epb/config.mk | 26 ++ board/mpc8360epb/mpc8360epb.c | 579 +++++++++++++++++++++++++++++++++++++++++ board/mpc8360epb/pci.c | 302 +++++++++++++++++++++ board/mpc8360epb/u-boot.lds | 123 +++++++++ doc/README.mpc8360epb | 120 ++++++++ include/configs/MPC8360EPB.h | 550 +++++++++++++++++++++++++++++++++++++++ 7 files changed, 1745 insertions(+), 0 deletions(-) create mode 100644 board/mpc8360epb/Makefile create mode 100644 board/mpc8360epb/config.mk create mode 100644 board/mpc8360epb/mpc8360epb.c create mode 100644 board/mpc8360epb/pci.c create mode 100644 board/mpc8360epb/u-boot.lds create mode 100644 doc/README.mpc8360epb create mode 100644 include/configs/MPC8360EPB.h
ed996f041bca0efa0718b4588d4a4ce2bac2c2a1 diff --git a/board/mpc8360epb/Makefile b/board/mpc8360epb/Makefile new file mode 100644 index 0000000..7e47c67 --- /dev/null +++ b/board/mpc8360epb/Makefile @@ -0,0 +1,45 @@ +# +# Copyright (C) 2006 Freescale Semiconductor, Inc. +# +# 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 = lib$(BOARD).a
+OBJS := $(BOARD).o pci.o
+$(LIB): $(OBJS) $(SOBJS)
- $(AR) crv $@ $(OBJS)
+clean:
- rm -f $(SOBJS) $(OBJS)
+distclean: clean
- rm -f $(LIB) core *.bak .depend
+####################################################################### ##
+.depend: Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c)
$(CC) -M $(CPPFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@
+-include .depend
+####################################################################### ## diff --git a/board/mpc8360epb/config.mk b/board/mpc8360epb/config.mk new file mode 100644 index 0000000..f740db3 --- /dev/null +++ b/board/mpc8360epb/config.mk @@ -0,0 +1,26 @@ +# Copyright (C) 2006 Freescale Semiconductor, Inc. +# +# 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,
</snip>
Your U-Boot support team