summaryrefslogtreecommitdiffstats
path: root/utils/nwztools/database/nvp/parse_nvp_nodes.sh
blob: 8fc4367a8feed9e9dbcde521bc128894a8e01ee5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/bin/bash
# usage
# parse_nodes.sh /path/to/icx_nvp_emmc.ko output_file
# parse_nodes.sh /path/to/rootfs/dir output_file
# parse_nodes.sh /path/to/rootfs.tgz output_file
#
if [ -z "$NVP_LOG" ]; then
    NVP_LOG=/dev/null
fi
if [ "$#" -lt 2 ]; then
    >&2 echo "usage: parse_header.sh /path/to/icx_nvp.ko|/path/to/rootfs/dir|/path/to/rootfs.tgz output_file"
    exit 1
fi

FILE="$1"
IN_TGZ="0"
OUTPUT="$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

# look for icx_nvp_emmc.ko
LIST=`echo "$LIST" | grep "icx[[:digit:]]*_nvp[[:alpha:]_]*.ko"`
LIST_CNT=`echo "$LIST" | wc -l`
if [ "$LIST" == "" ]; 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

./nvptool -x "$FILE" -o "$OUTPUT" >"$NVP_LOG"