summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-09-25 09:13:21 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-09-25 09:13:21 +0000
commit78b781b933a187eebdc08b3e8eb451ab030d69d3 (patch)
tree90af2777ce1427c7b32c3fcd41d01f595aaf4f4f /extra
parent1bdf1685be2b16c3da9ed24fa3d3c7baf617428b (diff)
- expand documentation
Diffstat (limited to 'extra')
-rwxr-xr-xextra/scripts/randconfig.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/extra/scripts/randconfig.sh b/extra/scripts/randconfig.sh
index d0be318c8..5986a9b12 100755
--- a/extra/scripts/randconfig.sh
+++ b/extra/scripts/randconfig.sh
@@ -1,9 +1,16 @@
#!/bin/sh
+# build random configurations
+# Usage:
+# ARCH=i386 nohup ./extra/scripts/randconfig.sh & sleep 1800 && touch STOP
+#
+# The above builds random i386 configs and automatically stops after 30 minutes
+
test "x$ARCH" = "x" && ARCH=`uname -m`
KCONFIG_ALLCONFIG=.config.allconfig
(echo TARGET_$ARCH=y
echo '# UCLIBC_PREGENERATED_LOCALE_DATA is not set'
+ echo '# DOMULTI is not set'
echo '# UCLIBC_DOWNLOAD_PREGENERATED_LOCALE_DATA is not set'
) > $KCONFIG_ALLCONFIG
export KCONFIG_ALLCONFIG
@@ -24,3 +31,4 @@ do
fi
make distclean > /dev/null || true
done
+rm -f STOP