diff options
author | Cam Hutchison <camh@xdna.net> | 2017-08-14 07:21:09 +1000 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-08-14 21:52:43 +0200 |
commit | f4a8ba8c8be2a471a2bb9d42961f90438b1056b3 (patch) | |
tree | 32fbefc60559df25d09fce0637f156cf9ceb4380 | |
parent | 049c0f1b4db07ffbb5d115da3ac8271ae6426dc8 (diff) | |
download | buildroot-f4a8ba8c8be2a471a2bb9d42961f90438b1056b3.tar.gz buildroot-f4a8ba8c8be2a471a2bb9d42961f90438b1056b3.zip |
skeleton: Rename skeleton-none to skeleton-init-none
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>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/Config.in | 2 | ||||
-rw-r--r-- | package/skeleton-init-none/Config.in (renamed from package/skeleton-none/Config.in) | 4 | ||||
-rw-r--r-- | package/skeleton-init-none/skeleton-init-none.mk (renamed from package/skeleton-none/skeleton-none.mk) | 10 | ||||
-rw-r--r-- | system/Config.in | 2 |
4 files changed, 9 insertions, 9 deletions
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 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 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 |