tools: make config-gen to require build target argument

When argument is not supplied help user by telling what arguments can be
used.

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
This commit is contained in:
Sami Kerola 2014-02-16 15:22:55 +00:00 committed by Karel Zak
parent 5a2fd9329e
commit 22c3c4f936
1 changed files with 9 additions and 0 deletions

View File

@ -12,6 +12,15 @@ test -f sys-utils/mount.c || {
. tools/config-gen-functions.sh
if [ $# -eq 0 ]; then
echo "This script requires at least one of the folloving arguments:"
cd tools/config-gen.d
for i in *.conf; do
echo " ${i%%.conf}"
done
exit 1
fi
while [ -n "$1" ]; do
opts="$opts $(ul_get_configuration tools/config-gen.d/$1.conf)"
shift