projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e6abf12
)
kconfig/conf: accept a base-16 seed for randconfig
author
Yann E. MORIN
<yann.morin.1998@free.fr>
Mon, 20 May 2013 21:17:34 +0000
(23:17 +0200)
committer
Yann E. MORIN
<yann.morin.1998@free.fr>
Tue, 18 Jun 2013 21:59:00 +0000
(23:59 +0200)
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
scripts/kconfig/conf.c
patch
|
blob
|
history
diff --git
a/scripts/kconfig/conf.c
b/scripts/kconfig/conf.c
index
bde5b95
..
94521c7
100644
(file)
--- a/
scripts/kconfig/conf.c
+++ b/
scripts/kconfig/conf.c
@@
-527,7
+527,7
@@
int main(int ac, char **av)
seed_env = getenv("KCONFIG_SEED");
if( seed_env && *seed_env ) {
char *endp;
- int tmp = (int)strtol(seed_env, &endp,
1
0);
+ int tmp = (int)strtol(seed_env, &endp, 0);
if (*endp == '\0') {
seed = tmp;
}