From 9f213b284b9412a72f1406c12068d4bed6a6936f Mon Sep 17 00:00:00 2001 From: Junhwan Park Date: Mon, 17 Jul 2017 13:23:17 +0900 Subject: [PATCH] tools/mkkconfig: sort apps in menuconfig When searching for Kconfig in apps with the find command, it was not output in numerical order. It is a patch that sort only the output results. Change-Id: I3b0822735a633de329dcb7ff16c95c33115dedd9 Signed-off-by: Junhwan Park --- apps/tools/mkkconfig.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/tools/mkkconfig.sh b/apps/tools/mkkconfig.sh index a977e43..03df3d2 100755 --- a/apps/tools/mkkconfig.sh +++ b/apps/tools/mkkconfig.sh @@ -102,7 +102,7 @@ fi echo mkkconfig in $PWD -KCONFIG_LIST=`find $PWD -mindepth 2 -maxdepth 2 -name ${KCONFIG}` +KCONFIG_LIST=`find $PWD -mindepth 2 -maxdepth 2 -name ${KCONFIG} | sort -n` echo "#" > ${KCONFIG} echo "# For a description of the syntax of this configuration file," >> ${KCONFIG} -- 2.7.4