From 9c6190d4e1064406d5d7d04efb17136c0ec223dc Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Sun, 16 Dec 2012 19:20:16 +0100 Subject: [PATCH] Makefile for build, Debian dependecies --- rkflashtool/Makefile | 7 +++++++ rkflashtool/README | 8 +++++++- rkflashtool/install-debian.sh | 1 + 3 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 rkflashtool/Makefile create mode 100755 rkflashtool/install-debian.sh diff --git a/rkflashtool/Makefile b/rkflashtool/Makefile new file mode 100644 index 0000000..826f523 --- /dev/null +++ b/rkflashtool/Makefile @@ -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 diff --git a/rkflashtool/README b/rkflashtool/README index 6595432..8ae7947 100644 --- a/rkflashtool/README +++ b/rkflashtool/README @@ -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 index 0000000..eea552f --- /dev/null +++ b/rkflashtool/install-debian.sh @@ -0,0 +1 @@ +sudo apt-get install libusb-1.0-0-dev -- 2.20.1