Skip to content

Commit

Permalink
License: move to SPDX header
Browse files Browse the repository at this point in the history
To simplify Licensing, replace all headers with
SPDX identifiers.

Signed-off-by: Stefano Babic <sbabic@denx.de>
  • Loading branch information
sbabic committed Jan 15, 2018
1 parent ae420b1 commit 231c25b
Show file tree
Hide file tree
Showing 89 changed files with 107 additions and 1,078 deletions.
4 changes: 4 additions & 0 deletions bootloader/Makefile
@@ -1,3 +1,7 @@
# Copyright (C) 2014-2018 Stefano Babic <sbabic@denx.de>
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
lib-$(CONFIG_UBOOT) += uboot.o
lib-$(CONFIG_BOOTLOADER_NONE) += none.o
lib-$(CONFIG_BOOTLOADER_GRUB) += grub.o
Expand Down
14 changes: 1 addition & 13 deletions bootloader/ebg.c
Expand Up @@ -3,19 +3,7 @@
* Author: Andreas Reichel
* Copyright (C) 2018, Siemens AG
*
* 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.
* SPDX-License-Identifier: GPL-2.0-or-later
*/

#include <unistd.h>
Expand Down
14 changes: 1 addition & 13 deletions bootloader/grub.c
Expand Up @@ -2,19 +2,7 @@
* Author: Maciej Pijanowski maciej.pijanowski@3mdeb.com
* Copyright (C) 2017, 3mdeb
*
* 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.
* SPDX-License-Identifier: GPL-2.0-or-later
*/

#include "bootloader.h"
Expand Down
14 changes: 1 addition & 13 deletions bootloader/grub.h
Expand Up @@ -2,19 +2,7 @@
* Author: Maciej Pijanowski, maciej.pijanowski@3mdeb.com
* Copyright (C) 2017, 3mdeb
*
* 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.
* SPDX-License-Identifier: GPL-2.0-or-later
*/

#ifndef _GRUBENV_H
Expand Down
15 changes: 1 addition & 14 deletions bootloader/none.c
Expand Up @@ -2,20 +2,7 @@
* (C) Copyright 2017
* Stefano Babic, DENX Software Engineering, sbabic@denx.de.
*
* 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-or-later
*/

#include <unistd.h>
Expand Down
15 changes: 1 addition & 14 deletions bootloader/uboot.c
Expand Up @@ -2,20 +2,7 @@
* (C) Copyright 2017
* Stefano Babic, DENX Software Engineering, sbabic@denx.de.
*
* 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-or-later
*/

#include <stdio.h>
Expand Down
15 changes: 1 addition & 14 deletions bootloader/uboot.h
Expand Up @@ -2,20 +2,7 @@
* (C) Copyright 2002-2008
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*
* 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-or-later
*/

#include <stdint.h>
Expand Down
2 changes: 1 addition & 1 deletion core/Makefile
Expand Up @@ -6,7 +6,7 @@
#
# Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
#
# Licensed under GPLv2, see file LICENSE in this source tree.
# SPDX-License-Identifier: GPL-2.0-or-later

obj-y += swupdate.o \
cpio_utils.o \
Expand Down
14 changes: 1 addition & 13 deletions core/cpio_utils.c
Expand Up @@ -2,19 +2,7 @@
* (C) Copyright 2012
* Stefano Babic, DENX Software Engineering, sbabic@denx.de.
*
* 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.
* SPDX-License-Identifier: GPL-2.0-or-later
*/

#include <stdlib.h>
Expand Down
15 changes: 1 addition & 14 deletions core/handler.c
Expand Up @@ -3,20 +3,7 @@
* Stefano Babic, DENX Software Engineering, sbabic@denx.de.
* on behalf of ifm electronic GmbH
*
* 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-or-later
*/

#include <stdlib.h>
Expand Down
15 changes: 1 addition & 14 deletions core/notifier.c
Expand Up @@ -2,20 +2,7 @@
* (C) Copyright 2013-2016
* Stefano Babic, DENX Software Engineering, sbabic@denx.de.
*
* 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-or-later
*/

#include <stdio.h>
Expand Down
15 changes: 1 addition & 14 deletions core/parser.c
Expand Up @@ -2,20 +2,7 @@
* (C) Copyright 2013
* Stefano Babic, DENX Software Engineering, sbabic@denx.de.
*
* 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-or-later
*/

#include <unistd.h>
Expand Down
15 changes: 1 addition & 14 deletions core/pctl.c
Expand Up @@ -2,20 +2,7 @@
* (C) Copyright 2016
* Stefano Babic, DENX Software Engineering, sbabic@denx.de.
*
* 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-or-later
*/

#include <stdio.h>
Expand Down
14 changes: 1 addition & 13 deletions core/swupdate.c
Expand Up @@ -2,19 +2,7 @@
* (C) Copyright 2012-2016
* Stefano Babic, DENX Software Engineering, sbabic@denx.de.
*
* 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.
* SPDX-License-Identifier: GPL-2.0-or-later
*/

#include <stdio.h>
Expand Down
14 changes: 1 addition & 13 deletions core/syslog.c
Expand Up @@ -2,19 +2,7 @@
* (C) Copyright 2016
* Denis Osterland, Diehl Connectivity Solutions GmbH, Denis.Osterland@diehl.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.
*
* 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.
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include <syslog.h>
#include <stdio.h>
Expand Down
15 changes: 1 addition & 14 deletions core/util.c
Expand Up @@ -2,20 +2,7 @@
* (C) Copyright 2013
* Stefano Babic, DENX Software Engineering, sbabic@denx.de.
*
* 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-or-later
*/

#include <stdio.h>
Expand Down
4 changes: 4 additions & 0 deletions corelib/Makefile
@@ -1,3 +1,7 @@
# Copyright (C) 2014-2018 Stefano Babic <sbabic@denx.de>
#
# SPDX-License-Identifier: GPL-2.0-or-later

lib-y += installer.o \
network_thread.o \
stream_interface.o \
Expand Down
15 changes: 1 addition & 14 deletions corelib/artifacts_versions.c
Expand Up @@ -2,20 +2,7 @@
* (C) Copyright 2016
* Stefano Babic, DENX Software Engineering, sbabic@denx.de.
*
* 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-or-later
*/

#include <stdio.h>
Expand Down
14 changes: 1 addition & 13 deletions corelib/channel_curl.c
Expand Up @@ -2,19 +2,7 @@
* Author: Christian Storm
* Copyright (C) 2016, Siemens AG
*
* 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.
* SPDX-License-Identifier: GPL-2.0-or-later
*/

#include <stdbool.h>
Expand Down
14 changes: 1 addition & 13 deletions corelib/downloader.c
Expand Up @@ -2,19 +2,7 @@
* (C) Copyright 2015
* Stefano Babic, DENX Software Engineering, sbabic@denx.de.
*
* 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.
* SPDX-License-Identifier: GPL-2.0-or-later
*/

#include <stdio.h>
Expand Down

0 comments on commit 231c25b

Please sign in to comment.