From d875046057cb33f0910bd7b6973985a2f9656467 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Petr=20=C5=A0tetiar?= Date: Fri, 15 Oct 2010 22:49:48 +0000 Subject: [PATCH] oestats-client.bbclass: send USERDISTRO value MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit With this patch it's now possible to see the correct Angstrom distro version in the Tinderbox. Now the distribution value is always 'angstrom', with this patch it would be more detailed version 'angstrom-2008.1' for example. Signed-off-by: Petr Å tetiar Acked-by: Frans Meulenbroeks Acked-by: Chris Larson Signed-off-by: Frans Meulenbroeks --- classes/oestats-client.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/oestats-client.bbclass b/classes/oestats-client.bbclass index 4415461364..a98c9d11d4 100644 --- a/classes/oestats-client.bbclass +++ b/classes/oestats-client.bbclass @@ -77,7 +77,7 @@ def oestats_start(server, builder, d): 'metadata_branch': bb.data.getVar('METADATA_BRANCH', d, True), 'metadata_revision': bb.data.getVar('METADATA_REVISION', d, True), 'machine': bb.data.getVar('MACHINE', d, True), - 'distro': bb.data.getVar('DISTRO', d, True), + 'distro': bb.data.getVar('USERDISTRO', d, True), }) if re.match("^\d+$", data): id=data except: -- 2.39.5