diff options
Diffstat (limited to 'scripts/link-vmlinux.sh')
-rw-r--r-- | scripts/link-vmlinux.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/link-vmlinux.sh b/scripts/link-vmlinux.sh index 1f4c27bd5d2a..cd9c6c6bb4c9 100644 --- a/scripts/link-vmlinux.sh +++ b/scripts/link-vmlinux.sh @@ -93,6 +93,11 @@ mksysmap() ${CONFIG_SHELL} "${srctree}/scripts/mksysmap" ${1} ${2} } +sortextable() +{ + ${objtree}/scripts/sortextable ${1} +} + # Delete output files in case of error trap cleanup SIGHUP SIGINT SIGQUIT SIGTERM ERR cleanup() @@ -192,6 +197,11 @@ fi info LD vmlinux vmlinux_link "${kallsymso}" vmlinux +if [ -n "${CONFIG_BUILDTIME_EXTABLE_SORT}" ]; then + info SORTEX vmlinux + sortextable vmlinux +fi + info SYSMAP System.map mksysmap vmlinux System.map |