For the first time, I try to flash my devkit.
I use:
ii uuu 1.2.31-1 amd64 Freescale/NXP I.MX Chip image deploy tools
but I get an exception:
uuu (Universal Update Utility) for nxp imx chips -- lib
Enjoy auto [tab] command complete by put below script into /etc/bash_completion.d/uuu
_uuu_autocomplete()
{
COMPREPLY=($(/usr/bin/uuu $1 $2 $3))
}
complete -o nospace -F _uuu_autocomplete uuu
terminate called after throwing an instance of 'std::invalid_argument'
what(): stoll
Traceback (most recent call last):
File "./scripts/librem5-devkit-flash-image", line 308, in <module>
sys.exit(main())
File "./scripts/librem5-devkit-flash-image", line 292, in main
flash_image(uuu_target, args.debug)
File "./scripts/librem5-devkit-flash-image", line 226, in flash_image
subprocess.check_call(['uuu', uuu_target])
File "/usr/lib/python3.7/subprocess.py", line 347, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['uuu', 'images/flash_devkit.lst']' died with <Signals.SIGABRT: 6>.
What am I doing wrong?