Makefile for build, Debian dependecies
authorDobrica Pavlinusic <dpavlin@rot13.org>
Sun, 16 Dec 2012 18:20:16 +0000 (19:20 +0100)
committerDobrica Pavlinusic <dpavlin@rot13.org>
Sun, 16 Dec 2012 18:20:16 +0000 (19:20 +0100)
rkflashtool/Makefile [new file with mode: 0644]
rkflashtool/README
rkflashtool/install-debian.sh [new file with mode: 0755]

diff --git a/rkflashtool/Makefile b/rkflashtool/Makefile
new file mode 100644 (file)
index 0000000..826f523
--- /dev/null
@@ -0,0 +1,7 @@
+all: rkflashtool
+
+rkflashtool: rkflashtool.c
+       gcc -o rkflashtool rkflashtool.c -lusb-1.0 -O2 -W -Wall -s
+
+param:
+       sudo ./rkflashtool r 0x0000 0x2000 > /tmp/parm
index 6595432..8ae7947 100644 (file)
@@ -1,7 +1,13 @@
 README
 ======
 
-This repository hosts tools for Arnova tablet development.
+This modified repository hosts tools for Arnova tablet development from
+
+https://github.com/justgr/arnova-tools
+
+to support rk3066 Android dongles.
+
+Use install-debian.sh to install dependecies and type make to build it
 
 rkflashtool
 ===========
diff --git a/rkflashtool/install-debian.sh b/rkflashtool/install-debian.sh
new file mode 100755 (executable)
index 0000000..eea552f
--- /dev/null
@@ -0,0 +1 @@
+sudo apt-get install libusb-1.0-0-dev