diff options
Diffstat (limited to 'board/gen860t')
| -rw-r--r-- | board/gen860t/Makefile | 18 | ||||
| -rw-r--r-- | board/gen860t/README | 15 | ||||
| -rw-r--r-- | board/gen860t/beeper.c | 18 | ||||
| -rw-r--r-- | board/gen860t/beeper.h | 18 | ||||
| -rw-r--r-- | board/gen860t/flash.c | 18 | ||||
| -rw-r--r-- | board/gen860t/fpga.c | 19 | ||||
| -rw-r--r-- | board/gen860t/fpga.h | 19 | ||||
| -rw-r--r-- | board/gen860t/gen860t.c | 18 | ||||
| -rw-r--r-- | board/gen860t/ioport.c | 18 | ||||
| -rw-r--r-- | board/gen860t/ioport.h | 18 | ||||
| -rw-r--r-- | board/gen860t/u-boot-flashenv.lds | 18 | ||||
| -rw-r--r-- | board/gen860t/u-boot.lds | 18 | 
12 files changed, 12 insertions, 203 deletions
| diff --git a/board/gen860t/Makefile b/board/gen860t/Makefile index 585362691..03551852e 100644 --- a/board/gen860t/Makefile +++ b/board/gen860t/Makefile @@ -2,23 +2,7 @@  # (C) Copyright 2000-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 +# SPDX-License-Identifier:	GPL-2.0+  #  include $(TOPDIR)/config.mk diff --git a/board/gen860t/README b/board/gen860t/README index e20680db0..3ef8ae196 100644 --- a/board/gen860t/README +++ b/board/gen860t/README @@ -119,20 +119,7 @@ All new code to support the GEN860T board is:  and the following license applies: -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, -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 +SPDX-License-Identifier:	GPL-2.0+  Thanks to Wolfgang Denk for a great software package and to everyone  who contributed to its development. diff --git a/board/gen860t/beeper.c b/board/gen860t/beeper.c index c6be83f65..0bebca98b 100644 --- a/board/gen860t/beeper.c +++ b/board/gen860t/beeper.c @@ -2,23 +2,7 @@   * (C) Copyright 2002   * Keith Outwater, keith_outwater@mvis.com   * - * 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 + * SPDX-License-Identifier:	GPL-2.0+   */  #include <common.h> diff --git a/board/gen860t/beeper.h b/board/gen860t/beeper.h index 125b90f4b..0734fcab0 100644 --- a/board/gen860t/beeper.h +++ b/board/gen860t/beeper.h @@ -2,23 +2,7 @@   * (C) Copyright 2002   * Keith Outwater, keith_outwater@mvis.com   * - * 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 + * SPDX-License-Identifier:	GPL-2.0+   */  void init_beeper(void); diff --git a/board/gen860t/flash.c b/board/gen860t/flash.c index 827d9e0c6..8433d5d2c 100644 --- a/board/gen860t/flash.c +++ b/board/gen860t/flash.c @@ -3,23 +3,7 @@   * Wolfgang Denk, DENX Software Engineering, wd@denx.de.   * Keith Outwater, keith_outwater@mvsi.com   * - * 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 + * SPDX-License-Identifier:	GPL-2.0+   */  #include <common.h> diff --git a/board/gen860t/fpga.c b/board/gen860t/fpga.c index 4c360096b..b7984dd0f 100644 --- a/board/gen860t/fpga.c +++ b/board/gen860t/fpga.c @@ -3,24 +3,7 @@   * Rich Ireland, Enterasys Networks, rireland@enterasys.com.   * Keith Outwater, keith_outwater@mvis.com.   * - * 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 - * + * SPDX-License-Identifier:	GPL-2.0+   */  /* diff --git a/board/gen860t/fpga.h b/board/gen860t/fpga.h index 18deb739b..95c15c4f6 100644 --- a/board/gen860t/fpga.h +++ b/board/gen860t/fpga.h @@ -3,24 +3,7 @@   * Rich Ireland, Enterasys Networks, rireland@enterasys.com.   * Keith Outwater, keith_outwater@mvis.com.   * - * 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 - * + * SPDX-License-Identifier:	GPL-2.0+   */  /* diff --git a/board/gen860t/gen860t.c b/board/gen860t/gen860t.c index d175858d4..fe139f492 100644 --- a/board/gen860t/gen860t.c +++ b/board/gen860t/gen860t.c @@ -3,23 +3,7 @@   * Wolfgang Denk, DENX Software Engineering, wd@denx.de.   * Keith Outwater, keith_outwater@mvis.com   * - * 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 + * SPDX-License-Identifier:	GPL-2.0+   */  #include <virtex2.h> diff --git a/board/gen860t/ioport.c b/board/gen860t/ioport.c index 8d4692533..7cd209b7a 100644 --- a/board/gen860t/ioport.c +++ b/board/gen860t/ioport.c @@ -2,23 +2,7 @@   * (C) Copyright 2000   * 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 + * SPDX-License-Identifier:	GPL-2.0+   */  #include <common.h> diff --git a/board/gen860t/ioport.h b/board/gen860t/ioport.h index 3af0bc998..4ac2aa4dd 100644 --- a/board/gen860t/ioport.h +++ b/board/gen860t/ioport.h @@ -3,23 +3,7 @@   * Wolfgang Denk, DENX Software Engineering, wd@denx.de.   * Keith Outwater, keith_outwater@mvis.com   * - * 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 + * SPDX-License-Identifier:	GPL-2.0+   */  #define NUM_PORTS	4 diff --git a/board/gen860t/u-boot-flashenv.lds b/board/gen860t/u-boot-flashenv.lds index 30138dd81..7a4a7637e 100644 --- a/board/gen860t/u-boot-flashenv.lds +++ b/board/gen860t/u-boot-flashenv.lds @@ -5,23 +5,7 @@   * (C) Copyright 2000-2010   * 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 + * SPDX-License-Identifier:	GPL-2.0+   */  OUTPUT_ARCH(powerpc) diff --git a/board/gen860t/u-boot.lds b/board/gen860t/u-boot.lds index 08fb4aa1f..3371c0a3e 100644 --- a/board/gen860t/u-boot.lds +++ b/board/gen860t/u-boot.lds @@ -4,23 +4,7 @@   * (C) Copyright 2000-2010   * 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 + * SPDX-License-Identifier:	GPL-2.0+   */  OUTPUT_ARCH(powerpc) |