diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2014-07-26 18:04:53 -0700 |
---|---|---|
committer | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-07-28 01:21:51 +0200 |
commit | 85622fdd499e48deaab5a37484aa4f6f83520d94 (patch) | |
tree | 975f5eebe86b4bc60c908c9b1a8e218116b64a6d /config/global | |
parent | 71074b7f822c7b867b1eca0b262de5c52064d8ce (diff) | |
download | crosstool-ng-85622fdd499e48deaab5a37484aa4f6f83520d94.tar.gz crosstool-ng-85622fdd499e48deaab5a37484aa4f6f83520d94.tar.bz2 crosstool-ng-85622fdd499e48deaab5a37484aa4f6f83520d94.zip |
Add main EXPERIMENTAL_PATCHES setting
This change adds support for experimental patches to be introduced to
crosstool-ng. The patches enabled by this option are to be located here:
patches/experimental/<package>/<version>/XXXX-NAME.patch
Where, XXXX is the patch number to be applied in order, like:
0001-some_patch_one.patch
0002-some_patch_two.patch
9999-some_patch_to_be_applied_last.patch
In the first patch series, all patches in the EXPERIMENTAL_PATCHES
option will be applied all at once, or none at all.
In a later [RFC] patch, I plan on adding finer tuned patch
enable/disable options based on the name of the patch and where it is
located in the patches/experimental sub-tree. So the name of the patch
should use underscores between words in the patch name.
Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
[yann.morin.1998@free.fr: slightly reword prompt]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Diffstat (limited to 'config/global')
-rw-r--r-- | config/global/ct-behave.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config/global/ct-behave.in b/config/global/ct-behave.in index ba723cf6..685da6aa 100644 --- a/config/global/ct-behave.in +++ b/config/global/ct-behave.in @@ -29,6 +29,16 @@ config EXPERIMENTAL - non-existant, in which case you could also try hacking it in and send me the result +config EXPERIMENTAL_PATCHES + bool + depends on EXPERIMENTAL + prompt "Use patches marked as EXPERIMENTAL_PATCHES (READ HELP!)" + help + ***WARNING*** This is not supported by crosstool-ng! ***WARNING*** + + If you set this to Y, then you will be able to enable experimental + patches that are not supported by crosstool-ng. + config ALLOW_BUILD_AS_ROOT bool prompt "Allow building as root user (READ HELP!)" |