"Das U-Boot" Source Tree

SPDX-License-Identifier: convert PIBS licensed files

This commit adapts the files that were derived from PIBS (PowerPC
Initialization and Boot Software) codeto using SPDX License
Identifiers.

So far, SPDX has not assigned an official License ID for the PIBS
license yet, so this should be considered preliminary.

Note that the following files contained incorrect license information:

arch/powerpc/cpu/ppc4xx/4xx_uart.c
arch/powerpc/cpu/ppc4xx/start.S
arch/powerpc/include/asm/ppc440.h

These files included, in addition to the GPL-2.0 / ibm-pibs dual
license as inherited from PIBS, a GPL-2.0+ license header which was
obviously incorrect. This has been removed.

Signed-off-by: Wolfgang Denk <wd@denx.de>
Cc: Stefan Roese <sr@denx.de>
Signed-off-by: Wolfgang Denk <wd@denx.de>

Conflicts:
Licenses/README
Acked-by: Stefan Roese <sr@denx.de>

authored by

Wolfgang Denk and committed by
Tom Rini
46263f2d bcd4d4eb

+80 -528
+2
Licenses/README
··· 51 51 GNU Lesser General Public License v2.1 or later LGPL-2.1+ Y lgpl-2.1.txt http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 52 52 eCos license version 2.0 eCos-2.0 eCos-2.0.txt http://www.gnu.org/licenses/ecos-license.html 53 53 BSD 2-Clause License BSD-2-Clause Y bsd-2-clause.txt https://spdx.org/licenses/BSD-2-Clause 54 + IBM PIBS (PowerPC Initialization and ibm-pibs ibm-pibs.txt 55 + Boot Software) license
+17
Licenses/ibm-pibs.txt
··· 1 + This source code has been made available to you by IBM on an AS-IS 2 + basis. Anyone receiving this source is licensed under IBM 3 + copyrights to use it in any way he or she deems fit, including 4 + copying it, modifying it, compiling it, and redistributing it either 5 + with or without modifications. No license under IBM patents or 6 + patent applications is to be implied by the copyright license. 7 + 8 + Any user of this software should understand that IBM cannot provide 9 + technical support for this software and will not be responsible for 10 + any consequences resulting from the use of this software. 11 + 12 + Any person who transfers this source code or any derivative work 13 + must include the IBM copyright notice, this paragraph, and the 14 + preceding two paragraphs in the transferred software. 15 + 16 + COPYRIGHT I B M CORPORATION 1995 17 + LICENSED MATERIAL - PROGRAM PROPERTY OF I B M
+2 -23
arch/powerpc/cpu/ppc4xx/4xx_pci.c
··· 1 - /*-----------------------------------------------------------------------------+ 2 - * This source code is dual-licensed. You may use it under the terms of 3 - * the GNU General Public license version 2, or under the license below. 4 - * 5 - * This source code has been made available to you by IBM on an AS-IS 6 - * basis. Anyone receiving this source is licensed under IBM 7 - * copyrights to use it in any way he or she deems fit, including 8 - * copying it, modifying it, compiling it, and redistributing it either 9 - * with or without modifications. No license under IBM patents or 10 - * patent applications is to be implied by the copyright license. 11 - * 12 - * Any user of this software should understand that IBM cannot provide 13 - * technical support for this software and will not be responsible for 14 - * any consequences resulting from the use of this software. 15 - * 16 - * Any person who transfers this source code or any derivative work 17 - * must include the IBM copyright notice, this paragraph, and the 18 - * preceding two paragraphs in the transferred software. 19 - * 20 - * COPYRIGHT I B M CORPORATION 1995 21 - * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M 22 - *-----------------------------------------------------------------------------*/ 23 - /*----------------------------------------------------------------------------+ 1 + /* 2 + * SPDX-License-Identifier: GPL-2.0 ibm-pibs 24 3 * 25 4 * File Name: 405gp_pci.c 26 5 *
+1 -24
arch/powerpc/cpu/ppc4xx/4xx_uart.c
··· 5 5 * (C) Copyright 2010 6 6 * Stefan Roese, DENX Software Engineering, sr@denx.de. 7 7 * 8 - * SPDX-License-Identifier: GPL-2.0+ 9 - */ 10 - 11 - /* 12 - * This source code is dual-licensed. You may use it under the terms of the 13 - * GNU General Public License version 2, or under the license below. 14 - * 15 - * This source code has been made available to you by IBM on an AS-IS 16 - * basis. Anyone receiving this source is licensed under IBM 17 - * copyrights to use it in any way he or she deems fit, including 18 - * copying it, modifying it, compiling it, and redistributing it either 19 - * with or without modifications. No license under IBM patents or 20 - * patent applications is to be implied by the copyright license. 21 - * 22 - * Any user of this software should understand that IBM cannot provide 23 - * technical support for this software and will not be responsible for 24 - * any consequences resulting from the use of this software. 25 - * 26 - * Any person who transfers this source code or any derivative work 27 - * must include the IBM copyright notice, this paragraph, and the 28 - * preceding two paragraphs in the transferred software. 29 - * 30 - * COPYRIGHT I B M CORPORATION 1995 31 - * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M 8 + * SPDX-License-Identifier: GPL-2.0 ibm-pibs 32 9 */ 33 10 34 11 #include <common.h>
+3 -22
arch/powerpc/cpu/ppc4xx/miiphy.c
··· 1 - /*-----------------------------------------------------------------------------+ 2 - | This source code is dual-licensed. You may use it under the terms of the 3 - | GNU General Public License version 2, or under the license below. 4 - | 5 - | This source code has been made available to you by IBM on an AS-IS 6 - | basis. Anyone receiving this source is licensed under IBM 7 - | copyrights to use it in any way he or she deems fit, including 8 - | copying it, modifying it, compiling it, and redistributing it either 9 - | with or without modifications. No license under IBM patents or 10 - | patent applications is to be implied by the copyright license. 11 - | 12 - | Any user of this software should understand that IBM cannot provide 13 - | technical support for this software and will not be responsible for 14 - | any consequences resulting from the use of this software. 15 - | 16 - | Any person who transfers this source code or any derivative work 17 - | must include the IBM copyright notice, this paragraph, and the 18 - | preceding two paragraphs in the transferred software. 19 - | 20 - | COPYRIGHT I B M CORPORATION 1995 21 - | LICENSED MATERIAL - PROGRAM PROPERTY OF I B M 22 - +-----------------------------------------------------------------------------*/ 1 + /* 2 + * SPDX-License-Identifier: GPL-2.0 ibm-pibs 3 + */ 23 4 /*-----------------------------------------------------------------------------+ 24 5 | 25 6 | File Name: miiphy.c
+1 -40
arch/powerpc/cpu/ppc4xx/start.S
··· 6 6 * Copyright (c) 2008 Nuovation System Designs, LLC 7 7 * Grant Erickson <gerickson@nuovations.com> 8 8 * 9 - * See file CREDITS for list of people who contributed to this 10 - * project. 11 - * 12 - * This program is free software; you can redistribute it and/or 13 - * modify it under the terms of the GNU General Public License as 14 - * published by the Free Software Foundation; either version 2 of 15 - * the License, or (at your option) any later version. 16 - * 17 - * This program is distributed in the hope that it will be useful, 18 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 19 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 - * GNU General Public License for more details. 21 - * 22 - * You should have received a copy of the GNU General Public License 23 - * along with this program; if not, write to the Free Software 24 - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 25 - * MA 02111-1307 USA 26 - */ 27 - /*------------------------------------------------------------------------------+ 28 - * This source code is dual-licensed. You may use it under the terms of the 29 - * GNU General Public License version 2, or under the license below. 30 - * 31 - * This source code has been made available to you by IBM on an AS-IS 32 - * basis. Anyone receiving this source is licensed under IBM 33 - * copyrights to use it in any way he or she deems fit, including 34 - * copying it, modifying it, compiling it, and redistributing it either 35 - * with or without modifications. No license under IBM patents or 36 - * patent applications is to be implied by the copyright license. 37 - * 38 - * Any user of this software should understand that IBM cannot provide 39 - * technical support for this software and will not be responsible for 40 - * any consequences resulting from the use of this software. 41 - * 42 - * Any person who transfers this source code or any derivative work 43 - * must include the IBM copyright notice, this paragraph, and the 44 - * preceding two paragraphs in the transferred software. 45 - * 46 - * COPYRIGHT I B M CORPORATION 1995 47 - * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M 48 - *------------------------------------------------------------------------------- 9 + * SPDX-License-Identifier: GPL-2.0 ibm-pibs 49 10 */ 50 11 51 12 /*
+3 -22
arch/powerpc/include/asm/ppc405.h
··· 1 - /*----------------------------------------------------------------------------+ 2 - | This source code is dual-licensed. You may use it under the terms of the 3 - | GNU General Public License version 2, or under the license below. 4 - | 5 - | This source code has been made available to you by IBM on an AS-IS 6 - | basis. Anyone receiving this source is licensed under IBM 7 - | copyrights to use it in any way he or she deems fit, including 8 - | copying it, modifying it, compiling it, and redistributing it either 9 - | with or without modifications. No license under IBM patents or 10 - | patent applications is to be implied by the copyright license. 11 - | 12 - | Any user of this software should understand that IBM cannot provide 13 - | technical support for this software and will not be responsible for 14 - | any consequences resulting from the use of this software. 15 - | 16 - | Any person who transfers this source code or any derivative work 17 - | must include the IBM copyright notice, this paragraph, and the 18 - | preceding two paragraphs in the transferred software. 19 - | 20 - | COPYRIGHT I B M CORPORATION 1999 21 - | LICENSED MATERIAL - PROGRAM PROPERTY OF I B M 22 - +----------------------------------------------------------------------------*/ 1 + /* 2 + * SPDX-License-Identifier: GPL-2.0 ibm-pibs 3 + */ 23 4 24 5 #ifndef __PPC405_H__ 25 6 #define __PPC405_H__
+1 -24
arch/powerpc/include/asm/ppc440.h
··· 1 - /*----------------------------------------------------------------------------+ 2 - | This source code is dual-licensed. You may use it under the terms of the 3 - | GNU General Public License version 2, or under the license below. 4 - | 5 - | This source code has been made available to you by IBM on an AS-IS 6 - | basis. Anyone receiving this source is licensed under IBM 7 - | copyrights to use it in any way he or she deems fit, including 8 - | copying it, modifying it, compiling it, and redistributing it either 9 - | with or without modifications. No license under IBM patents or 10 - | patent applications is to be implied by the copyright license. 11 - | 12 - | Any user of this software should understand that IBM cannot provide 13 - | technical support for this software and will not be responsible for 14 - | any consequences resulting from the use of this software. 15 - | 16 - | Any person who transfers this source code or any derivative work 17 - | must include the IBM copyright notice, this paragraph, and the 18 - | preceding two paragraphs in the transferred software. 19 - | 20 - | COPYRIGHT I B M CORPORATION 1999 21 - | LICENSED MATERIAL - PROGRAM PROPERTY OF I B M 22 - +----------------------------------------------------------------------------*/ 23 - 24 1 /* 25 2 * (C) Copyright 2006 26 3 * Sylvie Gohl, AMCC/IBM, gohl.sylvie@fr.ibm.com ··· 32 9 * (C) Copyright 2010 33 10 * Stefan Roese, DENX Software Engineering, sr@denx.de. 34 11 * 35 - * SPDX-License-Identifier: GPL-2.0+ 12 + * SPDX-License-Identifier: GPL-2.0 ibm-pibs 36 13 */ 37 14 38 15 #ifndef __PPC440_H__
+3 -22
arch/powerpc/include/asm/ppc4xx-emac.h
··· 1 - /*----------------------------------------------------------------------------+ 2 - | This source code is dual-licensed. You may use it under the terms of the 3 - | GNU General Public License version 2, or under the license below. 4 - | 5 - | This source code has been made available to you by IBM on an AS-IS 6 - | basis. Anyone receiving this source is licensed under IBM 7 - | copyrights to use it in any way he or she deems fit, including 8 - | copying it, modifying it, compiling it, and redistributing it either 9 - | with or without modifications. No license under IBM patents or 10 - | patent applications is to be implied by the copyright license. 11 - | 12 - | Any user of this software should understand that IBM cannot provide 13 - | technical support for this software and will not be responsible for 14 - | any consequences resulting from the use of this software. 15 - | 16 - | Any person who transfers this source code or any derivative work 17 - | must include the IBM copyright notice, this paragraph, and the 18 - | preceding two paragraphs in the transferred software. 19 - | 20 - | COPYRIGHT I B M CORPORATION 1999 21 - | LICENSED MATERIAL - PROGRAM PROPERTY OF I B M 22 - +----------------------------------------------------------------------------*/ 1 + /* 2 + * SPDX-License-Identifier: GPL-2.0 ibm-pibs 3 + */ 23 4 /*----------------------------------------------------------------------------+ 24 5 | 25 6 | File Name: enetemac.h
+3 -22
arch/powerpc/include/asm/ppc4xx-mal.h
··· 1 1 /* include/mal.h, openbios_walnut, walnut_bios 8/6/99 08:48:40 */ 2 - /*----------------------------------------------------------------------------+ 3 - | This source code is dual-licensed. You may use it under the terms of the 4 - | GNU General Public License version 2, or under the license below. 5 - | 6 - | This source code has been made available to you by IBM on an AS-IS 7 - | basis. Anyone receiving this source is licensed under IBM 8 - | copyrights to use it in any way he or she deems fit, including 9 - | copying it, modifying it, compiling it, and redistributing it either 10 - | with or without modifications. No license under IBM patents or 11 - | patent applications is to be implied by the copyright license. 12 - | 13 - | Any user of this software should understand that IBM cannot provide 14 - | technical support for this software and will not be responsible for 15 - | any consequences resulting from the use of this software. 16 - | 17 - | Any person who transfers this source code or any derivative work 18 - | must include the IBM copyright notice, this paragraph, and the 19 - | preceding two paragraphs in the transferred software. 20 - | 21 - | COPYRIGHT I B M CORPORATION 1999 22 - | LICENSED MATERIAL - PROGRAM PROPERTY OF I B M 23 - +----------------------------------------------------------------------------*/ 2 + /* 3 + * SPDX-License-Identifier: GPL-2.0 ibm-pibs 4 + */ 24 5 /*----------------------------------------------------------------------------+ 25 6 | 26 7 | File Name: mal.h
+3 -22
arch/powerpc/include/asm/ppc4xx.h
··· 1 - /*----------------------------------------------------------------------------+ 2 - | This source code is dual-licensed. You may use it under the terms of 3 - | the GNU General Public License version 2, or under the license below. 4 - | 5 - | This source code has been made available to you by IBM on an AS-IS 6 - | basis. Anyone receiving this source is licensed under IBM 7 - | copyrights to use it in any way he or she deems fit, including 8 - | copying it, modifying it, compiling it, and redistributing it either 9 - | with or without modifications. No license under IBM patents or 10 - | patent applications is to be implied by the copyright license. 11 - | 12 - | Any user of this software should understand that IBM cannot provide 13 - | technical support for this software and will not be responsible for 14 - | any consequences resulting from the use of this software. 15 - | 16 - | Any person who transfers this source code or any derivative work 17 - | must include the IBM copyright notice, this paragraph, and the 18 - | preceding two paragraphs in the transferred software. 19 - | 20 - | COPYRIGHT I B M CORPORATION 1999 21 - | LICENSED MATERIAL - PROGRAM PROPERTY OF I B M 22 - +----------------------------------------------------------------------------*/ 1 + /* 2 + * SPDX-License-Identifier: GPL-2.0 ibm-pibs 3 + */ 23 4 24 5 #ifndef __PPC4XX_H__ 25 6 #define __PPC4XX_H__
+3 -24
board/cray/L1/init.S
··· 1 - /*------------------------------------------------------------------------------+ */ 2 - /* */ 3 - /* This source code is dual-licensed. You may use it under the terms */ 4 - /* of the GNU General Public License version 2, or under the license */ 5 - /* below. */ 6 - /* */ 7 - /* This source code has been made available to you by IBM on an AS-IS */ 8 - /* basis. Anyone receiving this source is licensed under IBM */ 9 - /* copyrights to use it in any way he or she deems fit, including */ 10 - /* copying it, modifying it, compiling it, and redistributing it either */ 11 - /* with or without modifications. No license under IBM patents or */ 12 - /* patent applications is to be implied by the copyright license. */ 13 - /* */ 14 - /* Any user of this software should understand that IBM cannot provide */ 15 - /* technical support for this software and will not be responsible for */ 16 - /* any consequences resulting from the use of this software. */ 17 - /* */ 18 - /* Any person who transfers this source code or any derivative work */ 19 - /* must include the IBM copyright notice, this paragraph, and the */ 20 - /* preceding two paragraphs in the transferred software. */ 21 - /* */ 22 - /* COPYRIGHT I B M CORPORATION 1995 */ 23 - /* LICENSED MATERIAL - PROGRAM PROPERTY OF I B M */ 24 - /*------------------------------------------------------------------------------- */ 1 + /* 2 + * SPDX-License-Identifier: GPL-2.0 ibm-pibs 3 + */ 25 4 26 5 /*----------------------------------------------------------------------------- */ 27 6 /* Function: ext_bus_cntlr_init */
+3 -23
board/csb272/init.S
··· 1 - /****************************************************************************** 2 - * This source code is dual-licensed. You may use it under the terms of the 3 - * GNU General Public License version 2, or under the license below. 4 - * 5 - * This source code has been made available to you by IBM on an AS-IS 6 - * basis. Anyone receiving this source is licensed under IBM 7 - * copyrights to use it in any way he or she deems fit, including 8 - * copying it, modifying it, compiling it, and redistributing it either 9 - * with or without modifications. No license under IBM patents or 10 - * patent applications is to be implied by the copyright license. 11 - * 12 - * Any user of this software should understand that IBM cannot provide 13 - * technical support for this software and will not be responsible for 14 - * any consequences resulting from the use of this software. 15 - * 16 - * Any person who transfers this source code or any derivative work 17 - * must include the IBM copyright notice, this paragraph, and the 18 - * preceding two paragraphs in the transferred software. 19 - * 20 - * COPYRIGHT I B M CORPORATION 1995 21 - * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M 22 - * 23 - *****************************************************************************/ 1 + /* 2 + * SPDX-License-Identifier: GPL-2.0 ibm-pibs 3 + */ 24 4 #include <config.h> 25 5 #include <asm/ppc4xx.h> 26 6
+3 -23
board/csb472/init.S
··· 1 - /****************************************************************************** 2 - * This source code is dual-licensed. You may use it under the terms of the 3 - * GNU General Public License version 2, or under the license below. 4 - * 5 - * This source code has been made available to you by IBM on an AS-IS 6 - * basis. Anyone receiving this source is licensed under IBM 7 - * copyrights to use it in any way he or she deems fit, including 8 - * copying it, modifying it, compiling it, and redistributing it either 9 - * with or without modifications. No license under IBM patents or 10 - * patent applications is to be implied by the copyright license. 11 - * 12 - * Any user of this software should understand that IBM cannot provide 13 - * technical support for this software and will not be responsible for 14 - * any consequences resulting from the use of this software. 15 - * 16 - * Any person who transfers this source code or any derivative work 17 - * must include the IBM copyright notice, this paragraph, and the 18 - * preceding two paragraphs in the transferred software. 19 - * 20 - * COPYRIGHT I B M CORPORATION 1995 21 - * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M 22 - * 23 - *****************************************************************************/ 1 + /* 2 + * SPDX-License-Identifier: GPL-2.0 ibm-pibs 3 + */ 24 4 #include <config.h> 25 5 #include <asm/ppc4xx.h> 26 6
+3 -25
board/esd/pci405/writeibm.S
··· 1 - /*------------------------------------------------------------------------------+ */ 2 - /* */ 3 - /* This source code is dual-licensed. You may use it under the terms */ 4 - /* of the GNU General Public License version 2, or under the license */ 5 - /* below. */ 6 - /* */ 7 - /* This source code has been made available to you by IBM on an AS-IS */ 8 - /* basis. Anyone receiving this source is licensed under IBM */ 9 - /* copyrights to use it in any way he or she deems fit, including */ 10 - /* copying it, modifying it, compiling it, and redistributing it either */ 11 - /* with or without modifications. No license under IBM patents or */ 12 - /* patent applications is to be implied by the copyright license. */ 13 - /* */ 14 - /* Any user of this software should understand that IBM cannot provide */ 15 - /* technical support for this software and will not be responsible for */ 16 - /* any consequences resulting from the use of this software. */ 17 - /* */ 18 - /* Any person who transfers this source code or any derivative work */ 19 - /* must include the IBM copyright notice, this paragraph, and the */ 20 - /* preceding two paragraphs in the transferred software. */ 21 - /* */ 22 - /* COPYRIGHT I B M CORPORATION 1995 */ 23 - /* LICENSED MATERIAL - PROGRAM PROPERTY OF I B M */ 24 - /*------------------------------------------------------------------------------- */ 25 - 1 + /* 2 + * SPDX-License-Identifier: GPL-2.0 ibm-pibs 3 + */ 26 4 /*----------------------------------------------------------------------------- */ 27 5 /* Function: ext_bus_cntlr_init */ 28 6 /* Description: Initializes the External Bus Controller for the external */
+3 -25
board/jse/init.S
··· 1 - /*------------------------------------------------------------------------+ */ 2 - /* */ 3 - /* This source code is dual-licensed. You may use it under the terms */ 4 - /* of the GNU General Public License version 2, or under the license */ 5 - /* below. */ 6 - /* */ 7 - /* This source code has been made available to you by IBM on an AS-IS */ 8 - /* basis. Anyone receiving this source is licensed under IBM */ 9 - /* copyrights to use it in any way he or she deems fit, including */ 10 - /* copying it, modifying it, compiling it, and redistributing it either */ 11 - /* with or without modifications. No license under IBM patents or */ 12 - /* patent applications is to be implied by the copyright license. */ 13 - /* */ 14 - /* Any user of this software should understand that IBM cannot provide */ 15 - /* technical support for this software and will not be responsible for */ 16 - /* any consequences resulting from the use of this software. */ 17 - /* */ 18 - /* Any person who transfers this source code or any derivative work */ 19 - /* must include the IBM copyright notice, this paragraph, and the */ 20 - /* preceding two paragraphs in the transferred software. */ 21 - /* */ 22 - /* COPYRIGHT I B M CORPORATION 1995 */ 23 - /* LICENSED MATERIAL - PROGRAM PROPERTY OF I B M */ 24 - /*------------------------------------------------------------------------- */ 25 - 1 + /* 2 + * SPDX-License-Identifier: GPL-2.0 ibm-pibs 3 + */ 26 4 /*------------------------------------------------------------------------- */ 27 5 /* Function: ext_bus_cntlr_init */ 28 6 /* Description: Initializes the External Bus Controller for the external */
+3 -22
board/mpl/common/pci.c
··· 1 - /*-----------------------------------------------------------------------------+ 2 - | This source code is dual-licensed. You may use it under the terms of 3 - | the GNU General Public License version 2, or under the license below. 4 - | 5 - | This source code has been made available to you by IBM on an AS-IS 6 - | basis. Anyone receiving this source is licensed under IBM 7 - | copyrights to use it in any way he or she deems fit, including 8 - | copying it, modifying it, compiling it, and redistributing it either 9 - | with or without modifications. No license under IBM patents or 10 - | patent applications is to be implied by the copyright license. 11 - | 12 - | Any user of this software should understand that IBM cannot provide 13 - | technical support for this software and will not be responsible for 14 - | any consequences resulting from the use of this software. 15 - | 16 - | Any person who transfers this source code or any derivative work 17 - | must include the IBM copyright notice, this paragraph, and the 18 - | preceding two paragraphs in the transferred software. 19 - | 20 - | COPYRIGHT I B M CORPORATION 1995 21 - | LICENSED MATERIAL - PROGRAM PROPERTY OF I B M 22 - +-----------------------------------------------------------------------------*/ 1 + /* 2 + * SPDX-License-Identifier: GPL-2.0 ibm-pibs 3 + */ 23 4 /* 24 5 * Adapted for PIP405 03.07.01 25 6 * Denis Peter, MPL AG Switzerland, d.peter@mpl.ch
+3 -23
board/mpl/mip405/init.S
··· 1 - /*------------------------------------------------------------------------------+ 2 - * This source code is dual-licensed. You may use it under the terms of 3 - * the GNU General Public License version 2, or under the license below. 4 - * 5 - * This source code has been made available to you by IBM on an AS-IS 6 - * basis. Anyone receiving this source is licensed under IBM 7 - * copyrights to use it in any way he or she deems fit, including 8 - * copying it, modifying it, compiling it, and redistributing it either 9 - * with or without modifications. No license under IBM patents or 10 - * patent applications is to be implied by the copyright license. 11 - * 12 - * Any user of this software should understand that IBM cannot provide 13 - * technical support for this software and will not be responsible for 14 - * any consequences resulting from the use of this software. 15 - * 16 - * Any person who transfers this source code or any derivative work 17 - * must include the IBM copyright notice, this paragraph, and the 18 - * preceding two paragraphs in the transferred software. 19 - * 20 - * COPYRIGHT I B M CORPORATION 1995 21 - * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M 22 - *-------------------------------------------------------------------------------*/ 23 - 1 + /* 2 + * SPDX-License-Identifier: GPL-2.0 ibm-pibs 3 + */ 24 4 /*----------------------------------------------------------------------------- 25 5 * Function: ext_bus_cntlr_init 26 6 * Description: Initializes the External Bus Controller for the external
+3 -23
board/mpl/pip405/init.S
··· 1 - /*------------------------------------------------------------------------------+ 2 - * This source code is dual-licensed. You may use it under the terms of 3 - * the GNU General Public License version 2, or under the license below. 4 - * 5 - * This source code has been made available to you by IBM on an AS-IS 6 - * basis. Anyone receiving this source is licensed under IBM 7 - * copyrights to use it in any way he or she deems fit, including 8 - * copying it, modifying it, compiling it, and redistributing it either 9 - * with or without modifications. No license under IBM patents or 10 - * patent applications is to be implied by the copyright license. 11 - * 12 - * Any user of this software should understand that IBM cannot provide 13 - * technical support for this software and will not be responsible for 14 - * any consequences resulting from the use of this software. 15 - * 16 - * Any person who transfers this source code or any derivative work 17 - * must include the IBM copyright notice, this paragraph, and the 18 - * preceding two paragraphs in the transferred software. 19 - * 20 - * COPYRIGHT I B M CORPORATION 1995 21 - * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M 22 - *-------------------------------------------------------------------------------*/ 23 - 1 + /* 2 + * SPDX-License-Identifier: GPL-2.0 ibm-pibs 3 + */ 24 4 /*----------------------------------------------------------------------------- 25 5 * Function: ext_bus_cntlr_init 26 6 * Description: Initializes the External Bus Controller for the external
+3 -28
board/sc3/init.S
··· 1 - /*------------------------------------------------------------------------------+ 2 - * 3 - * This souce code has been made available to you by EuroDesign 4 - * (www.eurodsn.de). It's based on the original IBM source code, so 5 - * this follows: 6 - * 7 - * This source code is dual-licensed. You may use it under the terms of the 8 - * GNU General Public License version 2, or under the license below. 9 - * 10 - * This source code has been made available to you by IBM on an AS-IS 11 - * basis. Anyone receiving this source is licensed under IBM 12 - * copyrights to use it in any way he or she deems fit, including 13 - * copying it, modifying it, compiling it, and redistributing it either 14 - * with or without modifications. No license under IBM patents or 15 - * patent applications is to be implied by the copyright license. 16 - * 17 - * Any user of this software should understand that IBM cannot provide 18 - * technical support for this software and will not be responsible for 19 - * any consequences resulting from the use of this software. 20 - * 21 - * Any person who transfers this source code or any derivative work 22 - * must include the IBM copyright notice, this paragraph, and the 23 - * preceding two paragraphs in the transferred software. 24 - * 25 - * COPYRIGHT I B M CORPORATION 1995 26 - * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M 27 - *------------------------------------------------------------------------------- */ 28 - 1 + /* 2 + * SPDX-License-Identifier: GPL-2.0 ibm-pibs 3 + */ 29 4 #include <config.h> 30 5 #include <asm/ppc4xx.h> 31 6
+3 -23
board/w7o/init.S
··· 1 - /****************************************************************************** 2 - * This source code is dual-licensed. You may use it under the terms of the 3 - * GNU General Public License version 2, or under the license below. 4 - * 5 - * This source code has been made available to you by IBM on an AS-IS 6 - * basis. Anyone receiving this source is licensed under IBM 7 - * copyrights to use it in any way he or she deems fit, including 8 - * copying it, modifying it, compiling it, and redistributing it either 9 - * with or without modifications. No license under IBM patents or 10 - * patent applications is to be implied by the copyright license. 11 - * 12 - * Any user of this software should understand that IBM cannot provide 13 - * technical support for this software and will not be responsible for 14 - * any consequences resulting from the use of this software. 15 - * 16 - * Any person who transfers this source code or any derivative work 17 - * must include the IBM copyright notice, this paragraph, and the 18 - * preceding two paragraphs in the transferred software. 19 - * 20 - * COPYRIGHT I B M CORPORATION 1995 21 - * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M 22 - * 23 - *****************************************************************************/ 1 + /* 2 + * SPDX-License-Identifier: GPL-2.0 ibm-pibs 3 + */ 24 4 #include <config.h> 25 5 #include <asm/ppc4xx.h> 26 6
+3 -22
drivers/net/4xx_enet.c
··· 1 - /*-----------------------------------------------------------------------------+ 2 - * This source code is dual-licensed. You may use it under the terms of the 3 - * GNU General Public License version 2, or under the license below. 4 - * 5 - * This source code has been made available to you by IBM on an AS-IS 6 - * basis. Anyone receiving this source is licensed under IBM 7 - * copyrights to use it in any way he or she deems fit, including 8 - * copying it, modifying it, compiling it, and redistributing it either 9 - * with or without modifications. No license under IBM patents or 10 - * patent applications is to be implied by the copyright license. 11 - * 12 - * Any user of this software should understand that IBM cannot provide 13 - * technical support for this software and will not be responsible for 14 - * any consequences resulting from the use of this software. 15 - * 16 - * Any person who transfers this source code or any derivative work 17 - * must include the IBM copyright notice, this paragraph, and the 18 - * preceding two paragraphs in the transferred software. 19 - * 20 - * COPYRIGHT I B M CORPORATION 1995 21 - * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M 22 - *-----------------------------------------------------------------------------*/ 1 + /* 2 + * SPDX-License-Identifier: GPL-2.0 ibm-pibs 3 + */ 23 4 /*-----------------------------------------------------------------------------+ 24 5 * 25 6 * File Name: enetemac.c
+3 -22
drivers/net/npe/miiphy.c
··· 1 - /*-----------------------------------------------------------------------------+ 2 - | This source code is dual-licensed. You may use it under the terms of the 3 - | GNU General Public License version 2, or under the license below. 4 - | 5 - | This source code has been made available to you by IBM on an AS-IS 6 - | basis. Anyone receiving this source is licensed under IBM 7 - | copyrights to use it in any way he or she deems fit, including 8 - | copying it, modifying it, compiling it, and redistributing it either 9 - | with or without modifications. No license under IBM patents or 10 - | patent applications is to be implied by the copyright license. 11 - | 12 - | Any user of this software should understand that IBM cannot provide 13 - | technical support for this software and will not be responsible for 14 - | any consequences resulting from the use of this software. 15 - | 16 - | Any person who transfers this source code or any derivative work 17 - | must include the IBM copyright notice, this paragraph, and the 18 - | preceding two paragraphs in the transferred software. 19 - | 20 - | COPYRIGHT I B M CORPORATION 1995 21 - | LICENSED MATERIAL - PROGRAM PROPERTY OF I B M 22 - +-----------------------------------------------------------------------------*/ 1 + /* 2 + * SPDX-License-Identifier: GPL-2.0 ibm-pibs 3 + */ 23 4 /*-----------------------------------------------------------------------------+ 24 5 | 25 6 | File Name: miiphy.c
+5 -24
include/miiphy.h
··· 1 - /*----------------------------------------------------------------------------+ 2 - | This source code is dual-licensed. You may use it under the terms of the 3 - | GNU General Public License version 2, or under the license below. 4 - | 5 - | This source code has been made available to you by IBM on an AS-IS 6 - | basis. Anyone receiving this source is licensed under IBM 7 - | copyrights to use it in any way he or she deems fit, including 8 - | copying it, modifying it, compiling it, and redistributing it either 9 - | with or without modifications. No license under IBM patents or 10 - | patent applications is to be implied by the copyright license. 11 - | 12 - | Any user of this software should understand that IBM cannot provide 13 - | technical support for this software and will not be responsible for 14 - | any consequences resulting from the use of this software. 15 - | 16 - | Any person who transfers this source code or any derivative work 17 - | must include the IBM copyright notice, this paragraph, and the 18 - | preceding two paragraphs in the transferred software. 19 - | 20 - | COPYRIGHT I B M CORPORATION 1999 21 - | LICENSED MATERIAL - PROGRAM PROPERTY OF I B M 22 - | 23 - | Additions (C) Copyright 2009 Industrie Dial Face S.p.A. 24 - +----------------------------------------------------------------------------*/ 1 + /* 2 + * SPDX-License-Identifier: GPL-2.0 ibm-pibs 3 + * 4 + * Additions (C) Copyright 2009 Industrie Dial Face S.p.A. 5 + */ 25 6 /*----------------------------------------------------------------------------+ 26 7 | 27 8 | File Name: miiphy.h