mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-04 06:10:16 +03:00
pkg-*.mk: add some comments, update some existing comments
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
committed by
Peter Korsgaard
parent
6e6b99a571
commit
c0e6b52482
@@ -1,3 +1,10 @@
|
||||
############################################################################
|
||||
#
|
||||
# This file contains various utility functions used by the package
|
||||
# infrastructure, or by the packages themselves.
|
||||
#
|
||||
############################################################################
|
||||
|
||||
# UPPERCASE Macro -- transform its argument to uppercase and replace dots and
|
||||
# hyphens to underscores
|
||||
|
||||
@@ -16,6 +23,12 @@ UPPERCASE = $(strip $(eval __tmp := $1) \
|
||||
$(__tmp)))) \
|
||||
$(__tmp))
|
||||
|
||||
#
|
||||
# Manipulation of .config files based on the Kconfig
|
||||
# infrastructure. Used by the Busybox package, the Linux kernel
|
||||
# package, and more.
|
||||
#
|
||||
|
||||
define KCONFIG_ENABLE_OPT
|
||||
$(SED) "/\\<$(1)\\>/d" $(2)
|
||||
echo "$(1)=y" >> $(2)
|
||||
|
||||
Reference in New Issue
Block a user