]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
Merge pull request #8676 from keszybz/drop-license-boilerplate
authorLennart Poettering <lennart@poettering.net>
Tue, 10 Apr 2018 12:53:31 +0000 (14:53 +0200)
committerGitHub <noreply@github.com>
Tue, 10 Apr 2018 12:53:31 +0000 (14:53 +0200)
Drop license boilerplate

1  2 
hwdb/meson.build
man/systemd-fsck@.service.xml
src/analyze/analyze.c
src/core/unit.c
src/libsystemd/sd-event/sd-event.c
src/shared/dissect-image.c
src/shared/sleep-config.c
src/shared/sleep-config.h
src/sleep/sleep.c
src/systemctl/systemctl.c
src/test/test-sleep.c

Simple merge
Simple merge
Simple merge
diff --cc src/core/unit.c
Simple merge
Simple merge
Simple merge
Simple merge
index b91a4b2d26d496fc7c009ce255f1cc08ae2a53c3,987d81cf287f67c3ac65b54fb19bd495cf1abd77..c1f381522a6ab862fc2ed3daa211763d33578802
@@@ -5,27 -5,11 +5,14 @@@
    This file is part of systemd.
  
    Copyright 2013 Zbigniew JÄ™drzejewski-Szmek
-   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 <linux/fiemap.h>
  #include "time-util.h"
  
 +int read_fiemap(int fd, struct fiemap **ret);
  int parse_sleep_config(const char *verb, char ***modes, char ***states, usec_t *delay);
 +int find_hibernate_location(char **device, char **type, size_t *size, size_t *used);
  
  int can_sleep(const char *verb);
  int can_sleep_disk(char **types);
index cee3f345939d3f64e1a3f3eba40fc7e7f6ffa5f0,b5acbdb4c448ce66f4365ef0ea70fd419bab8cb7..9b310aaccfcf976d828dc8a11de9d9bf714129d1
@@@ -4,21 -4,7 +4,8 @@@
  
    Copyright 2012 Lennart Poettering
    Copyright 2013 Zbigniew JÄ™drzejewski-Szmek
 +  Copyright 2010-2017 Canonical
    Copyright 2018 Dell Inc.
-   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 <errno.h>
Simple merge
index 05fd6c0abfa7aa2d91afaf9db6948641fd24205c,21ca1074782b6e1a86a5f2146a0f7965c9b7418b..f52aea447dcb5a929c00aac29c64f07550b9e772
@@@ -3,25 -3,10 +3,12 @@@
    This file is part of systemd.
  
    Copyright 2012 Lennart Poettering
-   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 <linux/fiemap.h>
  #include <stdio.h>
  
 +#include "fd-util.h"
  #include "log.h"
  #include "sleep-config.h"
  #include "strv.h"