diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2013-04-13 22:49:13 +0200 |
---|---|---|
committer | Yann E. MORIN <yann.morin.1998@free.fr> | 2013-04-25 00:16:25 +0200 |
commit | 0d8024c6ebadb68f1154377c2e1996b4e649e4c8 (patch) | |
tree | bd38ec60a908adf8cf7c75aa7b3b19fab52d9e64 /scripts | |
parent | 422c809f03f043d0950d8362214818e956a9daee (diff) | |
download | linux-3.10-0d8024c6ebadb68f1154377c2e1996b4e649e4c8.tar.gz linux-3.10-0d8024c6ebadb68f1154377c2e1996b4e649e4c8.tar.bz2 linux-3.10-0d8024c6ebadb68f1154377c2e1996b4e649e4c8.zip |
kconfig: allow specifying the seed for randconfig
For reproducibility, it can be useful to be able to specify the
seed to use to seed the RNG.
Add a new KCONFIG_SEED environment variable which can be set to
the seed to use:
$ make KCONFIG_SEED=42 randconfig
$ sha1sum .config
70a128c8dcc61303069e1be352cce64114dfcbca .config
$ make KCONFIG_SEED=42 randconfig
$ sha1sum .config
70a128c8dcc61303069e1be352cce64114dfcbca .config
It's very usefull for eg. debugging the kconfig parser.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/conf.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c index e39fcd8143e..bde5b95c8c1 100644 --- a/scripts/kconfig/conf.c +++ b/scripts/kconfig/conf.c @@ -13,6 +13,7 @@ #include <getopt.h> #include <sys/stat.h> #include <sys/time.h> +#include <errno.h> #include "lkc.h" @@ -514,14 +515,23 @@ int main(int ac, char **av) { struct timeval now; unsigned int seed; + char *seed_env; /* * Use microseconds derived seed, * compensate for systems where it may be zero */ gettimeofday(&now, NULL); - seed = (unsigned int)((now.tv_sec + 1) * (now.tv_usec + 1)); + + seed_env = getenv("KCONFIG_SEED"); + if( seed_env && *seed_env ) { + char *endp; + int tmp = (int)strtol(seed_env, &endp, 10); + if (*endp == '\0') { + seed = tmp; + } + } srand(seed); break; } |