X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=config%2Fconf.c;h=e308f5bf09a546b85017eea5e551ddbc8ceecc7b;hb=7dbd962f5b9fe3c03a70383b45c08e0c86de46c5;hp=cdbdb1129eeb3067b26451c0851d014d709a4ad2;hpb=64463ab6b5921f840a8fe7ac9b48923c704c15b5;p=carl9170fw.git diff --git a/config/conf.c b/config/conf.c index cdbdb11..e308f5b 100644 --- a/config/conf.c +++ b/config/conf.c @@ -13,6 +13,7 @@ #include #include #include +#include #include "lkc.h" @@ -498,14 +499,24 @@ 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, 0); + if (*endp == '\0') { + seed = tmp; + } + } + fprintf( stderr, "KCONFIG_SEED=0x%X\n", seed ); srand(seed); break; } @@ -604,7 +615,8 @@ int main(int ac, char **av) conf_set_all_new_symbols(def_default); break; case randconfig: - conf_set_all_new_symbols(def_random); + /* Really nothing to do in this loop */ + while (conf_set_all_new_symbols(def_random)) ; break; case defconfig: conf_set_all_new_symbols(def_default);