summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2006-07-01 14:34:31 +0000
committerRobert Schwebel <r.schwebel@pengutronix.de>2006-07-01 14:34:31 +0000
commitb54651d4580aa727f46472104d964b8d89b13ce0 (patch)
treeaaf87148c204f22363d4b3a044e6a8faead8ea92 /bin
parent5e97093bf22bce8cebf1b0a42b5914f3f2beaf9f (diff)
downloadptxdist-b54651d4580aa727f46472104d964b8d89b13ce0.tar.gz
ptxdist-b54651d4580aa727f46472104d964b8d89b13ce0.tar.xz
* merged changes from 0.10.4-branch (5859:5907) back into trunk
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-0.10-trunk@5909 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ptxdist19
1 files changed, 17 insertions, 2 deletions
diff --git a/bin/ptxdist b/bin/ptxdist
index 93c6fec00..499d0c450 100755
--- a/bin/ptxdist
+++ b/bin/ptxdist
@@ -616,7 +616,7 @@ while [ "$#" != "0" ]; do
autobuild) echo
echo "${PROMPT}running autobuild"
echo
- AUTOBUILDS=$(find . -name "autobuild")
+ AUTOBUILDS=$(find . -name "autobuild*")
AUTOBUILD_TOPDIR=$(pwd)
exec 5>COMPILETEST
echo >&5
@@ -650,7 +650,9 @@ while [ "$#" != "0" ]; do
echo
exit 0
;;
- boardsetup) shift; boardsetup
+ boardsetup) shift
+ check_ptxconfig
+ boardsetup
;;
compile) shift
if [ $# -eq 0 ]; then
@@ -759,6 +761,7 @@ while [ "$#" != "0" ]; do
echo "${PROMPT} commands:"
echo
echo "${PROMPT} configversionbump"
+ echo "${PROMPT} alloldconfig"
echo
exit 0
fi
@@ -774,6 +777,18 @@ while [ "$#" != "0" ]; do
$i
done
;;
+ alloldconfig)
+ echo
+ echo "${PROMPT} alloldconfig:"
+ echo
+ for i in $(find . -name "autobuild" | grep -v .svn); do
+ i_dir=$(dirname $i)
+ echo i=$i i_dir=$i_dir
+ pushd $i_dir
+ ptxdist oldconfig
+ popd
+ done
+ ;;
*)
echo
echo "${PROMPT} error: unknown command: $1"