mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
All these packages are part of Buildroot and thus under GPL-2.0-or-later unless stated otherwise, as described in COPYING. package/skeleton-custom is excluded because it provides a way to copy skeleton data from any location chosen by the user, the license of which is unknown to Buildroot. Signed-off-by: Fiona Klute (Othermo GmbH) <fiona.klute@gmx.de> Signed-off-by: Julien Olivain <ju.o@free.fr>
21 lines
697 B
Makefile
21 lines
697 B
Makefile
################################################################################
|
|
#
|
|
# skeleton-init-none
|
|
#
|
|
################################################################################
|
|
|
|
SKELETON_INIT_NONE_LICENSE = GPL-2.0-or-later
|
|
|
|
# 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))
|