From: Yann E. MORIN Date: Mon, 20 May 2013 21:09:03 +0000 (+0200) Subject: kconfig/conf: print the seed used to initialise the RNG for randconfig X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=a5f6d795f5941e97e757b643a6482968a66c6150;p=deliverable%2Flinux.git kconfig/conf: print the seed used to initialise the RNG for randconfig ... so the user has a chance to reproduce a test-case. Signed-off-by: "Yann E. MORIN" --- diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c index 94521c7712c3..38616c14c071 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; }