From 3e8f7e33fced7e50bd3dcc404e89eafbb01847de Mon Sep 17 00:00:00 2001 From: Stuart Ianna Date: Thu, 29 Jun 2023 21:47:38 +1000 Subject: [PATCH] tools/mkimport: Add system map to mkimport script. The `make export` target from the Nuttx repository correctly packs the System.map file. This change ensure that ./tools/mkimport.sh extracts this file correctly into the `import`correctly. --- tools/mkimport.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/mkimport.sh b/tools/mkimport.sh index 2173f9be9..6af33b0c9 100755 --- a/tools/mkimport.sh +++ b/tools/mkimport.sh @@ -162,7 +162,7 @@ cp -rf ${REGISTERSDIR} ${BUILTINDIR}/. || \ # Move the .config file in place in the import directory -SFILES=".config" +SFILES=".config System.map" for file in ${SFILES}; do if [ -f "${EXPORTDIR}/${file}" ]; then cp -a ${EXPORTDIR}/${file} ${IMPORTDIR}/${file} || \