5e5547a73d
The skeletons are based on the selection of BR2_INIT_*, so add init- to the package name to make this clearer. The name skeleton-common implies that it is common to all skeletons, yet it does not apply to skeleton-custom. It is only common to the skeleton-init-* packages, so name it the same way. 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>
19 lines
650 B
Makefile
19 lines
650 B
Makefile
################################################################################
|
|
#
|
|
# skeleton-init-none
|
|
#
|
|
################################################################################
|
|
|
|
# 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
|
|
# on skeleton.
|
|
SKELETON_INIT_NONE_ADD_TOOLCHAIN_DEPENDENCY = NO
|
|
SKELETON_INIT_NONE_ADD_SKELETON_DEPENDENCY = NO
|
|
|
|
SKELETON_INIT_NONE_DEPENDENCIES = skeleton-init-common
|
|
|
|
SKELETON_INIT_NONE_PROVIDES = skeleton
|
|
|
|
$(eval $(generic-package))
|