delete develinstall

This commit is contained in:
George Hotz 2014-07-31 12:27:16 -07:00
parent 1c8c1bee88
commit 1c40472ef4
3 changed files with 25 additions and 21 deletions

17
README
View File

@ -5,7 +5,20 @@ QIRA is an IDA plugin to reverse using QEMU
If this is a release version, ./install.sh handles everything
./fetchlibs.sh will fetch the libraries for armhf
For a checkout of trunk, try ./develinstall.sh
You really just need ./install.sh and ./qemu_build.sh
== Keyboard Shortcuts in web/client/controls.js ==
j -- next invocation of instruction
k -- prev invocation of instruction
u -- next toucher of data
i -- prev toucher of data
z -- zoom out max on vtimeline
left -- -1 fork
right -- +1 fork
up -- -1 clnum
down -- +1 clnum
esc -- back

View File

@ -1,18 +0,0 @@
#!/bin/bash -e
./install.sh
./qemu_build.sh
# we need meteor
if [ ! -d ~/.meteor ]; then
echo "installing meteor"
sudo apt-get install curl
curl https://install.meteor.com | /bin/sh
fi
# and mrt
if [ ! -f ~/.meteor/tools/latest/bin/mrt ]; then
~/.meteor/tools/latest/bin/npm install -g meteorite
fi

View File

@ -26,5 +26,14 @@ sudo $PIP install html flask-socketio pillow pyelftools socketIO-client ./qiradb
echo "making symlink"
sudo ln -sf $(pwd)/qira /usr/local/bin/qira
sudo ln -sf $(pwd)/cda/cda /usr/local/bin/cda
if [ -f web/qira.html ]; then
echo "trunk detected"
if [ ! -d ~/.meteor ]; then
echo "installing meteor"
sudo apt-get install curl
curl https://install.meteor.com | /bin/sh
~/.meteor/tools/latest/bin/npm install -g meteorite
fi
fi