From d9af27550de3fc50f471a0e011126b8d607f9ef2 Mon Sep 17 00:00:00 2001 From: Martino Facchin Date: Thu, 15 Feb 2018 15:30:13 +0100 Subject: [PATCH 1/3] Downgrade eudev --- libhidapi.build.bash | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libhidapi.build.bash b/libhidapi.build.bash index 4aae4bf..c29bd24 100755 --- a/libhidapi.build.bash +++ b/libhidapi.build.bash @@ -26,9 +26,9 @@ fi if [[ $TARGET_OS == "GNU/Linux" ]] ; then -wget https://github.com/gentoo/eudev/archive/v3.2.5.tar.gz -tar xvf v3.2.5.tar.gz -cd eudev-3.2.5 +wget https://github.com/gentoo/eudev/archive/v3.1.3.tar.gz +tar xvf v3.1.3.tar.gz +cd eudev-3.1.3 ./autogen.sh ./configure --enable-static --disable-gudev --disable-introspection --disable-shared --disable-blkid --disable-kmod --disable-manpages --prefix=$PREFIX $CONFARGS make clean From 4e2010f236fedac5dc7d2a8dedecede7854680b0 Mon Sep 17 00:00:00 2001 From: Martino Facchin Date: Tue, 17 Apr 2018 10:30:38 +0200 Subject: [PATCH 2/3] Update to arduino14 --- package-avrdude.bash | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/package-avrdude.bash b/package-avrdude.bash index def63cd..762262d 100755 --- a/package-avrdude.bash +++ b/package-avrdude.bash @@ -15,7 +15,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -OUTPUT_VERSION=6.3.0-arduino13 +OUTPUT_VERSION=6.3.0-arduino14 export OS=`uname -o || uname` export TARGET_OS=$OS @@ -28,6 +28,13 @@ if [[ $CROSS_COMPILE == "mingw" ]] ; then export TARGET_OS="Windows" OUTPUT_TAG=i686-w64-mingw32 +elif [[ $CROSS_COMPILE == "arm64-cross" ]] ; then + export CC="aarch64-linux-gnu-gcc" + export CXX="aarch64-linux-gnu-g++" + export CROSS_COMPILE_HOST="aarch64-linux-gnu" + export TARGET_OS="GNU/Linux" + OUTPUT_TAG=aarch64-linux-gnu + elif [[ $CROSS_COMPILE == "arm-cross" ]] ; then export CC="arm-linux-gnueabihf-gcc" export CXX="arm-linux-gnueabihf-g++" From 5fbb83bbabbc6d1e43ca2dea37113c956a8e7263 Mon Sep 17 00:00:00 2001 From: Martino Facchin Date: Tue, 17 Apr 2018 10:32:21 +0200 Subject: [PATCH 3/3] Use master branch of avrdude git repo --- avrdude-6.3.build.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/avrdude-6.3.build.bash b/avrdude-6.3.build.bash index fed17dd..6eb69c9 100755 --- a/avrdude-6.3.build.bash +++ b/avrdude-6.3.build.bash @@ -20,7 +20,7 @@ cd objdir PREFIX=`pwd` cd - -git clone https://github.com/facchinm/avrdude.git avrdude-6.3 --depth 1 -b staging +git clone https://github.com/facchinm/avrdude.git avrdude-6.3 --depth 1 cd avrdude-6.3