aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/ti/files/dvsdk-rules/check.sh
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/ti/files/dvsdk-rules/check.sh')
-rwxr-xr-xrecipes/ti/files/dvsdk-rules/check.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/recipes/ti/files/dvsdk-rules/check.sh b/recipes/ti/files/dvsdk-rules/check.sh
new file mode 100755
index 0000000000..8dc4dd4959
--- /dev/null
+++ b/recipes/ti/files/dvsdk-rules/check.sh
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+echo "Checking that components in Rules.make are found:"
+echo
+
+for x in $CHECKLIST
+do
+ if [ ! -e $x ]
+ then
+ echo "WARNING: $x doesn't exist, check your Rules.make.."
+ fi
+done
+
+echo "Done checking! If no warning messages above, all components are found.."
+
+echo