Fix build reproducibility in Make 3.82
[buildroot-gz.git] / docs / manual / customize-packages.txt
blob1820c544e5e627b4de29e749109620a876366ed1
1 // -*- mode:doc -*- ;
3 [[packages-custom]]
4 Customizing packages
5 ~~~~~~~~~~~~~~~~~~~~
7 It is sometimes useful to apply 'extra' patches to packages - over and
8 above those provided in Buildroot. This might be used to support custom
9 features in a project, for example, or when working on a new architecture.
11 The +BR2_GLOBAL_PATCH_DIR+ configuration file option can be
12 used to specify a directory containing global package patches.
14 For a specific version <packageversion> of a specific package <packagename>,
15 patches are applied as follows.
17 First, the default Buildroot patch set for the package is applied.
19 If the directory +$(BR2_GLOBAL_PATCH_DIR)/<packagename>/<packageversion>+
20 exists, then all +*.patch+ files in the directory will be applied.
22 Otherwise, if the directory +$(BR2_GLOBAL_PATCH_DIR)/<packagename>+
23 exists, then all +*.patch+ files in the directory will be applied.