瀏覽代碼

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" <yann.morin.1998@free.fr>
Yann E. MORIN 12 年之前
父節點
當前提交
a5f6d795f5
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      scripts/kconfig/conf.c

+ 1 - 0
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;
 		}