mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-10 00:04:06 -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>
(cherry picked from commit 927c575964)
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
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))
|