diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-01 11:47:13 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-04 10:44:10 +0100 |
| commit | cf9c0be3f69135633c0800d95e77677569a79839 (patch) | |
| tree | 9ae6591dbddd4b27032e0ad8e3f3c5e16151d735 /bitbake/bin | |
| parent | 79834a71447f89c52c6c9ad62c9bcbf9b8e0e05b (diff) | |
| download | poky-cf9c0be3f69135633c0800d95e77677569a79839.tar.gz | |
bitbake: bitbake: Drop duplicate license boilerplace text
With the introduction of SPDX-License-Identifier headers, we don't need a ton
of header boilerplate in every file. Simplify the files and rely on the top
level for the full licence text.
(Bitbake rev: 695d84397b68cc003186e22f395caa378b06bc75)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/bin')
| -rwxr-xr-x | bitbake/bin/bitbake | 12 | ||||
| -rwxr-xr-x | bitbake/bin/bitbake-diffsigs | 12 | ||||
| -rwxr-xr-x | bitbake/bin/bitbake-hashserv | 13 | ||||
| -rwxr-xr-x | bitbake/bin/bitbake-layers | 12 | ||||
| -rwxr-xr-x | bitbake/bin/bitbake-selftest | 12 | ||||
| -rwxr-xr-x | bitbake/bin/bitdoc | 12 | ||||
| -rwxr-xr-x | bitbake/bin/toaster | 12 | ||||
| -rwxr-xr-x | bitbake/bin/toaster-eventreplay | 12 |
8 files changed, 1 insertions, 96 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index 0205b67f99..e425f70a58 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake | |||
| @@ -11,18 +11,6 @@ | |||
| 11 | # | 11 | # |
| 12 | # SPDX-License-Identifier: GPL-2.0-only | 12 | # SPDX-License-Identifier: GPL-2.0-only |
| 13 | # | 13 | # |
| 14 | # This program is free software; you can redistribute it and/or modify | ||
| 15 | # it under the terms of the GNU General Public License version 2 as | ||
| 16 | # published by the Free Software Foundation. | ||
| 17 | # | ||
| 18 | # This program is distributed in the hope that it will be useful, | ||
| 19 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 20 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 21 | # GNU General Public License for more details. | ||
| 22 | # | ||
| 23 | # You should have received a copy of the GNU General Public License along | ||
| 24 | # with this program; if not, write to the Free Software Foundation, Inc., | ||
| 25 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
| 26 | 14 | ||
| 27 | import os | 15 | import os |
| 28 | import sys | 16 | import sys |
diff --git a/bitbake/bin/bitbake-diffsigs b/bitbake/bin/bitbake-diffsigs index de4e3786e9..19420a2df6 100755 --- a/bitbake/bin/bitbake-diffsigs +++ b/bitbake/bin/bitbake-diffsigs | |||
| @@ -7,18 +7,6 @@ | |||
| 7 | # | 7 | # |
| 8 | # SPDX-License-Identifier: GPL-2.0-only | 8 | # SPDX-License-Identifier: GPL-2.0-only |
| 9 | # | 9 | # |
| 10 | # This program is free software; you can redistribute it and/or modify | ||
| 11 | # it under the terms of the GNU General Public License version 2 as | ||
| 12 | # published by the Free Software Foundation. | ||
| 13 | # | ||
| 14 | # This program is distributed in the hope that it will be useful, | ||
| 15 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 16 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 17 | # GNU General Public License for more details. | ||
| 18 | # | ||
| 19 | # You should have received a copy of the GNU General Public License along | ||
| 20 | # with this program; if not, write to the Free Software Foundation, Inc., | ||
| 21 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
| 22 | 10 | ||
| 23 | import os | 11 | import os |
| 24 | import sys | 12 | import sys |
diff --git a/bitbake/bin/bitbake-hashserv b/bitbake/bin/bitbake-hashserv index 924e602592..848a0ca39f 100755 --- a/bitbake/bin/bitbake-hashserv +++ b/bitbake/bin/bitbake-hashserv | |||
| @@ -4,18 +4,7 @@ | |||
| 4 | # | 4 | # |
| 5 | # SPDX-License-Identifier: GPL-2.0-only | 5 | # SPDX-License-Identifier: GPL-2.0-only |
| 6 | # | 6 | # |
| 7 | # This program is free software; you can redistribute it and/or modify | 7 | |
| 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 | import os | 8 | import os |
| 20 | import sys | 9 | import sys |
| 21 | import logging | 10 | import logging |
diff --git a/bitbake/bin/bitbake-layers b/bitbake/bin/bitbake-layers index da52990515..a884dc1f8d 100755 --- a/bitbake/bin/bitbake-layers +++ b/bitbake/bin/bitbake-layers | |||
| @@ -9,18 +9,6 @@ | |||
| 9 | # | 9 | # |
| 10 | # SPDX-License-Identifier: GPL-2.0-only | 10 | # SPDX-License-Identifier: GPL-2.0-only |
| 11 | # | 11 | # |
| 12 | # This program is free software; you can redistribute it and/or modify | ||
| 13 | # it under the terms of the GNU General Public License version 2 as | ||
| 14 | # published by the Free Software Foundation. | ||
| 15 | # | ||
| 16 | # This program is distributed in the hope that it will be useful, | ||
| 17 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 18 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 19 | # GNU General Public License for more details. | ||
| 20 | # | ||
| 21 | # You should have received a copy of the GNU General Public License along | ||
| 22 | # with this program; if not, write to the Free Software Foundation, Inc., | ||
| 23 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
| 24 | 12 | ||
| 25 | import logging | 13 | import logging |
| 26 | import os | 14 | import os |
diff --git a/bitbake/bin/bitbake-selftest b/bitbake/bin/bitbake-selftest index 5b2a5e1d15..20553e9814 100755 --- a/bitbake/bin/bitbake-selftest +++ b/bitbake/bin/bitbake-selftest | |||
| @@ -4,18 +4,6 @@ | |||
| 4 | # | 4 | # |
| 5 | # SPDX-License-Identifier: GPL-2.0-only | 5 | # SPDX-License-Identifier: GPL-2.0-only |
| 6 | # | 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 | # | ||
| 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 | 7 | ||
| 20 | import os | 8 | import os |
| 21 | import sys, logging | 9 | import sys, logging |
diff --git a/bitbake/bin/bitdoc b/bitbake/bin/bitdoc index cfe54a9236..4839a6489f 100755 --- a/bitbake/bin/bitdoc +++ b/bitbake/bin/bitdoc | |||
| @@ -6,18 +6,6 @@ | |||
| 6 | # | 6 | # |
| 7 | # SPDX-License-Identifier: GPL-2.0-only | 7 | # SPDX-License-Identifier: GPL-2.0-only |
| 8 | # | 8 | # |
| 9 | # This program is free software; you can redistribute it and/or modify | ||
| 10 | # it under the terms of the GNU General Public License version 2 as | ||
| 11 | # published by the Free Software Foundation. | ||
| 12 | # | ||
| 13 | # This program is distributed in the hope that it will be useful, | ||
| 14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 16 | # GNU General Public License for more details. | ||
| 17 | # | ||
| 18 | # You should have received a copy of the GNU General Public License along | ||
| 19 | # with this program; if not, write to the Free Software Foundation, Inc., | ||
| 20 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
| 21 | 9 | ||
| 22 | import optparse, os, sys | 10 | import optparse, os, sys |
| 23 | 11 | ||
diff --git a/bitbake/bin/toaster b/bitbake/bin/toaster index 9da2a2649c..c3472dfee8 100755 --- a/bitbake/bin/toaster +++ b/bitbake/bin/toaster | |||
| @@ -6,18 +6,6 @@ | |||
| 6 | # | 6 | # |
| 7 | # SPDX-License-Identifier: GPL-2.0-or-later | 7 | # SPDX-License-Identifier: GPL-2.0-or-later |
| 8 | # | 8 | # |
| 9 | # This program is free software; you can redistribute it and/or modify | ||
| 10 | # it under the terms of the GNU General Public License as published by | ||
| 11 | # the Free Software Foundation; either version 2 of the License, or | ||
| 12 | # (at your option) any later version. | ||
| 13 | # | ||
| 14 | # This program is distributed in the hope that it will be useful, | ||
| 15 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 16 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 17 | # GNU General Public License for more details. | ||
| 18 | # | ||
| 19 | # You should have received a copy of the GNU General Public License | ||
| 20 | # along with this program. If not, see http://www.gnu.org/licenses/. | ||
| 21 | 9 | ||
| 22 | HELP=" | 10 | HELP=" |
| 23 | Usage: source toaster start|stop [webport=<address:port>] [noweb] [nobuild] [toasterdir] | 11 | Usage: source toaster start|stop [webport=<address:port>] [noweb] [nobuild] [toasterdir] |
diff --git a/bitbake/bin/toaster-eventreplay b/bitbake/bin/toaster-eventreplay index abd91fe8b2..3f01a3cc00 100755 --- a/bitbake/bin/toaster-eventreplay +++ b/bitbake/bin/toaster-eventreplay | |||
| @@ -9,18 +9,6 @@ | |||
| 9 | # This file re-uses code spread throughout other Bitbake source files. | 9 | # This file re-uses code spread throughout other Bitbake source files. |
| 10 | # As such, all other copyrights belong to their own right holders. | 10 | # As such, all other copyrights belong to their own right holders. |
| 11 | # | 11 | # |
| 12 | # This program is free software; you can redistribute it and/or modify | ||
| 13 | # it under the terms of the GNU General Public License version 2 as | ||
| 14 | # published by the Free Software Foundation. | ||
| 15 | # | ||
| 16 | # This program is distributed in the hope that it will be useful, | ||
| 17 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 18 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 19 | # GNU General Public License for more details. | ||
| 20 | # | ||
| 21 | # You should have received a copy of the GNU General Public License along | ||
| 22 | # with this program; if not, write to the Free Software Foundation, Inc., | ||
| 23 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
| 24 | 12 | ||
| 25 | """ | 13 | """ |
| 26 | This command takes a filename as a single parameter. The filename is read | 14 | This command takes a filename as a single parameter. The filename is read |
