diff options
Diffstat (limited to 'board/mosaixtech/icon/icon.c')
| -rw-r--r-- | board/mosaixtech/icon/icon.c | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/board/mosaixtech/icon/icon.c b/board/mosaixtech/icon/icon.c index e09dbc3df..e464e4395 100644 --- a/board/mosaixtech/icon/icon.c +++ b/board/mosaixtech/icon/icon.c @@ -275,12 +275,13 @@ int board_early_init_r(void)  int checkboard(void)  { -	char *s = getenv("serial#"); +	char buf[64]; +	int i = getenv_f("serial#", buf, sizeof(buf));  	printf("Board: ICON"); -	if (s != NULL) { +	if (i > 0) {  		puts(", serial# "); -		puts(s); +		puts(buf);  	}  	putc('\n'); |