Root/usrp/doall

Source at commit 464ab40e3932a83b30626b99c4b658b4916fc24c created 9 years 11 days ago.
By Stefan Schmidt, Revert "atusb/fw/usb/: enable MCU reset on USB bus reset after config selection"
1#!/bin/bash -x
2
3usage()
4{
5    echo "usage: $0 [evscan-opt ... --] [plscan-opt ...] 'file-glob'" 1>&2
6    exit 1
7}
8
9
10[ "$1" ] || usage
11evscan_opts=
12opts=
13while [ "$2" ]; do
14    if [ "$1" = -- ]; then
15    evscan_opts=$opts
16    opts=
17    else
18    opts="$opts $1"
19    fi
20    shift
21done
22a=
23for n in $1; do
24    a="$a `basename $n`=<(./evscan $evscan_opts $n)"
25done
26eval ./plscan $opts $a
27

Archive Download this file



interactive