diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2017-08-02 00:52:18 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-08-02 19:31:09 +0200 |
commit | cb09e1c81f8da8926b3acb167595360ed15e30dd (patch) | |
tree | db75852a3746117e50a4dcfae69d4f03e73ec8c3 /package/skeleton-common | |
parent | 22cf98c6af45492b942ba2956873cb3c85f2de7d (diff) | |
download | buildroot-cb09e1c81f8da8926b3acb167595360ed15e30dd.tar.gz buildroot-cb09e1c81f8da8926b3acb167595360ed15e30dd.zip |
package/skeleton: make it a virtual package
We now have two packages that can act as a skeleton, skeleton-common,
also known as our default skeleton, and skeleton-custom.
This means that the skeleton package can be a standard virtual package
now.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/skeleton-common')
-rw-r--r-- | package/skeleton-common/Config.in | 5 | ||||
-rw-r--r-- | package/skeleton-common/skeleton-common.mk | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/package/skeleton-common/Config.in b/package/skeleton-common/Config.in index 6c094f6466..5675e873cf 100644 --- a/package/skeleton-common/Config.in +++ b/package/skeleton-common/Config.in @@ -1,3 +1,6 @@ config BR2_PACKAGE_SKELETON_COMMON bool - select BR2_PACKAGE_SKELETON + select BR2_PACKAGE_HAS_SKELETON + +config BR2_PACKAGE_PROVIDES_SKELETON + default "skeleton-common" if BR2_PACKAGE_SKELETON_COMMON diff --git a/package/skeleton-common/skeleton-common.mk b/package/skeleton-common/skeleton-common.mk index 06e59c03df..e3a52dc040 100644 --- a/package/skeleton-common/skeleton-common.mk +++ b/package/skeleton-common/skeleton-common.mk @@ -11,6 +11,8 @@ SKELETON_COMMON_ADD_TOOLCHAIN_DEPENDENCY = NO SKELETON_COMMON_ADD_SKELETON_DEPENDENCY = NO +SKELETON_COMMON_PROVIDES = skeleton + # The skeleton also handles the merged /usr case in the sysroot SKELETON_COMMON_INSTALL_STAGING = YES |