mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 17:55:38 +01:00
Merge remote-tracking branch 'origin/pr/2588' into mbedtls-2.7
* origin/pr/2588: Document the scripts behaviour further Add --internal option to list-identifiers.sh
This commit is contained in:
commit
7f13157b56
@ -1,4 +1,10 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
|
#
|
||||||
|
# Create a file named identifiers containing identifiers from internal header
|
||||||
|
# files or all header files, based on --internal flag.
|
||||||
|
# Outputs the line count of the file to stdout.
|
||||||
|
#
|
||||||
|
# Usage: list-identifiers.sh [ -i | --internal ]
|
||||||
|
|
||||||
set -eu
|
set -eu
|
||||||
|
|
||||||
@ -7,7 +13,29 @@ if [ -d include/mbedtls ]; then :; else
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
HEADERS=$( ls include/mbedtls/*.h | egrep -v 'compat-1\.3\.h|bn_mul' )
|
INTERNAL=""
|
||||||
|
|
||||||
|
until [ -z "${1-}" ]
|
||||||
|
do
|
||||||
|
case "$1" in
|
||||||
|
-i|--internal)
|
||||||
|
INTERNAL="1"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
# print error
|
||||||
|
echo "Unknown argument: '$1'"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ $INTERNAL ]
|
||||||
|
then
|
||||||
|
HEADERS=$( ls include/mbedtls/*_internal.h | egrep -v 'compat-1\.3\.h|bn_mul' )
|
||||||
|
else
|
||||||
|
HEADERS=$( ls include/mbedtls/*.h | egrep -v 'compat-1\.3\.h|bn_mul' )
|
||||||
|
fi
|
||||||
|
|
||||||
rm -f identifiers
|
rm -f identifiers
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user