summaryrefslogtreecommitdiff
path: root/nuttx/examples/nxflat/tests/mkdirlist.sh
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/examples/nxflat/tests/mkdirlist.sh')
-rwxr-xr-xnuttx/examples/nxflat/tests/mkdirlist.sh35
1 files changed, 0 insertions, 35 deletions
diff --git a/nuttx/examples/nxflat/tests/mkdirlist.sh b/nuttx/examples/nxflat/tests/mkdirlist.sh
deleted file mode 100755
index cc55ac0b5..000000000
--- a/nuttx/examples/nxflat/tests/mkdirlist.sh
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/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 "#ifndef __EXAMPLES_NXFLAT_TESTS_DIRLIST_H"
-echo "#define __EXAMPLES_NXFLAT_TESTS_DIRLIST_H"
-echo ""
-echo "static const char *dirlist[] ="
-echo "{"
-
-for file in `ls $dir`; do
- echo " \"$file\","
-done
-
-echo " NULL"
-echo "};"
-echo ""
-echo "#endif /* __EXAMPLES_NXFLAT_TESTS_DIRLIST_H */"
-
-