Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Thomas Perale via buildroot <buildroot@buildroot.org>
To: Fiona Klute <fiona.klute@gmx.de>
Cc: Thomas Perale <thomas.perale@mind.be>, buildroot@buildroot.org
Subject: Re: [Buildroot] [PATCH 1/7] package/skeleton{, -init-*}: add license information
Date: Fri, 31 Jul 2026 14:05:41 +0200	[thread overview]
Message-ID: <20260731120541.3944-1-thomas.perale@mind.be> (raw)
In-Reply-To: <20260722153224.624762-1-fiona.klute@gmx.de>

In reply of:
> All these packages are part of Buildroot and thus under
> GPL-2.0-or-later unless stated otherwise, as described in COPYING.
> 
> package/skeleton-custom is excluded because it provides a way to copy
> skeleton data from any location chosen by the user, the license of
> which is unknown to Buildroot.
> 
> Signed-off-by: Fiona Klute (Othermo GmbH) <fiona.klute@gmx.de>

Applied to 2025.02.x & 2026.05.x. Thanks

> ---
>  package/skeleton-init-common/skeleton-init-common.mk   | 2 ++
>  package/skeleton-init-none/skeleton-init-none.mk       | 2 ++
>  package/skeleton-init-openrc/skeleton-init-openrc.mk   | 2 ++
>  package/skeleton-init-systemd/skeleton-init-systemd.mk | 2 ++
>  package/skeleton-init-sysv/skeleton-init-sysv.mk       | 2 ++
>  package/skeleton/skeleton.mk                           | 2 ++
>  6 files changed, 12 insertions(+)
> 
> diff --git a/package/skeleton-init-common/skeleton-init-common.mk b/package/skeleton-init-common/skeleton-init-common.mk
> index 4a67f51c19..299f2643b4 100644
> --- a/package/skeleton-init-common/skeleton-init-common.mk
> +++ b/package/skeleton-init-common/skeleton-init-common.mk
> @@ -4,6 +4,8 @@
>  #
>  ################################################################################
>  
> +SKELETON_INIT_COMMON_LICENSE = GPL-2.0-or-later
> +
>  # The skeleton can't depend on the toolchain, since all packages depends on the
>  # skeleton and the toolchain is a target package, as is skeleton.
>  # Hence, skeleton would depends on the toolchain and the toolchain would depend
> diff --git a/package/skeleton-init-none/skeleton-init-none.mk b/package/skeleton-init-none/skeleton-init-none.mk
> index 8181aa0354..d96af89e19 100644
> --- a/package/skeleton-init-none/skeleton-init-none.mk
> +++ b/package/skeleton-init-none/skeleton-init-none.mk
> @@ -4,6 +4,8 @@
>  #
>  ################################################################################
>  
> +SKELETON_INIT_NONE_LICENSE = GPL-2.0-or-later
> +
>  # The skeleton can't depend on the toolchain, since all packages depends on the
>  # skeleton and the toolchain is a target package, as is skeleton.
>  # Hence, skeleton would depends on the toolchain and the toolchain would depend
> diff --git a/package/skeleton-init-openrc/skeleton-init-openrc.mk b/package/skeleton-init-openrc/skeleton-init-openrc.mk
> index b0538ad03f..b6b97a4e3e 100644
> --- a/package/skeleton-init-openrc/skeleton-init-openrc.mk
> +++ b/package/skeleton-init-openrc/skeleton-init-openrc.mk
> @@ -4,6 +4,8 @@
>  #
>  ################################################################################
>  
> +SKELETON_INIT_OPENRC_LICENSE = GPL-2.0-or-later
> +
>  # The skeleton can't depend on the toolchain, since all packages depends on the
>  # skeleton and the toolchain is a target package, as is skeleton.
>  # Hence, skeleton would depends on the toolchain and the toolchain would depend
> diff --git a/package/skeleton-init-systemd/skeleton-init-systemd.mk b/package/skeleton-init-systemd/skeleton-init-systemd.mk
> index b312fe33e4..601285de28 100644
> --- a/package/skeleton-init-systemd/skeleton-init-systemd.mk
> +++ b/package/skeleton-init-systemd/skeleton-init-systemd.mk
> @@ -4,6 +4,8 @@
>  #
>  ################################################################################
>  
> +SKELETON_INIT_SYSTEMD_LICENSE = GPL-2.0-or-later, LGPL-2.1-or-later (factory/var.mount)
> +
>  # The skeleton can't depend on the toolchain, since all packages depends on the
>  # skeleton and the toolchain is a target package, as is skeleton.
>  # Hence, skeleton would depends on the toolchain and the toolchain would depend
> diff --git a/package/skeleton-init-sysv/skeleton-init-sysv.mk b/package/skeleton-init-sysv/skeleton-init-sysv.mk
> index 009dc100ea..dc9793d44f 100644
> --- a/package/skeleton-init-sysv/skeleton-init-sysv.mk
> +++ b/package/skeleton-init-sysv/skeleton-init-sysv.mk
> @@ -4,6 +4,8 @@
>  #
>  ################################################################################
>  
> +SKELETON_INIT_SYSV_LICENSE = GPL-2.0-or-later
> +
>  # The skeleton can't depend on the toolchain, since all packages depends on the
>  # skeleton and the toolchain is a target package, as is skeleton.
>  # Hence, skeleton would depends on the toolchain and the toolchain would depend
> diff --git a/package/skeleton/skeleton.mk b/package/skeleton/skeleton.mk
> index dc754f1244..fd606c8085 100644
> --- a/package/skeleton/skeleton.mk
> +++ b/package/skeleton/skeleton.mk
> @@ -4,6 +4,8 @@
>  #
>  ################################################################################
>  
> +SKELETON_LICENSE = GPL-2.0-or-later
> +
>  # The skeleton can't depend on the toolchain, since all packages depends on the
>  # skeleton and the toolchain is a target package, as is skeleton.
>  # Hence, skeleton would depends on the toolchain and the toolchain would depend
> -- 
> 2.53.0
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

      parent reply	other threads:[~2026-07-31 12:05 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-22 15:32 [Buildroot] [PATCH 1/7] package/skeleton{, -init-*}: add license information Fiona Klute via buildroot
2026-07-22 15:32 ` [Buildroot] [PATCH 2/7] package/environment-setup: add license info Fiona Klute via buildroot
2026-07-31 12:05   ` Thomas Perale via buildroot
2026-07-22 15:32 ` [Buildroot] [PATCH 3/7] package/ifupdown-scripts: " Fiona Klute via buildroot
2026-07-31 12:05   ` Thomas Perale via buildroot
2026-07-22 15:32 ` [Buildroot] [PATCH 4/7] package/initscripts: " Fiona Klute via buildroot
2026-07-31 12:05   ` Thomas Perale via buildroot
2026-07-22 15:32 ` [Buildroot] [PATCH 5/7] package/urandom-scripts: " Fiona Klute via buildroot
2026-07-31 12:05   ` Thomas Perale via buildroot
2026-07-22 15:32 ` [Buildroot] [PATCH 6/7] package/xz: fix license information Fiona Klute via buildroot
2026-07-31 12:05   ` Thomas Perale via buildroot
2026-07-22 15:32 ` [Buildroot] [PATCH 7/7] package/binutils: " Fiona Klute via buildroot
2026-07-31 12:05   ` Thomas Perale via buildroot
2026-07-22 20:27 ` [Buildroot] [PATCH 1/7] package/skeleton{, -init-*}: add " Julien Olivain via buildroot
2026-07-22 20:52   ` Fiona Klute via buildroot
2026-07-31 12:05 ` Thomas Perale via buildroot [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260731120541.3944-1-thomas.perale@mind.be \
    --to=buildroot@buildroot.org \
    --cc=fiona.klute@gmx.de \
    --cc=thomas.perale@mind.be \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox