From: Christopher Larson Date: Mon, 24 Aug 2015 22:18:39 +0000 (-0700) Subject: bitbake.conf: set PATCHRESOLVE to noop by default X-Git-Tag: 2015-10~727 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=4d8b993851d28909333d04166df592c8adc451aa;p=openembedded-core.git bitbake.conf: set PATCHRESOLVE to noop by default Automatically spawning a devshell, rather than doing so on demand, is questionable default behavior, and is potentially problematic in headless builds. Further, there are problems with the patch resolver today. Default to noop, and the user can always opt-in to use of the patch resolver by setting PATCHRESOLVE to user. (From OE-Core rev: 7964936dd1fb202373e58048c19a91d4b27cdfd6) Signed-off-by: Christopher Larson Signed-off-by: Richard Purdie --- diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 01f4cd0746..aab43912df 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -483,8 +483,8 @@ export LC_ALL = "C" ################################################################## # Patch handling. ################################################################## -PATCHTOOL = 'quilt' -PATCHRESOLVE = 'user' +PATCHTOOL = "quilt" +PATCHRESOLVE = "noop" ################################################################## # Build flags and options.