rockbox/utils/nwztools/database/nvp/parse_all_nvp_headers.sh
Amaury Pouly 3c3e133f99 nwztools: small fixes
Make sure scripts use bash, make nwz database generator more deterministic

Change-Id: I26812b697abe0406fb3c60d6eb231cb27edc81d5
2017-01-04 17:03:14 +01:00

33 lines
922 B
Bash
Executable file

#!/bin/bash
# usage: parse_all_nvp_headers /path/to/directory
#
# the expected structure is:
# nwz-*/<kernel>
# nw-*/<kernel/
# where <kernel> must be of the form
# linux-kernel-*.tgz
#
if [ "$#" -lt 1 ]; then
>&2 echo "usage: parse_all_nvp_header.sh /path/to/directory"
exit 1
fi
# list interesting directories
for dir in `find "$1" -maxdepth 1 -name "nw-*" -or -name "nwz-*"`
do
# extract codename
codename=`basename "$dir"`
# only consider linux based targets
if [ -e "$dir/not_linux" ]; then
#echo "$codename: not linux based"
continue
fi
# check if we can find a kernel
kernel_tgz=`find "$dir" -maxdepth 1 -name "linux-kernel-*.tgz"`
if [ "$kernel_tgz" == "" ]; then
echo "$codename: no kernel found"
continue
fi
echo "$codename: found kernel `basename $kernel_tgz`"
./parse_nvp_header.sh "$kernel_tgz" > "$codename.txt"
done