Other Parts Discussed in Thread: AM62P
Tool/software:
Whenever I connect via adb, the device does not show serial number. Please share information w.r.t setting a serial number.
$ adb devices
List of devices attached
(no serial number) device
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software:
Whenever I connect via adb, the device does not show serial number. Please share information w.r.t setting a serial number.
$ adb devices
List of devices attached
(no serial number) device
Hello Hariraj,
Thank you for reporting this issue.
Usually, the serial number is provisioned in an EEPROM. The bootloader (U-Boot) reads that out and then sets the serial# variable. This serial# is then converted into androidboot.serialno which ends up being the serial shown when running adb devices.
Since U-Boot has no eeprom reading support for AM62P, the serial number is blank.
As a work-around, you can set the serial number from the U-Boot shell and save it to the eMMC environment.
For example, to configure AM62Pmyserial as serial number, run:
=> setenv serial# AM62Pmyserial => saveenv Saving Environment to MMC... Writing to MMC(0)... OK
Then restart the board.
We will see:
$ adb devices List of devices attached AM62Pmyserial device