From patchwork Tue Jun 18 22:45:07 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Yann E. MORIN" X-Patchwork-Id: 2745601 Return-Path: X-Original-To: patchwork-linux-kbuild@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 2B4699F39E for ; Tue, 18 Jun 2013 22:46:49 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 68E3C2028A for ; Tue, 18 Jun 2013 22:46:48 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 93F8A20260 for ; Tue, 18 Jun 2013 22:46:47 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933777Ab3FRWqr (ORCPT ); Tue, 18 Jun 2013 18:46:47 -0400 Received: from mail-wg0-f47.google.com ([74.125.82.47]:51339 "EHLO mail-wg0-f47.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933809Ab3FRWpg (ORCPT ); Tue, 18 Jun 2013 18:45:36 -0400 Received: by mail-wg0-f47.google.com with SMTP id l18so4004605wgh.14 for ; Tue, 18 Jun 2013 15:45:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references:in-reply-to:references; bh=ViEVMF85ayhXzoTgisY10QinBSc6Hg4BJjo0TfN/kaw=; b=n//5sNe/WbT4gxkM9wbQzUczVFrh9PEkMLnvHzio1sLdXG2MnoyhkCwUmSiO1vQRy5 BMP8X95YDpo0bIX0oEDaaHO+XkR4RogGVOHhSoX4lRTVJDQfwt6Unp3VppeNujlbuR1C BhRaTWBlILfnUc/u0lca/Z6vOLWWED+xDDnhoXtMOZZXtBZOWVFT/MdYzeWTGv6KJcBt 2M2hHfQd5XEcveSiZBF/hjPOsS2H2bJIlducGI7eBmADsJMe2/ChEsToXULwV9cV8fYk 1BZfP/KBbzNNpOkCP/hun/4Oxkzx3G2+shW253lvdnVEAhu+CmSiOyH33b2jEuvc0h+v YWsQ== X-Received: by 10.194.2.13 with SMTP id 13mr12312331wjq.74.1371595534743; Tue, 18 Jun 2013 15:45:34 -0700 (PDT) Received: from gourin.bzh.lan (ks3095497.kimsufi.com. [94.23.60.27]) by mx.google.com with ESMTPSA id o14sm5307237wiv.3.2013.06.18.15.45.33 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 18 Jun 2013 15:45:34 -0700 (PDT) From: "Yann E. MORIN" To: linux-kbuild@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Michal Marek , "Yann E. MORIN" Subject: [PATCH 11/14] kconfig/conf: print the seed used to initialise the RNG for randconfig Date: Wed, 19 Jun 2013 00:45:07 +0200 Message-Id: X-Mailer: git-send-email 1.8.1.2 In-Reply-To: References: In-Reply-To: References: Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Spam-Status: No, score=-8.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, FREEMAIL_FROM,RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: "Yann E. MORIN" ... so the user has a chance to reproduce a test-case. Signed-off-by: "Yann E. MORIN" --- scripts/kconfig/conf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c index 94521c7..38616c1 100644 --- a/scripts/kconfig/conf.c +++ b/scripts/kconfig/conf.c @@ -532,6 +532,7 @@ int main(int ac, char **av) seed = tmp; } } + fprintf( stderr, "KCONFIG_SEED=0x%X\n", seed ); srand(seed); break; }