1 ################################################################################
2 # Generic package infrastructure
4 # This file implements an infrastructure that eases development of
5 # package .mk files. It should be used for packages that do not rely
6 # on a well-known build system for which Buildroot has a dedicated
7 # infrastructure (so far, Buildroot has special support for
8 # autotools-based and CMake-based packages).
10 # See the Buildroot documentation for details on the usage of this
13 # In terms of implementation, this generic infrastructure requires the
14 # .mk file to specify:
16 # 1. Metadata information about the package: name, version,
19 # 2. Description of the commands to be executed to configure, build
20 # and install the package
21 ################################################################################
23 ################################################################################
24 # Helper functions to catch start/end of each step
25 ################################################################################
27 # Those two functions are called by each step below.
28 # They are responsible for calling all hooks defined in
29 # $(GLOBAL_INSTRUMENTATION_HOOKS) and pass each of them
31 # $1: either 'start' or 'end'
32 # $2: the name of the step
33 # $3: the name of the package
38 $(foreach hook
,$(GLOBAL_INSTRUMENTATION_HOOKS
),$(call
$(hook
),start
,$(1),$($(PKG
)_NAME
))$(sep
))
44 $(foreach hook
,$(GLOBAL_INSTRUMENTATION_HOOKS
),$(call
$(hook
),end
,$(1),$($(PKG
)_NAME
))$(sep
))
47 #######################################
52 printf
"%s:%-5.5s:%-20.20s: %s\n" \
53 "$$(date +%s)" "$(1)" "$(2)" "$(3)" \
54 >>"$(BUILD_DIR)/build-time.log"
56 GLOBAL_INSTRUMENTATION_HOOKS
+= step_time
58 # User-supplied script
59 ifneq ($(BR2_INSTRUMENTATION_SCRIPTS
),)
61 @
$(foreach user_hook
, $(BR2_INSTRUMENTATION_SCRIPTS
), \
62 $(EXTRA_ENV
) $(user_hook
) "$(1)" "$(2)" "$(3)"$(sep
))
64 GLOBAL_INSTRUMENTATION_HOOKS
+= step_user
67 ################################################################################
68 # Implicit targets -- produce a stamp file for each step of a package build
69 ################################################################################
71 # Retrieve the archive
72 $(BUILD_DIR
)/%/.stamp_downloaded
:
73 $(foreach hook
,$($(PKG
)_PRE_DOWNLOAD_HOOKS
),$(call
$(hook
))$(sep
))
74 # Only show the download message if it isn't already downloaded
75 $(Q
)for p in
$($(PKG
)_ALL_DOWNLOADS
); do \
76 if
test ! -e
$(DL_DIR
)/`basename $$p` ; then \
77 $(call MESSAGE
,"Downloading") ; \
81 $(foreach p
,$($(PKG
)_ALL_DOWNLOADS
),$(call DOWNLOAD
,$(p
))$(sep
))
82 $(foreach hook
,$($(PKG
)_POST_DOWNLOAD_HOOKS
),$(call
$(hook
))$(sep
))
87 $(BUILD_DIR
)/%/.stamp_extracted
:
88 @
$(call step_start
,extract
)
89 @
$(call MESSAGE
,"Extracting")
90 $(foreach hook
,$($(PKG
)_PRE_EXTRACT_HOOKS
),$(call
$(hook
))$(sep
))
92 $($(PKG
)_EXTRACT_CMDS
)
93 # some packages have messed up permissions inside
94 $(Q
)chmod
-R
+rw
$(@D
)
95 $(foreach hook
,$($(PKG
)_POST_EXTRACT_HOOKS
),$(call
$(hook
))$(sep
))
97 @
$(call step_end
,extract
)
99 # Rsync the source directory if the <pkg>_OVERRIDE_SRCDIR feature is
101 $(BUILD_DIR
)/%/.stamp_rsynced
:
102 @
$(call MESSAGE
,"Syncing from source dir $(SRCDIR)")
103 @
test -d
$(SRCDIR
) ||
(echo
"ERROR: $(SRCDIR) does not exist" ; exit
1)
104 $(foreach hook
,$($(PKG
)_PRE_RSYNC_HOOKS
),$(call
$(hook
))$(sep
))
105 rsync
-au
$(RSYNC_VCS_EXCLUSIONS
) $(call qstrip
,$(SRCDIR
))/ $(@D
)
106 $(foreach hook
,$($(PKG
)_POST_RSYNC_HOOKS
),$(call
$(hook
))$(sep
))
111 # The RAWNAME variable is the lowercased package name, which allows to
112 # find the package directory (typically package/<pkgname>) and the
113 # prefix of the patches
115 # For BR2_GLOBAL_PATCH_DIR, only generate if it is defined
116 $(BUILD_DIR
)/%/.stamp_patched
: NAMEVER
= $(RAWNAME
)-$($(PKG
)_VERSION
)
117 $(BUILD_DIR
)/%/.stamp_patched
: PATCH_BASE_DIRS
= $(PKGDIR
)
118 $(BUILD_DIR
)/%/.stamp_patched
: PATCH_BASE_DIRS
+= $(addsuffix /$(RAWNAME
),$(call qstrip
,$(BR2_GLOBAL_PATCH_DIR
)))
119 $(BUILD_DIR
)/%/.stamp_patched
:
120 @
$(call step_start
,patch
)
121 @
$(call MESSAGE
,"Patching")
122 $(foreach hook
,$($(PKG
)_PRE_PATCH_HOOKS
),$(call
$(hook
))$(sep
))
123 $(foreach p
,$($(PKG
)_PATCH
),$(APPLY_PATCHES
) $(@D
) $(DL_DIR
) $(notdir $(p
))$(sep
))
125 for D in
$(PATCH_BASE_DIRS
); do \
126 if
test -d
$${D}; then \
127 if
test -d
$${D}/$($(PKG
)_VERSION
); then \
128 $(APPLY_PATCHES
) $(@D
) $${D}/$($(PKG
)_VERSION
) \
*.patch \
*.patch.
$(ARCH
) || exit
1; \
130 $(APPLY_PATCHES
) $(@D
) $${D} \
*.patch \
*.patch.
$(ARCH
) || exit
1; \
135 $(foreach hook
,$($(PKG
)_POST_PATCH_HOOKS
),$(call
$(hook
))$(sep
))
137 @
$(call step_end
,patch
)
139 # Check that all directories specified in BR2_GLOBAL_PATCH_DIR exist.
140 $(foreach dir,$(call qstrip
,$(BR2_GLOBAL_PATCH_DIR
)),\
141 $(if
$(wildcard $(dir)),,\
142 $(error BR2_GLOBAL_PATCH_DIR contains nonexistent directory
$(dir))))
145 $(BUILD_DIR
)/%/.stamp_configured
:
146 @
$(call step_start
,configure
)
147 @
$(call MESSAGE
,"Configuring")
148 $(foreach hook
,$($(PKG
)_PRE_CONFIGURE_HOOKS
),$(call
$(hook
))$(sep
))
149 $($(PKG
)_CONFIGURE_CMDS
)
150 $(foreach hook
,$($(PKG
)_POST_CONFIGURE_HOOKS
),$(call
$(hook
))$(sep
))
152 @
$(call step_end
,configure
)
155 $(BUILD_DIR
)/%/.stamp_built
::
156 @
$(call step_start
,build
)
157 @
$(call MESSAGE
,"Building")
158 $(foreach hook
,$($(PKG
)_PRE_BUILD_HOOKS
),$(call
$(hook
))$(sep
))
159 +$($(PKG
)_BUILD_CMDS
)
160 $(foreach hook
,$($(PKG
)_POST_BUILD_HOOKS
),$(call
$(hook
))$(sep
))
162 @
$(call step_end
,build
)
164 # Install to host dir
165 $(BUILD_DIR
)/%/.stamp_host_installed
:
166 @
$(call step_start
,install-host
)
167 @
$(call MESSAGE
,"Installing to host directory")
168 $(foreach hook
,$($(PKG
)_PRE_INSTALL_HOOKS
),$(call
$(hook
))$(sep
))
169 +$($(PKG
)_INSTALL_CMDS
)
170 $(foreach hook
,$($(PKG
)_POST_INSTALL_HOOKS
),$(call
$(hook
))$(sep
))
172 @
$(call step_end
,install-host
)
174 # Install to staging dir
175 $(BUILD_DIR
)/%/.stamp_staging_installed
:
176 @
$(call step_start
,install-staging
)
177 @
$(call MESSAGE
,"Installing to staging directory")
178 $(foreach hook
,$($(PKG
)_PRE_INSTALL_STAGING_HOOKS
),$(call
$(hook
))$(sep
))
179 +$($(PKG
)_INSTALL_STAGING_CMDS
)
180 $(foreach hook
,$($(PKG
)_POST_INSTALL_STAGING_HOOKS
),$(call
$(hook
))$(sep
))
181 $(Q
)if
test -n
"$($(PKG)_CONFIG_SCRIPTS)" ; then \
182 $(call MESSAGE
,"Fixing package configuration files") ;\
183 $(SED
) "s,$(BASE_DIR),@BASE_DIR@,g" \
184 -e
"s,$(STAGING_DIR),@STAGING_DIR@,g" \
185 -e
"s,^\(exec_\)\?prefix=.*,\1prefix=@STAGING_DIR@/usr,g" \
186 -e
"s,-I/usr/,-I@STAGING_DIR@/usr/,g" \
187 -e
"s,-L/usr/,-L@STAGING_DIR@/usr/,g" \
188 -e
"s,@STAGING_DIR@,$(STAGING_DIR),g" \
189 -e
"s,@BASE_DIR@,$(BASE_DIR),g" \
190 $(addprefix $(STAGING_DIR
)/usr
/bin
/,$($(PKG
)_CONFIG_SCRIPTS
)) ;\
193 @
$(call step_end
,install-staging
)
195 # Install to images dir
196 $(BUILD_DIR
)/%/.stamp_images_installed
:
197 @
$(call step_start
,install-image
)
198 $(foreach hook
,$($(PKG
)_PRE_INSTALL_IMAGES_HOOKS
),$(call
$(hook
))$(sep
))
199 @
$(call MESSAGE
,"Installing to images directory")
200 +$($(PKG
)_INSTALL_IMAGES_CMDS
)
201 $(foreach hook
,$($(PKG
)_POST_INSTALL_IMAGES_HOOKS
),$(call
$(hook
))$(sep
))
203 @
$(call step_end
,install-image
)
205 # Install to target dir
206 $(BUILD_DIR
)/%/.stamp_target_installed
:
207 @
$(call step_start
,install-target
)
208 @
$(call MESSAGE
,"Installing to target")
209 $(foreach hook
,$($(PKG
)_PRE_INSTALL_TARGET_HOOKS
),$(call
$(hook
))$(sep
))
210 +$($(PKG
)_INSTALL_TARGET_CMDS
)
211 $(if
$(BR2_INIT_SYSTEMD
),\
212 $($(PKG
)_INSTALL_INIT_SYSTEMD
))
213 $(if
$(BR2_INIT_SYSV
)$(BR2_INIT_BUSYBOX
),\
214 $($(PKG
)_INSTALL_INIT_SYSV
))
215 $(foreach hook
,$($(PKG
)_POST_INSTALL_TARGET_HOOKS
),$(call
$(hook
))$(sep
))
216 $(Q
)if
test -n
"$($(PKG)_CONFIG_SCRIPTS)" ; then \
217 $(RM
) -f
$(addprefix $(TARGET_DIR
)/usr
/bin
/,$($(PKG
)_CONFIG_SCRIPTS
)) ; \
220 @
$(call step_end
,install-target
)
222 # Remove package sources
223 $(BUILD_DIR
)/%/.stamp_dircleaned
:
226 ################################################################################
227 # virt-provides-single -- check that provider-pkg is the declared provider for
228 # the virtual package virt-pkg
230 # argument 1 is the lower-case name of the virtual package
231 # argument 2 is the upper-case name of the virtual package
232 # argument 3 is the lower-case name of the provider
235 # $(call virt-provides-single,libegl,LIBEGL,rpi-userland)
236 ################################################################################
237 define virt-provides-single
238 ifneq ($$(call qstrip
,$$(BR2_PACKAGE_PROVIDES_
$(2))),$(3))
239 $$(error Configuration error
: both
"$(3)" and
$$(BR2_PACKAGE_PROVIDES_
$(2))\
240 are selected
as providers for virtual package
"$(1)". Only one provider can\
241 be selected at a time. Please fix your configuration
)
245 ################################################################################
246 # inner-generic-package -- generates the make targets needed to build a
249 # argument 1 is the lowercase package name
250 # argument 2 is the uppercase package name, including a HOST_ prefix
252 # argument 3 is the uppercase package name, without the HOST_ prefix
254 # argument 4 is the type (target or host)
256 # Note about variable and function references: inside all blocks that are
257 # evaluated with $(eval), which includes all 'inner-xxx-package' blocks,
258 # specific rules apply with respect to variable and function references.
259 # - Numbered variables (parameters to the block) can be referenced with a single
260 # dollar sign: $(1), $(2), $(3), etc.
261 # - pkgdir and pkgname should be referenced with a single dollar sign too. These
262 # functions rely on 'the most recently parsed makefile' which is supposed to
263 # be the package .mk file. If we defer the evaluation of these functions using
264 # double dollar signs, then they may be evaluated too late, when other
265 # makefiles have already been parsed. One specific case is when $$(pkgdir) is
266 # assigned to a variable using deferred evaluation with '=' and this variable
267 # is used in a target rule outside the eval'ed inner block. In this case, the
268 # pkgdir will be that of the last makefile parsed by buildroot, which is not
269 # the expected value. This mechanism is for example used for the TARGET_PATCH
271 # - All other variables should be referenced with a double dollar sign:
272 # $$(TARGET_DIR), $$($(2)_VERSION), etc. Also all make functions should be
273 # referenced with a double dollar sign: $$(subst), $$(call), $$(filter-out),
274 # etc. This rule ensures that these variables and functions are only expanded
275 # during the $(eval) step, and not earlier. Otherwise, unintuitive and
276 # undesired behavior occurs with respect to these variables and functions.
278 ################################################################################
280 define inner-generic-package
282 # Define default values for various package-related variables, if not
283 # already defined. For some variables (version, source, site and
284 # subdir), if they are undefined, we try to see if a variable without
285 # the HOST_ prefix is defined. If so, we use such a variable, so that
286 # this information has only to be specified once, for both the
287 # target and host packages of a given .mk file.
291 $(2)_RAWNAME
= $$(patsubst host-
%,%,$(1))
293 # Keep the package version that may contain forward slashes in the _DL_VERSION
294 # variable, then replace all forward slashes ('/') by underscores ('_') to
295 # sanitize the package version that is used in paths, directory and file names.
296 # Forward slashes may appear in the package's version when pointing to a
297 # version control system branch or tag, for example remotes/origin/1_10_stable.
298 # Similar for spaces and colons (:) that may appear in date-based revisions for
301 ifdef $(3)_DL_VERSION
302 $(2)_DL_VERSION
:= $$($(3)_DL_VERSION
)
303 else ifdef $(3)_VERSION
304 $(2)_DL_VERSION
:= $$($(3)_VERSION
)
306 $(2)_DL_VERSION
= undefined
309 $(2)_DL_VERSION
:= $$(strip $$($(2)_VERSION
))
311 $(2)_VERSION
:= $$(call sanitize
,$$($(2)_DL_VERSION
))
313 $(2)_BASE_NAME
= $(1)-$$($(2)_VERSION
)
314 $(2)_DL_DIR
= $$(DL_DIR
)/$$($(2)_BASE_NAME
)
315 $(2)_DIR
= $$(BUILD_DIR
)/$$($(2)_BASE_NAME
)
319 $(2)_SUBDIR
= $$($(3)_SUBDIR
)
325 ifndef $(2)_STRIP_COMPONENTS
326 ifdef $(3)_STRIP_COMPONENTS
327 $(2)_STRIP_COMPONENTS
= $$($(3)_STRIP_COMPONENTS
)
329 $(2)_STRIP_COMPONENTS ?
= 1
333 $(2)_SRCDIR
= $$($(2)_DIR
)/$$($(2)_SUBDIR
)
334 $(2)_BUILDDIR ?
= $$($(2)_SRCDIR
)
336 ifneq ($$($(2)_OVERRIDE_SRCDIR
),)
337 $(2)_VERSION
= custom
342 $(2)_SOURCE
= $$($(3)_SOURCE
)
344 $(2)_SOURCE ?
= $$($(2)_RAWNAME
)-$$($(2)_VERSION
).
tar.gz
350 $(2)_PATCH
= $$($(3)_PATCH
)
354 $(2)_ALL_DOWNLOADS
= \
355 $$(foreach p
,$$($(2)_SOURCE
) $$($(2)_PATCH
) $$($(2)_EXTRA_DOWNLOADS
),\
356 $$(if
$$(findstring ://,$$(p
)),$$(p
),\
357 $$($(2)_SITE
:/=)/$$(p
)))
361 $(2)_SITE
= $$($(3)_SITE
)
365 ifndef $(2)_SITE_METHOD
366 ifdef $(3)_SITE_METHOD
367 $(2)_SITE_METHOD
= $$($(3)_SITE_METHOD
)
369 # Try automatic detection using the scheme part of the URI
370 $(2)_SITE_METHOD
= $$(call geturischeme
,$$($(2)_SITE
))
374 ifeq ($$($(2)_SITE_METHOD
),local
)
375 ifeq ($$($(2)_OVERRIDE_SRCDIR
),)
376 $(2)_OVERRIDE_SRCDIR
= $$($(2)_SITE
)
382 $(2)_LICENSE
= $$($(3)_LICENSE
)
386 $(2)_LICENSE ?
= unknown
388 ifndef $(2)_LICENSE_FILES
389 ifdef $(3)_LICENSE_FILES
390 $(2)_LICENSE_FILES
= $$($(3)_LICENSE_FILES
)
394 ifndef $(2)_REDISTRIBUTE
395 ifdef $(3)_REDISTRIBUTE
396 $(2)_REDISTRIBUTE
= $$($(3)_REDISTRIBUTE
)
400 $(2)_REDISTRIBUTE ?
= YES
402 # When a target package is a toolchain dependency set this variable to
403 # 'NO' so the 'toolchain' dependency is not added to prevent a circular
405 $(2)_ADD_TOOLCHAIN_DEPENDENCY ?
= YES
408 $(2)_DEPENDENCIES ?
= $$(filter-out host-toolchain
$(1),\
409 $$(patsubst host-host-
%,host-
%,$$(addprefix host-
,$$($(3)_DEPENDENCIES
))))
412 ifeq ($$($(2)_ADD_TOOLCHAIN_DEPENDENCY
),YES
)
413 $(2)_DEPENDENCIES
+= toolchain
417 # Eliminate duplicates in dependencies
418 $(2)_FINAL_DEPENDENCIES
= $$(sort $$($(2)_DEPENDENCIES
))
419 $(2)_FINAL_PATCH_DEPENDENCIES
= $$(sort $$($(2)_PATCH_DEPENDENCIES
))
420 $(2)_FINAL_ALL_DEPENDENCIES
= $$(sort $$($(2)_FINAL_DEPENDENCIES
) $$($(2)_FINAL_PATCH_DEPENDENCIES
))
422 $(2)_INSTALL_STAGING ?
= NO
423 $(2)_INSTALL_IMAGES ?
= NO
424 $(2)_INSTALL_TARGET ?
= YES
426 # define sub-target stamps
427 $(2)_TARGET_INSTALL_TARGET
= $$($(2)_DIR
)/.stamp_target_installed
428 $(2)_TARGET_INSTALL_STAGING
= $$($(2)_DIR
)/.stamp_staging_installed
429 $(2)_TARGET_INSTALL_IMAGES
= $$($(2)_DIR
)/.stamp_images_installed
430 $(2)_TARGET_INSTALL_HOST
= $$($(2)_DIR
)/.stamp_host_installed
431 $(2)_TARGET_BUILD
= $$($(2)_DIR
)/.stamp_built
432 $(2)_TARGET_CONFIGURE
= $$($(2)_DIR
)/.stamp_configured
433 $(2)_TARGET_RSYNC
= $$($(2)_DIR
)/.stamp_rsynced
434 $(2)_TARGET_PATCH
= $$($(2)_DIR
)/.stamp_patched
435 $(2)_TARGET_EXTRACT
= $$($(2)_DIR
)/.stamp_extracted
436 $(2)_TARGET_SOURCE
= $$($(2)_DIR
)/.stamp_downloaded
437 $(2)_TARGET_DIRCLEAN
= $$($(2)_DIR
)/.stamp_dircleaned
439 # default extract command
440 $(2)_EXTRACT_CMDS ?
= \
441 $$(if
$$($(2)_SOURCE
),$$(INFLATE
$$(suffix $$($(2)_SOURCE
))) $$(DL_DIR
)/$$($(2)_SOURCE
) | \
442 $$(TAR
) $$(TAR_STRIP_COMPONENTS
)=$$($(2)_STRIP_COMPONENTS
) -C
$$($(2)_DIR
) $$(TAR_OPTIONS
) -)
444 # pre/post-steps hooks
445 $(2)_PRE_DOWNLOAD_HOOKS ?
=
446 $(2)_POST_DOWNLOAD_HOOKS ?
=
447 $(2)_PRE_EXTRACT_HOOKS ?
=
448 $(2)_POST_EXTRACT_HOOKS ?
=
449 $(2)_PRE_RSYNC_HOOKS ?
=
450 $(2)_POST_RSYNC_HOOKS ?
=
451 $(2)_PRE_PATCH_HOOKS ?
=
452 $(2)_POST_PATCH_HOOKS ?
=
453 $(2)_PRE_CONFIGURE_HOOKS ?
=
454 $(2)_POST_CONFIGURE_HOOKS ?
=
455 $(2)_PRE_BUILD_HOOKS ?
=
456 $(2)_POST_BUILD_HOOKS ?
=
457 $(2)_PRE_INSTALL_HOOKS ?
=
458 $(2)_POST_INSTALL_HOOKS ?
=
459 $(2)_PRE_INSTALL_STAGING_HOOKS ?
=
460 $(2)_POST_INSTALL_STAGING_HOOKS ?
=
461 $(2)_PRE_INSTALL_TARGET_HOOKS ?
=
462 $(2)_POST_INSTALL_TARGET_HOOKS ?
=
463 $(2)_PRE_INSTALL_IMAGES_HOOKS ?
=
464 $(2)_POST_INSTALL_IMAGES_HOOKS ?
=
465 $(2)_PRE_LEGAL_INFO_HOOKS ?
=
466 $(2)_POST_LEGAL_INFO_HOOKS ?
=
468 # human-friendly targets and target sequencing
471 ifeq ($$($(2)_TYPE
),host
)
472 $(1)-install: $(1)-install-host
474 $(1)-install: $(1)-install-staging
$(1)-install-target
$(1)-install-images
477 ifeq ($$($(2)_INSTALL_TARGET
),YES
)
478 $(1)-install-target
: $$($(2)_TARGET_INSTALL_TARGET
)
479 $$($(2)_TARGET_INSTALL_TARGET
): $$($(2)_TARGET_BUILD
)
484 ifeq ($$($(2)_INSTALL_STAGING
),YES
)
485 $(1)-install-staging
: $$($(2)_TARGET_INSTALL_STAGING
)
486 $$($(2)_TARGET_INSTALL_STAGING
): $$($(2)_TARGET_BUILD
)
487 # Some packages use install-staging stuff for install-target
488 $$($(2)_TARGET_INSTALL_TARGET
): $$($(2)_TARGET_INSTALL_STAGING
)
490 $(1)-install-staging
:
493 ifeq ($$($(2)_INSTALL_IMAGES
),YES
)
494 $(1)-install-images
: $$($(2)_TARGET_INSTALL_IMAGES
)
495 $$($(2)_TARGET_INSTALL_IMAGES
): $$($(2)_TARGET_BUILD
)
500 $(1)-install-host
: $$($(2)_TARGET_INSTALL_HOST
)
501 $$($(2)_TARGET_INSTALL_HOST
): $$($(2)_TARGET_BUILD
)
503 $(1)-build
: $$($(2)_TARGET_BUILD
)
504 $$($(2)_TARGET_BUILD
): $$($(2)_TARGET_CONFIGURE
)
506 # Since $(2)_FINAL_DEPENDENCIES are phony targets, they are always "newer"
507 # than $(2)_TARGET_CONFIGURE. This would force the configure step (and
508 # therefore the other steps as well) to be re-executed with every
509 # invocation of make. Therefore, make $(2)_FINAL_DEPENDENCIES an order-only
510 # dependency by using |.
512 $(1)-configure
: $$($(2)_TARGET_CONFIGURE
)
513 $$($(2)_TARGET_CONFIGURE
): |
$$($(2)_FINAL_DEPENDENCIES
)
515 $$($(2)_TARGET_SOURCE
) $$($(2)_TARGET_RSYNC
): | dirs prepare
516 ifeq ($$(filter $(1),$$(DEPENDENCIES_HOST_PREREQ
)),)
517 $$($(2)_TARGET_SOURCE
) $$($(2)_TARGET_RSYNC
): | dependencies
520 ifeq ($$($(2)_OVERRIDE_SRCDIR
),)
521 # In the normal case (no package override), the sequence of steps is
522 # source, by downloading
527 $$($(2)_TARGET_CONFIGURE
): $$($(2)_TARGET_PATCH
)
529 $(1)-patch
: $$($(2)_TARGET_PATCH
)
530 $$($(2)_TARGET_PATCH
): $$($(2)_TARGET_EXTRACT
)
531 # Order-only dependency
532 $$($(2)_TARGET_PATCH
): |
$$(patsubst %,%-patch
,$$($(2)_FINAL_PATCH_DEPENDENCIES
))
534 $(1)-extract
: $$($(2)_TARGET_EXTRACT
)
535 $$($(2)_TARGET_EXTRACT
): $$($(2)_TARGET_SOURCE
)
537 $(1)-depends
: $$($(2)_FINAL_DEPENDENCIES
)
539 $(1)-source
: $$($(2)_TARGET_SOURCE
)
542 $$(foreach p
,$$($(2)_ALL_DOWNLOADS
),$$(call SOURCE_CHECK
,$$(p
))$$(sep
))
545 @for p in
$$($(2)_SOURCE
) $$($(2)_PATCH
) $$($(2)_EXTRA_DOWNLOADS
) ; do \
546 echo
`basename $$$$p` ; \
549 # In the package override case, the sequence of steps
550 # source, by rsyncing
554 # Use an order-only dependency so the "<pkg>-clean-for-rebuild" rule
555 # can remove the stamp file without triggering the configure step.
556 $$($(2)_TARGET_CONFIGURE
): |
$$($(2)_TARGET_RSYNC
)
558 $(1)-depends
: $$($(2)_FINAL_DEPENDENCIES
)
560 $(1)-patch
: $(1)-rsync
561 $(1)-extract
: $(1)-rsync
563 $(1)-rsync
: $$($(2)_TARGET_RSYNC
)
568 test -d
$$($(2)_OVERRIDE_SRCDIR
)
571 @echo
"file://$$($(2)_OVERRIDE_SRCDIR)"
575 @echo
$$($(2)_VERSION
)
578 @echo
$$($(2)_FINAL_ALL_DEPENDENCIES
)
580 $(1)-graph-depends
: graph-depends-requirements
581 @
$$(INSTALL
) -d
$$(GRAPHS_DIR
)
582 @cd
"$$(CONFIG_DIR)"; \
583 $$(TOPDIR
)/support
/scripts
/graph-depends
-p
$(1) $$(BR2_GRAPH_DEPS_OPTS
) \
584 |tee
$$(GRAPHS_DIR
)/$$(@
).dot \
585 |dot
$$(BR2_GRAPH_DOT_OPTS
) -T
$$(BR_GRAPH_OUT
) -o
$$(GRAPHS_DIR
)/$$(@
).
$$(BR_GRAPH_OUT
)
587 $(1)-all-source
: $(1)-source
588 $(1)-all-source
: $$(foreach p
,$$($(2)_FINAL_ALL_DEPENDENCIES
),$$(p
)-all-source
)
590 $(1)-all-source-check
: $(1)-source-check
591 $(1)-all-source-check
: $$(foreach p
,$$($(2)_FINAL_ALL_DEPENDENCIES
),$$(p
)-all-source-check
)
593 $(1)-all-external-deps
: $(1)-external-deps
594 $(1)-all-external-deps
: $$(foreach p
,$$($(2)_FINAL_ALL_DEPENDENCIES
),$$(p
)-all-external-deps
)
596 $(1)-all-legal-info
: $(1)-legal-info
597 $(1)-all-legal-info
: $$(foreach p
,$$($(2)_FINAL_ALL_DEPENDENCIES
),$$(p
)-all-legal-info
)
599 $(1)-dirclean
: $$($(2)_TARGET_DIRCLEAN
)
601 $(1)-clean-for-reinstall
:
602 ifneq ($$($(2)_OVERRIDE_SRCDIR
),)
603 rm -f
$$($(2)_TARGET_RSYNC
)
605 rm -f
$$($(2)_TARGET_INSTALL_STAGING
)
606 rm -f
$$($(2)_TARGET_INSTALL_TARGET
)
607 rm -f
$$($(2)_TARGET_INSTALL_IMAGES
)
608 rm -f
$$($(2)_TARGET_INSTALL_HOST
)
610 $(1)-reinstall
: $(1)-clean-for-reinstall
$(1)
612 $(1)-clean-for-rebuild
: $(1)-clean-for-reinstall
613 rm -f
$$($(2)_TARGET_BUILD
)
615 $(1)-rebuild
: $(1)-clean-for-rebuild
$(1)
617 $(1)-clean-for-reconfigure
: $(1)-clean-for-rebuild
618 rm -f
$$($(2)_TARGET_CONFIGURE
)
620 $(1)-reconfigure
: $(1)-clean-for-reconfigure
$(1)
622 # define the PKG variable for all targets, containing the
623 # uppercase package variable prefix
624 $$($(2)_TARGET_INSTALL_TARGET
): PKG
=$(2)
625 $$($(2)_TARGET_INSTALL_STAGING
): PKG
=$(2)
626 $$($(2)_TARGET_INSTALL_IMAGES
): PKG
=$(2)
627 $$($(2)_TARGET_INSTALL_HOST
): PKG
=$(2)
628 $$($(2)_TARGET_BUILD
): PKG
=$(2)
629 $$($(2)_TARGET_CONFIGURE
): PKG
=$(2)
630 $$($(2)_TARGET_RSYNC
): SRCDIR
=$$($(2)_OVERRIDE_SRCDIR
)
631 $$($(2)_TARGET_RSYNC
): PKG
=$(2)
632 $$($(2)_TARGET_PATCH
): PKG
=$(2)
633 $$($(2)_TARGET_PATCH
): RAWNAME
=$$(patsubst host-
%,%,$(1))
634 $$($(2)_TARGET_PATCH
): PKGDIR
=$(pkgdir
)
635 $$($(2)_TARGET_EXTRACT
): PKG
=$(2)
636 $$($(2)_TARGET_SOURCE
): PKG
=$(2)
637 $$($(2)_TARGET_SOURCE
): PKGDIR
=$(pkgdir
)
638 $$($(2)_TARGET_DIRCLEAN
): PKG
=$(2)
640 # Compute the name of the Kconfig option that correspond to the
641 # package being enabled. We handle three cases: the special Linux
642 # kernel case, the bootloaders case, and the normal packages case.
644 $(2)_KCONFIG_VAR
= BR2_LINUX_KERNEL
645 else ifneq ($$(filter boot
/%,$(pkgdir
)),)
646 $(2)_KCONFIG_VAR
= BR2_TARGET_
$(2)
647 else ifneq ($$(filter toolchain
/%,$(pkgdir
)),)
648 $(2)_KCONFIG_VAR
= BR2_
$(2)
650 $(2)_KCONFIG_VAR
= BR2_PACKAGE_
$(2)
653 # legal-info: declare dependencies and set values used later for the manifest
654 ifneq ($$($(2)_LICENSE_FILES
),)
655 $(2)_MANIFEST_LICENSE_FILES
= $$($(2)_LICENSE_FILES
)
657 $(2)_MANIFEST_LICENSE_FILES ?
= not saved
659 # If the package declares _LICENSE_FILES, we need to extract it,
660 # for overriden, local or normal remote packages alike, whether
661 # we want to redistribute it or not.
662 ifneq ($$($(2)_LICENSE_FILES
),)
663 $(1)-legal-info
: $(1)-patch
666 # We only save the sources of packages we want to redistribute, that are
667 # non-local, and non-overriden. So only store, in the manifest, the tarball
668 # name of those packages.
669 ifeq ($$($(2)_REDISTRIBUTE
),YES
)
670 ifneq ($$($(2)_SITE_METHOD
),local
)
671 ifneq ($$($(2)_SITE_METHOD
),override)
672 # Packages that have a tarball need it downloaded beforehand
673 $(1)-legal-info
: $(1)-source
$$(REDIST_SOURCES_DIR_
$$(call UPPERCASE
,$(4)))
674 $(2)_MANIFEST_TARBALL
= $$($(2)_SOURCE
)
675 $(2)_MANIFEST_SITE
= $$(call qstrip
,$$($(2)_SITE
))
680 # legal-info: produce legally relevant info.
682 # Packages without a source are assumed to be part of Buildroot, skip them.
683 $$(foreach hook
,$$($(2)_PRE_LEGAL_INFO_HOOKS
),$$(call
$$(hook
))$$(sep
))
684 ifneq ($$(call qstrip
,$$($(2)_SOURCE
)),)
686 # Save license files if defined
687 # We save the license files for any kind of package: normal, local,
688 # overridden, or non-redistributable alike.
689 # The reason to save license files even for no-redistribute packages
690 # is that the license still applies to the files distributed as part
691 # of the rootfs, even if the sources are not themselves redistributed.
692 ifeq ($$(call qstrip
,$$($(2)_LICENSE_FILES
)),)
693 @
$$(call legal-license-nofiles
,$$($(2)_RAWNAME
),$$(call UPPERCASE
,$(4)))
694 @
$$(call legal-warning-pkg
,$$($(2)_RAWNAME
),cannot save license
($(2)_LICENSE_FILES not defined
))
696 @
$$(foreach F
,$$($(2)_LICENSE_FILES
),$$(call legal-license-file
,$$($(2)_RAWNAME
),$$(F
),$$($(2)_DIR
)/$$(F
),$$(call UPPERCASE
,$(4)))$$(sep
))
697 endif # license files
699 ifeq ($$($(2)_SITE_METHOD
),local
)
700 # Packages without a tarball: don't save and warn
701 @
$$(call legal-warning-nosource
,$$($(2)_RAWNAME
),local
)
703 else ifneq ($$($(2)_OVERRIDE_SRCDIR
),)
704 @
$$(call legal-warning-nosource
,$$($(2)_RAWNAME
),override)
709 ifeq ($$($(2)_REDISTRIBUTE
),YES
)
710 # Copy the source tarball (just hardlink if possible)
711 @cp
-l
$$(DL_DIR
)/$$($(2)_SOURCE
) $$(REDIST_SOURCES_DIR_
$$(call UPPERCASE
,$(4))) 2>/dev
/null || \
712 cp
$$(DL_DIR
)/$$($(2)_SOURCE
) $$(REDIST_SOURCES_DIR_
$$(call UPPERCASE
,$(4)))
715 endif # other packages
716 @
$$(call legal-manifest
,$$($(2)_RAWNAME
),$$($(2)_VERSION
),$$($(2)_LICENSE
),$$($(2)_MANIFEST_LICENSE_FILES
),$$($(2)_MANIFEST_TARBALL
),$$($(2)_MANIFEST_SITE
),$$(call UPPERCASE
,$(4)))
717 endif # ifneq ($$(call qstrip,$$($(2)_SOURCE)),)
718 $$(foreach hook
,$$($(2)_POST_LEGAL_INFO_HOOKS
),$$(call
$$(hook
))$$(sep
))
720 # add package to the general list of targets if requested by the buildroot
722 ifeq ($$($$($(2)_KCONFIG_VAR
)),y
)
724 # Ensure the calling package is the declared provider for all the virtual
725 # packages it claims to be an implementation of.
726 ifneq ($$($(2)_PROVIDES
),)
727 $$(foreach pkg
,$$($(2)_PROVIDES
),\
728 $$(eval
$$(call virt-provides-single
,$$(pkg
),$$(call UPPERCASE
,$$(pkg
)),$(1))$$(sep
)))
731 # Ensure unified variable name conventions between all packages Some
732 # of the variables are used by more than one infrastructure; so,
733 # rather than duplicating the checks in each infrastructure, we check
734 # all variables here in pkg-generic, even though pkg-generic should
735 # have no knowledge of infra-specific variables.
736 $(eval
$(call check-deprecated-variable
,$(2)_MAKE_OPT
,$(2)_MAKE_OPTS
))
737 $(eval
$(call check-deprecated-variable
,$(2)_INSTALL_OPT
,$(2)_INSTALL_OPTS
))
738 $(eval
$(call check-deprecated-variable
,$(2)_INSTALL_TARGET_OPT
,$(2)_INSTALL_TARGET_OPTS
))
739 $(eval
$(call check-deprecated-variable
,$(2)_INSTALL_STAGING_OPT
,$(2)_INSTALL_STAGING_OPTS
))
740 $(eval
$(call check-deprecated-variable
,$(2)_INSTALL_HOST_OPT
,$(2)_INSTALL_HOST_OPTS
))
741 $(eval
$(call check-deprecated-variable
,$(2)_AUTORECONF_OPT
,$(2)_AUTORECONF_OPTS
))
742 $(eval
$(call check-deprecated-variable
,$(2)_CONF_OPT
,$(2)_CONF_OPTS
))
743 $(eval
$(call check-deprecated-variable
,$(2)_BUILD_OPT
,$(2)_BUILD_OPTS
))
744 $(eval
$(call check-deprecated-variable
,$(2)_GETTEXTIZE_OPT
,$(2)_GETTEXTIZE_OPTS
))
745 $(eval
$(call check-deprecated-variable
,$(2)_KCONFIG_OPT
,$(2)_KCONFIG_OPTS
))
749 ifneq ($$($(2)_PERMISSIONS
),)
750 PACKAGES_PERMISSIONS_TABLE
+= $$($(2)_PERMISSIONS
)$$(sep
)
752 ifneq ($$($(2)_DEVICES
),)
753 PACKAGES_DEVICES_TABLE
+= $$($(2)_DEVICES
)$$(sep
)
755 ifneq ($$($(2)_USERS
),)
756 PACKAGES_USERS
+= $$($(2)_USERS
)$$(sep
)
759 ifeq ($$($(2)_SITE_METHOD
),svn
)
760 DL_TOOLS_DEPENDENCIES
+= svn
761 else ifeq ($$($(2)_SITE_METHOD
),git
)
762 DL_TOOLS_DEPENDENCIES
+= git
763 else ifeq ($$($(2)_SITE_METHOD
),bzr
)
764 DL_TOOLS_DEPENDENCIES
+= bzr
765 else ifeq ($$($(2)_SITE_METHOD
),scp
)
766 DL_TOOLS_DEPENDENCIES
+= scp ssh
767 else ifeq ($$($(2)_SITE_METHOD
),hg
)
768 DL_TOOLS_DEPENDENCIES
+= hg
769 else ifeq ($$($(2)_SITE_METHOD
),cvs
)
770 DL_TOOLS_DEPENDENCIES
+= cvs
773 # $(firstword) is used here because the extractor can have arguments, like
774 # ZCAT="gzip -d -c", and to check for the dependency we only want 'gzip'.
775 # Do not add xzcat to the list of required dependencies, as it gets built
776 # automatically if it isn't found.
777 ifneq ($$(call suitable-extractor
,$$($(2)_SOURCE
)),$$(XZCAT
))
778 DL_TOOLS_DEPENDENCIES
+= $$(firstword $$(call suitable-extractor
,$$($(2)_SOURCE
)))
781 # Ensure all virtual targets are PHONY. Listed alphabetically.
783 $(1)-all-external-deps \
784 $(1)-all-legal-info \
786 $(1)-all-source-check \
788 $(1)-clean-for-rebuild \
789 $(1)-clean-for-reconfigure \
790 $(1)-clean-for-reinstall \
799 $(1)-install-images \
800 $(1)-install-staging \
801 $(1)-install-target \
813 endif # $(2)_KCONFIG_VAR
814 endef # inner-generic-package
816 ################################################################################
817 # generic-package -- the target generator macro for generic packages
818 ################################################################################
820 # In the case of target packages, keep the package name "pkg"
821 generic-package
= $(call inner-generic-package
,$(pkgname
),$(call UPPERCASE
,$(pkgname
)),$(call UPPERCASE
,$(pkgname
)),target
)
822 # In the case of host packages, turn the package name "pkg" into "host-pkg"
823 host-generic-package
= $(call inner-generic-package
,host-
$(pkgname
),$(call UPPERCASE
,host-
$(pkgname
)),$(call UPPERCASE
,$(pkgname
)),host
)