Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Yann E. MORIN <yann.morin.1998@free.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v2 1/4] skeleton: Rename skeleton-none to skeleton-init-none
Date: Mon, 14 Aug 2017 19:56:49 +0200	[thread overview]
Message-ID: <20170814175649.GC2810@scaer> (raw)
In-Reply-To: <20170813212112.7873-2-camh@xdna.net>

Cam, All,

On 2017-08-14 07:21 +1000, Cam Hutchison spake thusly:
> The skeletons are based on the selection of BR2_INIT_*, so add init- to
> the package name to make this clearer. The name skeleton-none implies no
> skeleton at all, not a base skeleton with no init-specific files.
> 
> Signed-off-by: Cam Hutchison <camh@xdna.net>

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/Config.in                                              |  2 +-
>  package/{skeleton-none => skeleton-init-none}/Config.in        |  4 ++--
>  .../skeleton-init-none.mk}                                     | 10 +++++-----
>  system/Config.in                                               |  2 +-
>  4 files changed, 9 insertions(+), 9 deletions(-)
>  rename package/{skeleton-none => skeleton-init-none}/Config.in (52%)
>  rename package/{skeleton-none/skeleton-none.mk => skeleton-init-none/skeleton-init-none.mk} (67%)
> 
> diff --git a/package/Config.in b/package/Config.in
> index b5170b044c..b48eac65ca 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -4,7 +4,7 @@ menu "Target packages"
>  	source "package/skeleton/Config.in"
>  	source "package/skeleton-common/Config.in"
>  	source "package/skeleton-custom/Config.in"
> -	source "package/skeleton-none/Config.in"
> +	source "package/skeleton-init-none/Config.in"
>  	source "package/skeleton-systemd/Config.in"
>  	source "package/skeleton-sysv/Config.in"
>  
> diff --git a/package/skeleton-none/Config.in b/package/skeleton-init-none/Config.in
> similarity index 52%
> rename from package/skeleton-none/Config.in
> rename to package/skeleton-init-none/Config.in
> index 43fb3f277c..426954ca4c 100644
> --- a/package/skeleton-none/Config.in
> +++ b/package/skeleton-init-none/Config.in
> @@ -1,7 +1,7 @@
> -config BR2_PACKAGE_SKELETON_NONE
> +config BR2_PACKAGE_SKELETON_INIT_NONE
>  	bool
>  	select BR2_PACKAGE_HAS_SKELETON
>  	select BR2_PACKAGE_SKELETON_COMMON
>  
>  config BR2_PACKAGE_PROVIDES_SKELETON
> -	default "skeleton-none" if BR2_PACKAGE_SKELETON_NONE
> +	default "skeleton-init-none" if BR2_PACKAGE_SKELETON_INIT_NONE
> diff --git a/package/skeleton-none/skeleton-none.mk b/package/skeleton-init-none/skeleton-init-none.mk
> similarity index 67%
> rename from package/skeleton-none/skeleton-none.mk
> rename to package/skeleton-init-none/skeleton-init-none.mk
> index 9e9579866a..04e38c98d9 100644
> --- a/package/skeleton-none/skeleton-none.mk
> +++ b/package/skeleton-init-none/skeleton-init-none.mk
> @@ -1,6 +1,6 @@
>  ################################################################################
>  #
> -# skeleton-none
> +# skeleton-init-none
>  #
>  ################################################################################
>  
> @@ -8,11 +8,11 @@
>  # skeleton and the toolchain is a target package, as is skeleton.
>  # Hence, skeleton would depends on the toolchain and the toolchain would depend
>  # on skeleton.
> -SKELETON_NONE_ADD_TOOLCHAIN_DEPENDENCY = NO
> -SKELETON_NONE_ADD_SKELETON_DEPENDENCY = NO
> +SKELETON_INIT_NONE_ADD_TOOLCHAIN_DEPENDENCY = NO
> +SKELETON_INIT_NONE_ADD_SKELETON_DEPENDENCY = NO
>  
> -SKELETON_NONE_DEPENDENCIES = skeleton-common
> +SKELETON_INIT_NONE_DEPENDENCIES = skeleton-common
>  
> -SKELETON_NONE_PROVIDES = skeleton
> +SKELETON_INIT_NONE_PROVIDES = skeleton
>  
>  $(eval $(generic-package))
> diff --git a/system/Config.in b/system/Config.in
> index 59d8eab271..45326f0985 100644
> --- a/system/Config.in
> +++ b/system/Config.in
> @@ -12,7 +12,7 @@ config BR2_ROOTFS_SKELETON_DEFAULT
>  	select BR2_PACKAGE_SKELETON_SYSV if BR2_INIT_SYSV
>  	select BR2_PACKAGE_SKELETON_SYSV if BR2_INIT_BUSYBOX
>  	select BR2_PACKAGE_SKELETON_SYSTEMD if BR2_INIT_SYSTEMD
> -	select BR2_PACKAGE_SKELETON_NONE if BR2_INIT_NONE
> +	select BR2_PACKAGE_SKELETON_INIT_NONE if BR2_INIT_NONE
>  	help
>  	  Use default target skeleton
>  
> -- 
> 2.11.0
> 

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

  reply	other threads:[~2017-08-14 17:56 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-13 21:21 [Buildroot] [PATCH v2 0/4] Rename skeleton packages to include init- Cam Hutchison
2017-08-13 21:21 ` [Buildroot] [PATCH v2 1/4] skeleton: Rename skeleton-none to skeleton-init-none Cam Hutchison
2017-08-14 17:56   ` Yann E. MORIN [this message]
2017-08-13 21:21 ` [Buildroot] [PATCH v2 2/4] skeleton: Rename skeleton-systemd to skeleton-init-systemd Cam Hutchison
2017-08-14 17:57   ` Yann E. MORIN
2017-08-13 21:21 ` [Buildroot] [PATCH v2 3/4] skeleton: Rename skeleton-sysv to skeleton-init-sysv Cam Hutchison
2017-08-14 17:57   ` Yann E. MORIN
2017-08-13 21:21 ` [Buildroot] [PATCH v2 4/4] skeleton: Rename skeleton-common to skeleton-init-common Cam Hutchison
2017-08-14 17:57   ` Yann E. MORIN
2017-08-14 19:56 ` [Buildroot] [PATCH v2 0/4] Rename skeleton packages to include init- Thomas Petazzoni

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=20170814175649.GC2810@scaer \
    --to=yann.morin.1998@free.fr \
    --cc=buildroot@busybox.net \
    /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