aboutsummaryrefslogtreecommitdiff
path: root/config/global/extract.in
diff options
context:
space:
mode:
Diffstat (limited to 'config/global/extract.in')
-rw-r--r--config/global/extract.in38
1 files changed, 33 insertions, 5 deletions
diff --git a/config/global/extract.in b/config/global/extract.in
index 4e624801..21163046 100644
--- a/config/global/extract.in
+++ b/config/global/extract.in
@@ -48,6 +48,12 @@ config PATCH_BUNDLED
help
Only apply patches bundled with crosstool-NG.
+config PATCH_BUNDLED_EXP
+ bool "Bundled, then experimental bundled"
+ depends on ENABLE_EXPERIMENTAL_BUNDLED_PATCHES
+ help
+ Apply the bundled patches, and experimental bundled patches.
+
config PATCH_LOCAL
bool "Local only"
select PATCH_USE_LOCAL
@@ -64,6 +70,15 @@ config PATCH_BUNDLED_LOCAL
Apply the patches bundled with crosstool-NG, then apply your local
patches.
+config PATCH_BUNDLED_EXP_LOCAL
+ bool "Bundled, then experimental bundled, then local"
+ select PATCH_USE_LOCAL
+ depends on ENABLE_EXPERIMENTAL_BUNDLED_PATCHES
+ help
+ Apply the patches bundled with crosstool-NG, then apply the
+ experimental patches bundled with crosstool-NG, then apply
+ your local patches.
+
config PATCH_LOCAL_BUNDLED
bool "Local, then bundled"
select PATCH_USE_LOCAL
@@ -73,6 +88,16 @@ config PATCH_LOCAL_BUNDLED
crosstool-NG. Note that the bundled patches cannot be guaranteed
to apply on top of your local patches.
+config PATCH_LOCAL_BUNDLED_EXP
+ bool "Local, then bundled, then experimental bunlded"
+ select PATCH_USE_LOCAL
+ depends on ENABLE_EXPERIMENTAL_BUNDLED_PATCHES
+ help
+ Apply your local patches, then apply the patches bundled with
+ crosstool-NG, then apply the experimental patches bundled with
+ crosstool-NG. Note that the bundled patches cannot be guaranteed
+ to apply on top of your local patches.
+
config PATCH_NONE
bool "None"
depends on EXPERIMENTAL
@@ -90,11 +115,14 @@ endchoice
config PATCH_ORDER
string
- default "bundled" if PATCH_BUNDLED
- default "local" if PATCH_LOCAL
- default "bundled,local" if PATCH_BUNDLED_LOCAL
- default "local,bundled" if PATCH_LOCAL_BUNDLED
- default "none" if PATCH_NONE
+ default "bundled" if PATCH_BUNDLED
+ default "local" if PATCH_LOCAL
+ default "bundled,local" if PATCH_BUNDLED_LOCAL
+ default "local,bundled" if PATCH_LOCAL_BUNDLED
+ default "bundled,bundled_exp" if PATCH_BUNDLED_EXP
+ default "bundled,bundled_exp,local" if PATCH_BUNDLED_EXP_LOCAL
+ default "local,bundled,bundled_exp" if PATCH_LOCAL_BUNDLED_EXP
+ default "none" if PATCH_NONE
config PATCH_USE_LOCAL
bool