diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-08 18:22:19 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-09 16:31:55 +0100 |
commit | ffae400179fd0b64f8882cf79d78e1c0f2d74bee (patch) | |
tree | cc5e242e02c3621ea124552ecb9779371500335b /scripts/lib/wic | |
parent | c7592b01478def091b6787412390c61e7ce0a0cd (diff) | |
download | poky-ffae400179fd0b64f8882cf79d78e1c0f2d74bee.tar.gz |
meta/lib+scripts: Convert to SPDX license headers
This adds SPDX license headers in place of the wide assortment of things
currently in our script headers. We default to GPL-2.0-only except for the
oeqa code where it was clearly submitted and marked as MIT on the most part
or some scripts which had the "or later" GPL versioning.
The patch also drops other obsolete bits of file headers where they were
encoountered such as editor modelines, obsolete maintainer information or
the phrase "All rights reserved" which is now obsolete and not required in
copyright headers (in this case its actually confusing for licensing as all
rights were not reserved).
More work is needed for OE-Core but this takes care of the bulk of the scripts
and meta/lib directories.
The top level LICENSE files are tweaked to match the new structure and the
SPDX naming.
(From OE-Core rev: f8c9c511b5f1b7dbd45b77f345cb6c048ae6763e)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/wic')
-rw-r--r-- | scripts/lib/wic/__init__.py | 12 | ||||
-rw-r--r-- | scripts/lib/wic/engine.py | 16 | ||||
-rw-r--r-- | scripts/lib/wic/filemap.py | 9 | ||||
-rw-r--r-- | scripts/lib/wic/help.py | 17 | ||||
-rw-r--r-- | scripts/lib/wic/ksparser.py | 15 | ||||
-rw-r--r-- | scripts/lib/wic/misc.py | 16 | ||||
-rw-r--r-- | scripts/lib/wic/partition.py | 16 | ||||
-rw-r--r-- | scripts/lib/wic/pluginbase.py | 12 | ||||
-rw-r--r-- | scripts/lib/wic/plugins/imager/direct.py | 16 | ||||
-rw-r--r-- | scripts/lib/wic/plugins/source/bootimg-efi.py | 16 | ||||
-rw-r--r-- | scripts/lib/wic/plugins/source/bootimg-partition.py | 15 | ||||
-rw-r--r-- | scripts/lib/wic/plugins/source/bootimg-pcbios.py | 16 | ||||
-rw-r--r-- | scripts/lib/wic/plugins/source/isoimage-isohybrid.py | 15 | ||||
-rw-r--r-- | scripts/lib/wic/plugins/source/rawcopy.py | 15 | ||||
-rw-r--r-- | scripts/lib/wic/plugins/source/rootfs.py | 16 |
15 files changed, 16 insertions, 206 deletions
diff --git a/scripts/lib/wic/__init__.py b/scripts/lib/wic/__init__.py index 85876b138c..ba2d614061 100644 --- a/scripts/lib/wic/__init__.py +++ b/scripts/lib/wic/__init__.py | |||
@@ -3,18 +3,8 @@ | |||
3 | # Copyright (c) 2007 Red Hat, Inc. | 3 | # Copyright (c) 2007 Red Hat, Inc. |
4 | # Copyright (c) 2011 Intel, Inc. | 4 | # Copyright (c) 2011 Intel, Inc. |
5 | # | 5 | # |
6 | # This program is free software; you can redistribute it and/or modify it | 6 | # SPDX-License-Identifier: GPL-2.0-only |
7 | # under the terms of the GNU General Public License as published by the Free | ||
8 | # Software Foundation; version 2 of the License | ||
9 | # | 7 | # |
10 | # This program is distributed in the hope that it will be useful, but | ||
11 | # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | ||
12 | # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
13 | # for more details. | ||
14 | # | ||
15 | # You should have received a copy of the GNU General Public License along | ||
16 | # with this program; if not, write to the Free Software Foundation, Inc., 59 | ||
17 | # Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
18 | 8 | ||
19 | class WicError(Exception): | 9 | class WicError(Exception): |
20 | pass | 10 | pass |
diff --git a/scripts/lib/wic/engine.py b/scripts/lib/wic/engine.py index ab33fa6042..42e93c3eb8 100644 --- a/scripts/lib/wic/engine.py +++ b/scripts/lib/wic/engine.py | |||
@@ -1,21 +1,7 @@ | |||
1 | # ex:ts=4:sw=4:sts=4:et | ||
2 | # -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- | ||
3 | # | 1 | # |
4 | # Copyright (c) 2013, Intel Corporation. | 2 | # Copyright (c) 2013, Intel Corporation. |
5 | # All rights reserved. | ||
6 | # | 3 | # |
7 | # This program is free software; you can redistribute it and/or modify | 4 | # SPDX-License-Identifier: GPL-2.0-only |
8 | # it under the terms of the GNU General Public License version 2 as | ||
9 | # published by the Free Software Foundation. | ||
10 | # | ||
11 | # This program is distributed in the hope that it will be useful, | ||
12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | # GNU General Public License for more details. | ||
15 | # | ||
16 | # You should have received a copy of the GNU General Public License along | ||
17 | # with this program; if not, write to the Free Software Foundation, Inc., | ||
18 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
19 | # | 5 | # |
20 | # DESCRIPTION | 6 | # DESCRIPTION |
21 | 7 | ||
diff --git a/scripts/lib/wic/filemap.py b/scripts/lib/wic/filemap.py index abbf958b8c..244c07a71c 100644 --- a/scripts/lib/wic/filemap.py +++ b/scripts/lib/wic/filemap.py | |||
@@ -1,13 +1,8 @@ | |||
1 | # | ||
1 | # Copyright (c) 2012 Intel, Inc. | 2 | # Copyright (c) 2012 Intel, Inc. |
2 | # | 3 | # |
3 | # This program is free software; you can redistribute it and/or modify | 4 | # SPDX-License-Identifier: GPL-2.0-only |
4 | # it under the terms of the GNU General Public License, version 2, | ||
5 | # as published by the Free Software Foundation. | ||
6 | # | 5 | # |
7 | # This program is distributed in the hope that it will be useful, but | ||
8 | # WITHOUT ANY WARRANTY; without even the implied warranty of | ||
9 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
10 | # General Public License for more details. | ||
11 | 6 | ||
12 | """ | 7 | """ |
13 | This module implements python implements a way to get file block. Two methods | 8 | This module implements python implements a way to get file block. Two methods |
diff --git a/scripts/lib/wic/help.py b/scripts/lib/wic/help.py index 64f08052c7..3a40fc0ea2 100644 --- a/scripts/lib/wic/help.py +++ b/scripts/lib/wic/help.py | |||
@@ -1,21 +1,6 @@ | |||
1 | # ex:ts=4:sw=4:sts=4:et | ||
2 | # -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- | ||
3 | # | ||
4 | # Copyright (c) 2013, Intel Corporation. | 1 | # Copyright (c) 2013, Intel Corporation. |
5 | # All rights reserved. | ||
6 | # | ||
7 | # This program is free software; you can redistribute it and/or modify | ||
8 | # it under the terms of the GNU General Public License version 2 as | ||
9 | # published by the Free Software Foundation. | ||
10 | # | ||
11 | # This program is distributed in the hope that it will be useful, | ||
12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | # GNU General Public License for more details. | ||
15 | # | 2 | # |
16 | # You should have received a copy of the GNU General Public License along | 3 | # SPDX-License-Identifier: GPL-2.0-only |
17 | # with this program; if not, write to the Free Software Foundation, Inc., | ||
18 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
19 | # | 4 | # |
20 | # DESCRIPTION | 5 | # DESCRIPTION |
21 | # This module implements some basic help invocation functions along | 6 | # This module implements some basic help invocation functions along |
diff --git a/scripts/lib/wic/ksparser.py b/scripts/lib/wic/ksparser.py index 08baf76123..62048213b3 100644 --- a/scripts/lib/wic/ksparser.py +++ b/scripts/lib/wic/ksparser.py | |||
@@ -1,21 +1,8 @@ | |||
1 | #!/usr/bin/env python -tt | 1 | #!/usr/bin/env python -tt |
2 | # ex:ts=4:sw=4:sts=4:et | ||
3 | # -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- | ||
4 | # | 2 | # |
5 | # Copyright (c) 2016 Intel, Inc. | 3 | # Copyright (c) 2016 Intel, Inc. |
6 | # | 4 | # |
7 | # This program is free software; you can redistribute it and/or modify it | 5 | # SPDX-License-Identifier: GPL-2.0-only |
8 | # under the terms of the GNU General Public License as published by the Free | ||
9 | # Software Foundation; version 2 of the License | ||
10 | # | ||
11 | # This program is distributed in the hope that it will be useful, but | ||
12 | # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | ||
13 | # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
14 | # for more details. | ||
15 | # | ||
16 | # You should have received a copy of the GNU General Public License along | ||
17 | # with this program; if not, write to the Free Software Foundation, Inc., 59 | ||
18 | # Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
19 | # | 6 | # |
20 | # DESCRIPTION | 7 | # DESCRIPTION |
21 | # This module provides parser for kickstart format | 8 | # This module provides parser for kickstart format |
diff --git a/scripts/lib/wic/misc.py b/scripts/lib/wic/misc.py index ee888b478c..1f199b9f23 100644 --- a/scripts/lib/wic/misc.py +++ b/scripts/lib/wic/misc.py | |||
@@ -1,21 +1,7 @@ | |||
1 | # ex:ts=4:sw=4:sts=4:et | ||
2 | # -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- | ||
3 | # | 1 | # |
4 | # Copyright (c) 2013, Intel Corporation. | 2 | # Copyright (c) 2013, Intel Corporation. |
5 | # All rights reserved. | ||
6 | # | 3 | # |
7 | # This program is free software; you can redistribute it and/or modify | 4 | # SPDX-License-Identifier: GPL-2.0-only |
8 | # it under the terms of the GNU General Public License version 2 as | ||
9 | # published by the Free Software Foundation. | ||
10 | # | ||
11 | # This program is distributed in the hope that it will be useful, | ||
12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | # GNU General Public License for more details. | ||
15 | # | ||
16 | # You should have received a copy of the GNU General Public License along | ||
17 | # with this program; if not, write to the Free Software Foundation, Inc., | ||
18 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
19 | # | 5 | # |
20 | # DESCRIPTION | 6 | # DESCRIPTION |
21 | # This module provides a place to collect various wic-related utils | 7 | # This module provides a place to collect various wic-related utils |
diff --git a/scripts/lib/wic/partition.py b/scripts/lib/wic/partition.py index df31c17c40..01466b258d 100644 --- a/scripts/lib/wic/partition.py +++ b/scripts/lib/wic/partition.py | |||
@@ -1,21 +1,7 @@ | |||
1 | # ex:ts=4:sw=4:sts=4:et | ||
2 | # -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- | ||
3 | # | 1 | # |
4 | # Copyright (c) 2013-2016 Intel Corporation. | 2 | # Copyright (c) 2013-2016 Intel Corporation. |
5 | # All rights reserved. | ||
6 | # | 3 | # |
7 | # This program is free software; you can redistribute it and/or modify | 4 | # SPDX-License-Identifier: GPL-2.0-only |
8 | # it under the terms of the GNU General Public License version 2 as | ||
9 | # published by the Free Software Foundation. | ||
10 | # | ||
11 | # This program is distributed in the hope that it will be useful, | ||
12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | # GNU General Public License for more details. | ||
15 | # | ||
16 | # You should have received a copy of the GNU General Public License along | ||
17 | # with this program; if not, write to the Free Software Foundation, Inc., | ||
18 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
19 | # | 5 | # |
20 | # DESCRIPTION | 6 | # DESCRIPTION |
21 | # This module provides the OpenEmbedded partition object definitions. | 7 | # This module provides the OpenEmbedded partition object definitions. |
diff --git a/scripts/lib/wic/pluginbase.py b/scripts/lib/wic/pluginbase.py index 686d2fee3b..bfb73ca615 100644 --- a/scripts/lib/wic/pluginbase.py +++ b/scripts/lib/wic/pluginbase.py | |||
@@ -2,18 +2,8 @@ | |||
2 | # | 2 | # |
3 | # Copyright (c) 2011 Intel, Inc. | 3 | # Copyright (c) 2011 Intel, Inc. |
4 | # | 4 | # |
5 | # This program is free software; you can redistribute it and/or modify it | 5 | # SPDX-License-Identifier: GPL-2.0-only |
6 | # under the terms of the GNU General Public License as published by the Free | ||
7 | # Software Foundation; version 2 of the License | ||
8 | # | 6 | # |
9 | # This program is distributed in the hope that it will be useful, but | ||
10 | # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | ||
11 | # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
12 | # for more details. | ||
13 | # | ||
14 | # You should have received a copy of the GNU General Public License along | ||
15 | # with this program; if not, write to the Free Software Foundation, Inc., 59 | ||
16 | # Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
17 | 7 | ||
18 | __all__ = ['ImagerPlugin', 'SourcePlugin'] | 8 | __all__ = ['ImagerPlugin', 'SourcePlugin'] |
19 | 9 | ||
diff --git a/scripts/lib/wic/plugins/imager/direct.py b/scripts/lib/wic/plugins/imager/direct.py index bb14a334b2..67addeff3e 100644 --- a/scripts/lib/wic/plugins/imager/direct.py +++ b/scripts/lib/wic/plugins/imager/direct.py | |||
@@ -1,21 +1,7 @@ | |||
1 | # ex:ts=4:sw=4:sts=4:et | ||
2 | # -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- | ||
3 | # | 1 | # |
4 | # Copyright (c) 2013, Intel Corporation. | 2 | # Copyright (c) 2013, Intel Corporation. |
5 | # All rights reserved. | ||
6 | # | 3 | # |
7 | # This program is free software; you can redistribute it and/or modify | 4 | # SPDX-License-Identifier: GPL-2.0-only |
8 | # it under the terms of the GNU General Public License version 2 as | ||
9 | # published by the Free Software Foundation. | ||
10 | # | ||
11 | # This program is distributed in the hope that it will be useful, | ||
12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | # GNU General Public License for more details. | ||
15 | # | ||
16 | # You should have received a copy of the GNU General Public License along | ||
17 | # with this program; if not, write to the Free Software Foundation, Inc., | ||
18 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
19 | # | 5 | # |
20 | # DESCRIPTION | 6 | # DESCRIPTION |
21 | # This implements the 'direct' imager plugin class for 'wic' | 7 | # This implements the 'direct' imager plugin class for 'wic' |
diff --git a/scripts/lib/wic/plugins/source/bootimg-efi.py b/scripts/lib/wic/plugins/source/bootimg-efi.py index 83a7e189ed..3540b08440 100644 --- a/scripts/lib/wic/plugins/source/bootimg-efi.py +++ b/scripts/lib/wic/plugins/source/bootimg-efi.py | |||
@@ -1,21 +1,7 @@ | |||
1 | # ex:ts=4:sw=4:sts=4:et | ||
2 | # -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- | ||
3 | # | 1 | # |
4 | # Copyright (c) 2014, Intel Corporation. | 2 | # Copyright (c) 2014, Intel Corporation. |
5 | # All rights reserved. | ||
6 | # | 3 | # |
7 | # This program is free software; you can redistribute it and/or modify | 4 | # SPDX-License-Identifier: GPL-2.0-only |
8 | # it under the terms of the GNU General Public License version 2 as | ||
9 | # published by the Free Software Foundation. | ||
10 | # | ||
11 | # This program is distributed in the hope that it will be useful, | ||
12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | # GNU General Public License for more details. | ||
15 | # | ||
16 | # You should have received a copy of the GNU General Public License along | ||
17 | # with this program; if not, write to the Free Software Foundation, Inc., | ||
18 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
19 | # | 5 | # |
20 | # DESCRIPTION | 6 | # DESCRIPTION |
21 | # This implements the 'bootimg-efi' source plugin class for 'wic' | 7 | # This implements the 'bootimg-efi' source plugin class for 'wic' |
diff --git a/scripts/lib/wic/plugins/source/bootimg-partition.py b/scripts/lib/wic/plugins/source/bootimg-partition.py index ddc880be36..138986a71e 100644 --- a/scripts/lib/wic/plugins/source/bootimg-partition.py +++ b/scripts/lib/wic/plugins/source/bootimg-partition.py | |||
@@ -1,18 +1,5 @@ | |||
1 | # ex:ts=4:sw=4:sts=4:et | ||
2 | # -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- | ||
3 | # | 1 | # |
4 | # This program is free software; you can redistribute it and/or modify | 2 | # SPDX-License-Identifier: GPL-2.0-only |
5 | # it under the terms of the GNU General Public License version 2 as | ||
6 | # published by the Free Software Foundation. | ||
7 | # | ||
8 | # This program is distributed in the hope that it will be useful, | ||
9 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | # GNU General Public License for more details. | ||
12 | # | ||
13 | # You should have received a copy of the GNU General Public License along | ||
14 | # with this program; if not, write to the Free Software Foundation, Inc., | ||
15 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
16 | # | 3 | # |
17 | # DESCRIPTION | 4 | # DESCRIPTION |
18 | # This implements the 'bootimg-partition' source plugin class for | 5 | # This implements the 'bootimg-partition' source plugin class for |
diff --git a/scripts/lib/wic/plugins/source/bootimg-pcbios.py b/scripts/lib/wic/plugins/source/bootimg-pcbios.py index 9347aa7fcb..6c9f54a897 100644 --- a/scripts/lib/wic/plugins/source/bootimg-pcbios.py +++ b/scripts/lib/wic/plugins/source/bootimg-pcbios.py | |||
@@ -1,21 +1,7 @@ | |||
1 | # ex:ts=4:sw=4:sts=4:et | ||
2 | # -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- | ||
3 | # | 1 | # |
4 | # Copyright (c) 2014, Intel Corporation. | 2 | # Copyright (c) 2014, Intel Corporation. |
5 | # All rights reserved. | ||
6 | # | 3 | # |
7 | # This program is free software; you can redistribute it and/or modify | 4 | # SPDX-License-Identifier: GPL-2.0-only |
8 | # it under the terms of the GNU General Public License version 2 as | ||
9 | # published by the Free Software Foundation. | ||
10 | # | ||
11 | # This program is distributed in the hope that it will be useful, | ||
12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | # GNU General Public License for more details. | ||
15 | # | ||
16 | # You should have received a copy of the GNU General Public License along | ||
17 | # with this program; if not, write to the Free Software Foundation, Inc., | ||
18 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
19 | # | 5 | # |
20 | # DESCRIPTION | 6 | # DESCRIPTION |
21 | # This implements the 'bootimg-pcbios' source plugin class for 'wic' | 7 | # This implements the 'bootimg-pcbios' source plugin class for 'wic' |
diff --git a/scripts/lib/wic/plugins/source/isoimage-isohybrid.py b/scripts/lib/wic/plugins/source/isoimage-isohybrid.py index 170077c22c..96d07ff629 100644 --- a/scripts/lib/wic/plugins/source/isoimage-isohybrid.py +++ b/scripts/lib/wic/plugins/source/isoimage-isohybrid.py | |||
@@ -1,18 +1,5 @@ | |||
1 | # ex:ts=4:sw=4:sts=4:et | ||
2 | # -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- | ||
3 | |||
4 | # This program is free software; you can redistribute it and/or modify | ||
5 | # it under the terms of the GNU General Public License version 2 as | ||
6 | # published by the Free Software Foundation. | ||
7 | # | ||
8 | # This program is distributed in the hope that it will be useful, | ||
9 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | # GNU General Public License for more details. | ||
12 | # | 1 | # |
13 | # You should have received a copy of the GNU General Public License along | 2 | # SPDX-License-Identifier: GPL-2.0-only |
14 | # with this program; if not, write to the Free Software Foundation, Inc., | ||
15 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
16 | # | 3 | # |
17 | # DESCRIPTION | 4 | # DESCRIPTION |
18 | # This implements the 'isoimage-isohybrid' source plugin class for 'wic' | 5 | # This implements the 'isoimage-isohybrid' source plugin class for 'wic' |
diff --git a/scripts/lib/wic/plugins/source/rawcopy.py b/scripts/lib/wic/plugins/source/rawcopy.py index e86398ac8f..df86d6729c 100644 --- a/scripts/lib/wic/plugins/source/rawcopy.py +++ b/scripts/lib/wic/plugins/source/rawcopy.py | |||
@@ -1,18 +1,5 @@ | |||
1 | # ex:ts=4:sw=4:sts=4:et | ||
2 | # -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- | ||
3 | # | 1 | # |
4 | # This program is free software; you can redistribute it and/or modify | 2 | # SPDX-License-Identifier: GPL-2.0-only |
5 | # it under the terms of the GNU General Public License version 2 as | ||
6 | # published by the Free Software Foundation. | ||
7 | # | ||
8 | # This program is distributed in the hope that it will be useful, | ||
9 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | # GNU General Public License for more details. | ||
12 | # | ||
13 | # You should have received a copy of the GNU General Public License along | ||
14 | # with this program; if not, write to the Free Software Foundation, Inc., | ||
15 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
16 | # | 3 | # |
17 | 4 | ||
18 | import logging | 5 | import logging |
diff --git a/scripts/lib/wic/plugins/source/rootfs.py b/scripts/lib/wic/plugins/source/rootfs.py index aec720fb22..e26e95b991 100644 --- a/scripts/lib/wic/plugins/source/rootfs.py +++ b/scripts/lib/wic/plugins/source/rootfs.py | |||
@@ -1,21 +1,7 @@ | |||
1 | # ex:ts=4:sw=4:sts=4:et | ||
2 | # -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- | ||
3 | # | 1 | # |
4 | # Copyright (c) 2014, Intel Corporation. | 2 | # Copyright (c) 2014, Intel Corporation. |
5 | # All rights reserved. | ||
6 | # | 3 | # |
7 | # This program is free software; you can redistribute it and/or modify | 4 | # SPDX-License-Identifier: GPL-2.0-only |
8 | # it under the terms of the GNU General Public License version 2 as | ||
9 | # published by the Free Software Foundation. | ||
10 | # | ||
11 | # This program is distributed in the hope that it will be useful, | ||
12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | # GNU General Public License for more details. | ||
15 | # | ||
16 | # You should have received a copy of the GNU General Public License along | ||
17 | # with this program; if not, write to the Free Software Foundation, Inc., | ||
18 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
19 | # | 5 | # |
20 | # DESCRIPTION | 6 | # DESCRIPTION |
21 | # This implements the 'rootfs' source plugin class for 'wic' | 7 | # This implements the 'rootfs' source plugin class for 'wic' |