From e28d6c0768962292f90b22a5a542a7f08b8dd934 Mon Sep 17 00:00:00 2001 From: Benjamin Dobell Date: Tue, 6 May 2014 13:30:28 +1000 Subject: Fixed hard-coded libdir regression. --- heimdall/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'heimdall/Makefile.am') diff --git a/heimdall/Makefile.am b/heimdall/Makefile.am index 398a705..c793757 100644 --- a/heimdall/Makefile.am +++ b/heimdall/Makefile.am @@ -22,7 +22,7 @@ heimdall_LDADD = $(DEPS_LIBS) $(STATIC_LIBS) if LINUXTARGET -udevrulesdir = /lib/udev/rules.d +udevrulesdir = @libdir@/udev/rules.d udevrules_DATA = 60-heimdall.rules install-data-hook: -- cgit v1.1 From 082fb091f1a0cab9d00e82de54fee32b6a1c0c7b Mon Sep 17 00:00:00 2001 From: Benjamin Dobell Date: Sun, 1 Jun 2014 14:09:56 +1000 Subject: Fixed support for large files (up to 2^32 - 1 bytes) The Loke protocol supports 32-bit unsigned for the size of files being flashed. However, POSIX file commands only support 32-bit (signed). As such we now have platform specific support for larger files. --- heimdall/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'heimdall/Makefile.am') diff --git a/heimdall/Makefile.am b/heimdall/Makefile.am index c793757..cf171e0 100644 --- a/heimdall/Makefile.am +++ b/heimdall/Makefile.am @@ -1,8 +1,8 @@ AUTOMAKE_OPTIONS = subdir-objects ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} AM_CPPFLAGS = $(DEPS_CFLAGS) -std=c++0x -I../libpit/Source +AC_SYS_LARGEFILE STATIC_LIBS = ../libpit/libpit-1.4.a - bin_PROGRAMS = heimdall heimdall_SOURCES = source/Arguments.cpp \ source/BridgeManager.cpp \ -- cgit v1.1 From fbebc394f441e35e4777868627b4d2d1ec349a6b Mon Sep 17 00:00:00 2001 From: Benjamin Dobell Date: Sun, 1 Jun 2014 14:49:56 +1000 Subject: Autogen'd files for Heimdall 1.4.1 --- heimdall/Makefile.am | 1 - 1 file changed, 1 deletion(-) (limited to 'heimdall/Makefile.am') diff --git a/heimdall/Makefile.am b/heimdall/Makefile.am index cf171e0..e13860f 100644 --- a/heimdall/Makefile.am +++ b/heimdall/Makefile.am @@ -1,7 +1,6 @@ AUTOMAKE_OPTIONS = subdir-objects ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} AM_CPPFLAGS = $(DEPS_CFLAGS) -std=c++0x -I../libpit/Source -AC_SYS_LARGEFILE STATIC_LIBS = ../libpit/libpit-1.4.a bin_PROGRAMS = heimdall heimdall_SOURCES = source/Arguments.cpp \ -- cgit v1.1 From ee53613ec16af1334516402a9ba99a92934fe01c Mon Sep 17 00:00:00 2001 From: Benjamin Dobell Date: Mon, 17 Nov 2014 16:05:25 +1100 Subject: Continue to support autotools... for now --- heimdall/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'heimdall/Makefile.am') diff --git a/heimdall/Makefile.am b/heimdall/Makefile.am index e13860f..bc30c98 100644 --- a/heimdall/Makefile.am +++ b/heimdall/Makefile.am @@ -1,6 +1,6 @@ AUTOMAKE_OPTIONS = subdir-objects ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} -AM_CPPFLAGS = $(DEPS_CFLAGS) -std=c++0x -I../libpit/Source +AM_CPPFLAGS = $(DEPS_CFLAGS) -std=c++0x -I../libpit/Source -DAUTOCONF STATIC_LIBS = ../libpit/libpit-1.4.a bin_PROGRAMS = heimdall heimdall_SOURCES = source/Arguments.cpp \ -- cgit v1.1 From b22ae7b89f7993f632e10e18c116f293f314575f Mon Sep 17 00:00:00 2001 From: Benjamin Dobell Date: Thu, 19 Feb 2015 03:13:56 +1100 Subject: Removed autotools and VS files, and standardised source dir naming --- heimdall/Makefile.am | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 heimdall/Makefile.am (limited to 'heimdall/Makefile.am') diff --git a/heimdall/Makefile.am b/heimdall/Makefile.am deleted file mode 100644 index bc30c98..0000000 --- a/heimdall/Makefile.am +++ /dev/null @@ -1,40 +0,0 @@ -AUTOMAKE_OPTIONS = subdir-objects -ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} -AM_CPPFLAGS = $(DEPS_CFLAGS) -std=c++0x -I../libpit/Source -DAUTOCONF -STATIC_LIBS = ../libpit/libpit-1.4.a -bin_PROGRAMS = heimdall -heimdall_SOURCES = source/Arguments.cpp \ - source/BridgeManager.cpp \ - source/ClosePcScreenAction.cpp \ - source/DetectAction.cpp \ - source/DownloadPitAction.cpp \ - source/FlashAction.cpp \ - source/HelpAction.cpp \ - source/InfoAction.cpp \ - source/Interface.cpp \ - source/main.cpp \ - source/PrintPitAction.cpp \ - source/Utility.cpp \ - source/VersionAction.cpp - -heimdall_LDADD = $(DEPS_LIBS) $(STATIC_LIBS) - -if LINUXTARGET - -udevrulesdir = @libdir@/udev/rules.d -udevrules_DATA = 60-heimdall.rules - -install-data-hook: - @echo "" - @echo "IMPORTANT - You must reboot your machine or execute the following as root:" - -if UDEVADM - @echo "udevadm control --reload-rules" -else - @echo "service udev restart" -endif - @echo "" - -endif - -dist_noinst_SCRIPTS = autogen.sh -- cgit v1.1