From 4d8b993851d28909333d04166df592c8adc451aa Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Mon, 24 Aug 2015 15:18:39 -0700 Subject: 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 --- meta/conf/bitbake.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta/conf') 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. -- cgit 1.2.3-korg