From mboxrd@z Thu Jan 1 00:00:00 1970 X-GM-THRID: 6526857818487652352 X-Received: by 10.28.106.5 with SMTP id f5mr140735wmc.27.1519994616091; Fri, 02 Mar 2018 04:43:36 -0800 (PST) X-BeenThere: isar-users@googlegroups.com Received: by 10.28.1.73 with SMTP id 70ls281146wmb.12.canary-gmail; Fri, 02 Mar 2018 04:43:35 -0800 (PST) X-Google-Smtp-Source: AG47ELtq6cHSZde29CHq62kN4ESHgg0m+KJ4+P/8G5SD0E8lFvKVTLmQoZqEErCK83V7cDG7P19J X-Received: by 10.28.184.6 with SMTP id i6mr139821wmf.14.1519994615448; Fri, 02 Mar 2018 04:43:35 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1519994615; cv=none; d=google.com; s=arc-20160816; b=sHrh5ZqB0knjR15SJ0HpC9ufu9OmNZ6JAc1343tPNf9ZJ7MLsdpwbm5uco2NAiGtqC lvHSKG7iQFsCPAkGqrXarlLlwDWfgaCKObqg1lx4dRZjfVuXlHwfWwcGlFdjThvHzs/5 946Wmz1GdcNq+CVV93NWTPzXnMwFXowdN2alS+2ewRHyjboi5p9wQUyE6JGw2S3Ri7r+ 2zyLyf1zkwEQkgu1qKjGbSuR+GZDFdCnaF+zUZ5olD7mDmapHrgD3mxddMqV+BTj6k/o FAWs9issw2zdAg0UD61Kl7ct2dXto0gbPzQOXqQoh0J1FJ94qfMuYOsflD4NZbbUXM22 bfxw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=content-transfer-encoding:content-language:in-reply-to:mime-version :user-agent:date:message-id:from:references:to:subject :arc-authentication-results; bh=yfBC5NE2NWgPihLTqyLMD7Vs/n4MLMg7u+OhBLiasMQ=; b=pQPMQL970zrkKOHUZTUSEFINxpy6hE5x8KhSV7vePnshogNd2aODEdi11ofJ8OsZon eSNce/UEioNnz/fHHjtIf7H/b15CXmzLBk3ghQGWYUJr/8adTO23Z6o1HA3hvKVnn/cC lXMkferuOKn4xAFb5un4IYu6SZetePOxHCYylP6nItCAvJgZ5wRa/Sr2ZpMzryruzbiI 4n/ghFVXinIP8B330J9rR9ip/eZQXP54Ya5biVyFMZZb/qFVje/j54JHEKZwPc2s9nMk k08LOmKnbERf1/GAybiWN4NuW9piCFZbPAszhf8Fzqt0g/jaVM8OQr5sTTbsJvmmsHin 8U5Q== ARC-Authentication-Results: i=1; gmr-mx.google.com; spf=pass (google.com: best guess record for domain of asmirnov@ilbers.de designates 85.214.62.211 as permitted sender) smtp.mailfrom=asmirnov@ilbers.de Return-Path: Received: from aqmola.ilbers.de (aqmola.ilbers.de. [85.214.62.211]) by gmr-mx.google.com with ESMTPS id t15si62300wmh.1.2018.03.02.04.43.35 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 02 Mar 2018 04:43:35 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of asmirnov@ilbers.de designates 85.214.62.211 as permitted sender) client-ip=85.214.62.211; Authentication-Results: gmr-mx.google.com; spf=pass (google.com: best guess record for domain of asmirnov@ilbers.de designates 85.214.62.211 as permitted sender) smtp.mailfrom=asmirnov@ilbers.de Received: from [10.0.2.15] ([188.227.110.165]) (authenticated bits=0) by aqmola.ilbers.de (8.14.4/8.14.4/Debian-4+deb7u1) with ESMTP id w22ChWmO027365 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT); Fri, 2 Mar 2018 13:43:34 +0100 Subject: Re: [PATCH] Include error log of failing task in output To: Jan Kiszka , isar-users References: From: Alexander Smirnov Message-ID: <955aab45-bca0-7458-e3d6-a90616d2cbd7@ilbers.de> Date: Fri, 2 Mar 2018 15:43:26 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-TUID: ECy3YX4jhad1 On 02/26/2018 04:41 PM, Jan Kiszka wrote: > From: Jan Kiszka > > Particularly helpful in CI environment, but it also saves many manual > log dumps. > > Signed-off-by: Jan Kiszka > --- > meta/conf/isar-bitbake.conf | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/meta/conf/isar-bitbake.conf b/meta/conf/isar-bitbake.conf > index b49386c..8a1d86b 100644 > --- a/meta/conf/isar-bitbake.conf > +++ b/meta/conf/isar-bitbake.conf > @@ -42,6 +42,8 @@ BB_STAMP_POLICY ?= "full" > > BB_NUMBER_THREADS ?= "${@bb.utils.cpu_count()}" > > +BBINCLUDELOGS ??= "yes" > + Is there any specific reason of using the weakest assignment here? The whole file contains "?=" only, for me this looks enough here too. Alex