diff options
Diffstat (limited to 'common/cmd_fastboot.c')
| -rw-r--r-- | common/cmd_fastboot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_fastboot.c b/common/cmd_fastboot.c index 4ccf9af86..698f17889 100644 --- a/common/cmd_fastboot.c +++ b/common/cmd_fastboot.c @@ -55,7 +55,7 @@ DECLARE_GLOBAL_DATA_PTR; static void set_serial_number(void) { /* use ethaddr for fastboot serial no. */ - char *ethaddr = "123456789012345678901234567890";/*getenv("ethaddr");*/ + char *ethaddr = getenv ("ipaddress"); /* "123456789012345678901234567890"; *//*getenv("ethaddr");*/ if (ethaddr != NULL) { int len; |