mirror of
https://github.com/systemd/systemd.git
synced 2025-02-13 01:57:42 +03:00
systemd-bootchart: relicense to LGPLv2.1+
When we merged systemd-bootchart we omitted relicensing this to LGPL. Now that code is being used for other purposes we need to make sure the code is shareable within systemd without further problems. The original committers and contributors of bootchart before it was merged all have agreed with the relicensing.
This commit is contained in:
parent
38d70045d1
commit
cd3bccaaf7
@ -1,17 +1,24 @@
|
|||||||
/*
|
/***
|
||||||
* bootchart.c
|
bootchart.c - This file is part of systemd-bootchart
|
||||||
*
|
|
||||||
* Copyright (C) 2009-2012 Intel Coproration
|
|
||||||
*
|
|
||||||
* Authors:
|
|
||||||
* Auke Kok <auke-jan.h.kok@intel.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; version 2
|
|
||||||
* of the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
Copyright (C) 2009-2013 Intel Coproration
|
||||||
|
|
||||||
|
Authors:
|
||||||
|
Auke Kok <auke-jan.h.kok@intel.com>
|
||||||
|
|
||||||
|
systemd is free software; you can redistribute it and/or modify it
|
||||||
|
under the terms of the GNU Lesser General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2.1 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
systemd 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
|
||||||
|
Lesser General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public License
|
||||||
|
along with systemd; If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
***/
|
||||||
|
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
@ -1,16 +1,24 @@
|
|||||||
/*
|
/***
|
||||||
* bootchart.h
|
bootchart.h - This file is part of systemd-bootchart
|
||||||
*
|
|
||||||
* Copyright (C) 2009-2012 Intel Coproration
|
Copyright (C) 2009-2013 Intel Coproration
|
||||||
*
|
|
||||||
* Authors:
|
Authors:
|
||||||
* Auke Kok <auke-jan.h.kok@intel.com>
|
Auke Kok <auke-jan.h.kok@intel.com>
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or
|
systemd is free software; you can redistribute it and/or modify it
|
||||||
* modify it under the terms of the GNU General Public License
|
under the terms of the GNU Lesser General Public License as published by
|
||||||
* as published by the Free Software Foundation; version 2
|
the Free Software Foundation; either version 2.1 of the License, or
|
||||||
* of the License.
|
(at your option) any later version.
|
||||||
*/
|
|
||||||
|
systemd 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
|
||||||
|
Lesser General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public License
|
||||||
|
along with systemd; If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
***/
|
||||||
|
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
|
|
||||||
|
@ -1,16 +1,24 @@
|
|||||||
/*
|
/***
|
||||||
* log.c
|
log.c - This file is part of systemd-bootchart
|
||||||
*
|
|
||||||
* Copyright (C) 2009-2012 Intel Coproration
|
Copyright (C) 2009-2013 Intel Coproration
|
||||||
*
|
|
||||||
* Authors:
|
Authors:
|
||||||
* Auke Kok <auke-jan.h.kok@intel.com>
|
Auke Kok <auke-jan.h.kok@intel.com>
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or
|
systemd is free software; you can redistribute it and/or modify it
|
||||||
* modify it under the terms of the GNU General Public License
|
under the terms of the GNU Lesser General Public License as published by
|
||||||
* as published by the Free Software Foundation; version 2
|
the Free Software Foundation; either version 2.1 of the License, or
|
||||||
* of the License.
|
(at your option) any later version.
|
||||||
*/
|
|
||||||
|
systemd 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
|
||||||
|
Lesser General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public License
|
||||||
|
along with systemd; If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
***/
|
||||||
|
|
||||||
#define _GNU_SOURCE 1
|
#define _GNU_SOURCE 1
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
@ -1,16 +1,24 @@
|
|||||||
/*
|
/***
|
||||||
* svg.c
|
bootchart.c - This file is part of systemd-bootchart
|
||||||
*
|
|
||||||
* Copyright (C) 2009-2012 Intel Coproration
|
Copyright (C) 2009-2013 Intel Coproration
|
||||||
*
|
|
||||||
* Authors:
|
Authors:
|
||||||
* Auke Kok <auke-jan.h.kok@intel.com>
|
Auke Kok <auke-jan.h.kok@intel.com>
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or
|
systemd is free software; you can redistribute it and/or modify it
|
||||||
* modify it under the terms of the GNU General Public License
|
under the terms of the GNU Lesser General Public License as published by
|
||||||
* as published by the Free Software Foundation; version 2
|
the Free Software Foundation; either version 2.1 of the License, or
|
||||||
* of the License.
|
(at your option) any later version.
|
||||||
*/
|
|
||||||
|
systemd 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
|
||||||
|
Lesser General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public License
|
||||||
|
along with systemd; If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
***/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user