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-custom | |
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-custom')
-rw-r--r-- | package/skeleton-custom/Config.in | 5 | ||||
-rw-r--r-- | package/skeleton-custom/skeleton-custom.mk | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/package/skeleton-custom/Config.in b/package/skeleton-custom/Config.in index b12bd8f73c..601c3b247e 100644 --- a/package/skeleton-custom/Config.in +++ b/package/skeleton-custom/Config.in @@ -1,3 +1,6 @@ config BR2_PACKAGE_SKELETON_CUSTOM bool - select BR2_PACKAGE_SKELETON + select BR2_PACKAGE_HAS_SKELETON + +config BR2_PACKAGE_PROVIDES_SKELETON + default "skeleton-custom" if BR2_PACKAGE_SKELETON_CUSTOM diff --git a/package/skeleton-custom/skeleton-custom.mk b/package/skeleton-custom/skeleton-custom.mk index 6e9d52620b..d3c6b48211 100644 --- a/package/skeleton-custom/skeleton-custom.mk +++ b/package/skeleton-custom/skeleton-custom.mk @@ -11,7 +11,8 @@ SKELETON_CUSTOM_ADD_TOOLCHAIN_DEPENDENCY = NO SKELETON_CUSTOM_ADD_SKELETON_DEPENDENCY = NO -# The skeleton also handles the merged /usr case in the sysroot +SKELETON_CUSTOM_PROVIDES = skeleton + SKELETON_CUSTOM_INSTALL_STAGING = YES SKELETON_CUSTOM_PATH = $(call qstrip,$(BR2_ROOTFS_SKELETON_CUSTOM_PATH)) |