2c924f657f
Signed-off-by: liuhaitao <liuhaitao@xiaomi.com>
31 lines
418 B
Bash
Executable File
31 lines
418 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
usage="Usage: %0 <romfs-dir-path>"
|
|
|
|
dir=$1
|
|
if [ -z "$dir" ]; then
|
|
echo "ERROR: Missing <romfs-dir-path>"
|
|
echo ""
|
|
echo $usage
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -d "$dir" ]; then
|
|
echo "ERROR: Directory $dir does not exist"
|
|
echo ""
|
|
echo $usage
|
|
exit 1
|
|
fi
|
|
|
|
echo "#include <stddef.h>"
|
|
echo ""
|
|
echo "const char *dirlist[] ="
|
|
echo "{"
|
|
|
|
for file in `ls $dir`; do
|
|
echo " \"$file\","
|
|
done
|
|
|
|
echo " NULL"
|
|
echo "};"
|