summaryrefslogtreecommitdiff
path: root/misc/drivers/INSTALL.sh
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-03-25 14:51:44 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-03-25 14:51:44 +0000
commitf185bb36f26fe0e808048e5f2f3a8a3eda46d0c7 (patch)
tree449db287acefaf8aa436b8dd362beb4bed1b9f74 /misc/drivers/INSTALL.sh
parent048de7cf3c1d0a20adb148aaa1ff3bc299858ca3 (diff)
downloadnuttx-f185bb36f26fe0e808048e5f2f3a8a3eda46d0c7.tar.gz
nuttx-f185bb36f26fe0e808048e5f2f3a8a3eda46d0c7.tar.bz2
nuttx-f185bb36f26fe0e808048e5f2f3a8a3eda46d0c7.zip
RTL8187 I/O routines
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3414 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'misc/drivers/INSTALL.sh')
-rwxr-xr-xmisc/drivers/INSTALL.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/misc/drivers/INSTALL.sh b/misc/drivers/INSTALL.sh
index 86deca589..66205af9f 100755
--- a/misc/drivers/INSTALL.sh
+++ b/misc/drivers/INSTALL.sh
@@ -45,6 +45,7 @@ usage="USAGE: $0 [-d|h] <NuttX-path>"
unset nuttxdir
unset debug
+unset force
while [ ! -z "$1" ]; do
case "$1" in
@@ -52,6 +53,9 @@ while [ ! -z "$1" ]; do
set -x
debug="-d"
;;
+ -f )
+ force="-f"
+ ;;
-h )
echo "$usage"
exit 0
@@ -93,5 +97,5 @@ for dir in "$DRIVERS"; do
# Run the driver install script
- ${dir}/INSTALL.sh $debug -t "${wd}/${dir}" -n "${nuttxdir}"
+ ${dir}/INSTALL.sh $debug $force -t "${wd}/${dir}" -n "${nuttxdir}"
done