forked from CunningLogic/UberSploits
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for Mavic Pro RC on latest firmware.
Updated libraries.
- Loading branch information
Showing
9 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/sh | ||
JAVAC=`which javac` | ||
if [ $JAVAC ]; then | ||
echo Building classes ... | ||
$JAVAC -cp libs/commons-net-3.8.0.jar:libs/jSerialComm-2.7.0.jar:src src/com/cunninglogic/ubersploits/CRC.java | ||
RESULT1=$? | ||
$JAVAC -cp libs/commons-net-3.8.0.jar:libs/jSerialComm-2.7.0.jar:src src/com/cunninglogic/ubersploits/Main.java | ||
RESULT2=$? | ||
if [ $RESULT1 = 0 ] && [ $RESULT2 = 0 ]; then | ||
echo OK | ||
fi | ||
else | ||
echo Error: No javac. Please install javac/jdk. | ||
fi |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/sh | ||
JAVA=`which java` | ||
if [ $JAVA ]; then | ||
$JAVA -cp libs/commons-net-3.8.0.jar:libs/jSerialComm-2.7.0.jar:src com/cunninglogic/ubersploits/Main | ||
else | ||
echo Error: No java. Please install java/jdk. | ||
fi |
Binary file not shown.
Binary file not shown.
Binary file not shown.