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-Tag: 1.9.9~19 X-Git-Url: https://jxself.org/git/?p=carl9170fw.git;a=commitdiff_plain;h=e7bcd5ddb8a85f899faf07e4c0aed4c8818d7acb 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" Signed-off-by: Christian Lamparter --- diff --git a/config/conf.c b/config/conf.c index 8b5fdf5..893f031 100644 --- a/config/conf.c +++ b/config/conf.c @@ -516,6 +516,7 @@ int main(int ac, char **av) seed = tmp; } } + fprintf( stderr, "KCONFIG_SEED=0x%X\n", seed ); srand(seed); break; }