Skip to content

Commit

Permalink
Hopefully fixed wget issues
Browse files Browse the repository at this point in the history
  • Loading branch information
makestuff committed Dec 9, 2010
1 parent 5f9044d commit 0f9a211
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Makefile.common
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
../../include:
wget http://github.com/makestuff/include/tarball/master
tar xvzf makestuff-include-*.tar.gz
rm makestuff-include-*.tar.gz
wget -O include.tgz --no-check-certificate http://github.com/makestuff/include/tarball/master
tar xvzf include.tgz
rm include.tgz
mv makestuff-include* ../../include

../../libs/dump:
wget http://github.com/makestuff/dump/tarball/master
tar xvzf makestuff-dump-*.tar.gz
rm makestuff-dump-*.tar.gz
wget -O dump.tgz --no-check-certificate http://github.com/makestuff/dump/tarball/master
tar xvzf dump.tgz
rm dump.tgz
mkdir -p ../../libs
mv makestuff-dump* ../../libs/dump
16 changes: 16 additions & 0 deletions parse.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
#!/usr/bin/python
#
# Copyright (C) 2010 Chris McClelland
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#

# Parse a dump file from SysNucleus USBTrace, and extract information about
# control and bulk transfers, filtering out all the other USB bus operation
Expand Down

0 comments on commit 0f9a211

Please sign in to comment.