db410c: serial# env using msm board serial

The serial# environment variable needs to be
defined so it will be used by fastboot as serial
for the endpoint descriptor.

Signed-off-by: Ramon Fried <ramon.fried@gmail.com>
lime2-spi
Ramon Fried 6 years ago committed by Tom Rini
parent 6b0861a942
commit 2df573e6a5
  1. 1
      arch/arm/mach-snapdragon/Kconfig
  2. 10
      board/qualcomm/dragonboard410c/dragonboard410c.c

@ -14,6 +14,7 @@ choice
config TARGET_DRAGONBOARD410C
bool "96Boards Dragonboard 410C"
select BOARD_LATE_INIT
help
Support for 96Boards Dragonboard 410C. This board complies with
96Board Open Platform Specifications. Features:

@ -151,6 +151,16 @@ int board_init(void)
return 0;
}
int board_late_init(void)
{
char serial[16];
memset(serial, 0, 16);
snprintf(serial, 13, "%x", msm_board_serial());
env_set("serial#", serial);
return 0;
}
/* Fixup of DTB for Linux Kernel
* 1. Fixup installed DRAM.
* 2. Fixup WLAN/BT Mac address:

Loading…
Cancel
Save