rockbox/utils/nwztools/database/nvp/parse_nvp_header.sh
Amaury Pouly 698779e3e8 sonynwz: add nvp nodes for NW-A40/ZX300, various fixes for tools
We still miss the model IDS for those device so scsitool won't be able to
recognize them automatically.

Change-Id: I17ae0f0d95c011cea8e289def63c7673b6c4b667
2017-10-06 12:10:33 +02:00

82 lines
2.1 KiB
Bash
Executable file

#!/bin/bash
# usage
# parse_header.sh /path/to/icx_nvp.h
# parse_header.sh /path/to/linux/source [file]
# parse_header.sh /path/to/linux.tgz [file]
# the optional argument is an additional filter when there are several matches
# and is an argument to grep
#
if [ "$#" -lt 1 ]; then
>&2 echo "usage: parse_header.sh /path/to/icx_nvp.h|/path/to/kernel/source|/path/to/kernel.tgz [filter]"
exit 1
fi
FILE="$1"
IN_TGZ="0"
FILTER="$2"
# for directories, list all files
if [ -d "$FILE" ]; then
LIST=`find "$FILE"`
else
# otherwise try un unpack it using tar, to see if it's an archive
LIST=`tar -tzf "$FILE"`
if [ "$?" == 0 ]; then
IN_TGZ="1"
TGZ="$FILE"
else
# assume the input is just the right file
LIST="$FILE"
fi
fi
# apply user filter
if [ "$FILTER" != "" ]; then
LIST=`echo "$LIST" | grep "$FILTER"`
fi
# if file contains icx_nvp_emmc.h, we want that
if [ "`echo "$LIST" | grep "icx_nvp_emmc.h" | wc -l`" = "1" ]; then
LIST=`echo "$LIST" | grep "icx_nvp_emmc.h"`
else
# otherwise find any file named icx_nvp*.h but filter out icx_nvp_wrapper.h
LIST=`echo "$LIST" | grep 'icx[[:digit:]]*_nvp[[:alpha:]_]*.h' | sed '/icx_nvp_wrapper/d'`
fi
LIST_CNT=`echo "$LIST" | wc -l`
if [ "$LIST_CNT" = "0" ]; then
>&2 echo "No icx nvp file found"
exit 1
elif [ "$LIST_CNT" != "1" ]; then
>&2 echo "Several matches for icx nvp:"
>&2 echo "$LIST"
exit 1
else
FILE="$LIST"
fi
# if file is in archive, we need to extract it
if [ "$IN_TGZ" = "1" ]; then
>&2 echo "Extracting $FILE from $TGZ"
TMP=`mktemp`
tar -Ozxf "$TGZ" "$FILE" > $TMP
if [ "$?" != 0 ]; then
>&2 echo "Extraction failed"
exit 1
fi
FILE="$TMP"
else
>&2 echo "Analyzing $FILE"
fi
# old format: #define ICX1087_NVP_NODE_APP "/dev/icx1087_nvp/0"
# new format: #define ICX_NVP_NODE_APP ICX_NVP_NODE_BASE "0"
cat "$FILE" | awk ' \
BEGIN { \
expr = "#define[[:space:]]+ICX[[:digit:]]*_NVP_NODE_([[:alnum:]]+)[[:space:]]+(ICX_NVP_NODE_BASE[[:space:]]*\"|\"/dev.*_nvp/)([[:digit:]]+)\"";
} \
{ \
if($0 ~ expr) \
{ \
print(tolower(gensub(expr, "\\1,\\3", "g", $0)));
} \
}'