Hi Robert, On Mon, Apr 8, 2019 at 4:51 AM Robert P. J. Day <[email protected]> wrote: > > > short followup to earlier question ... i was going to check the file > .u-boot.map.cmd to see which command was used to generate it but, > unlike numerous other files of that form, that file has no associated > .cmd file. any reason for that? >
The reason is that u-boot.map isn't a target, you can't run 'make u-boot.map'. It gets generated as side-effect of the final link (see cmd_u_boot__ in the main Makefile). You can see the command that generates it in .uboot.cmd. _______________________________________________ U-Boot mailing list [email protected] https://lists.denx.de/listinfo/u-boot

