From 93d5f8d622a22289e2ec336e8a9d248699e0c9af Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 3 Nov 2008 18:57:18 +0000 Subject: [PATCH 1/4] Initialize branch F-9 for 0xFFFF --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..1c26f78 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-9 From 1c38cdceab0e1c393cea9ab0631ca293fd9da0b1 Mon Sep 17 00:00:00 2001 From: David Woodhouse Date: Tue, 4 Nov 2008 17:55:42 +0000 Subject: [PATCH 2/4] initial import --- .cvsignore | 1 + 0xFFFF.spec | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ import.log | 1 + sources | 1 + 4 files changed, 54 insertions(+) create mode 100644 0xFFFF.spec create mode 100644 import.log diff --git a/.cvsignore b/.cvsignore index e69de29..05c8477 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +0xFFFF-0.3.9.tar.gz diff --git a/0xFFFF.spec b/0xFFFF.spec new file mode 100644 index 0000000..7e4260c --- /dev/null +++ b/0xFFFF.spec @@ -0,0 +1,51 @@ +Name: 0xFFFF +Version: 0.3.9 +Release: 2%{?dist} +Summary: The Open Free Fiasco Firmware Flasher + +Group: Applications/System +License: GPLv3 +URL: http://www.nopcode.org/0xFFFF/ +Source0: http://www.nopcode.org/0xFFFF/get/%{name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: libusb-devel + +%description +The 'Open Free Fiasco Firmware Flasher' aka 0xFFFF utility implements +a free (GPL3) userspace handler for the NOLO bootloader and related +utilities for the Nokia Internet Tablets like flashing setting device +options, packing/unpacking FIASCO firmware format and more. + +%prep +%setup -q +sed -i /^LDFLAGS/d config.mk +sed -i "s/^CFLAGS+=.*/CFLAGS+=$RPM_OPT_FLAGS/" config.mk + +%build +make -C src %{?_smp_mflags} +make -C logotool CFLAGS="$RPM_OPT_FLAGS" + +%install +rm -rf $RPM_BUILD_ROOT +mkdir -p $RPM_BUILD_ROOT%{_bindir} +install -m0755 src/0xFFFF $RPM_BUILD_ROOT%{_bindir}/0xFFFF +install -m0755 logotool/logotool $RPM_BUILD_ROOT%{_bindir}/logotool + + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files +%defattr(-,root,root,-) +%doc COPYING README INSTALL +%{_bindir}/* + +%changelog +* Sat Sep 13 2008 David Woodhouse 0.3.9-2 +- Use $RPM_OPT_FLAGS for logotool, don't attempt to build GUI + +* Sat Sep 13 2008 David Woodhouse 0.3.9-1 +- First package diff --git a/import.log b/import.log new file mode 100644 index 0000000..6fd125d --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +xFFFF-0_3_9-2_fc9:F-9:0xFFFF-0.3.9-2.fc9.src.rpm:1225821329 diff --git a/sources b/sources index e69de29..b267913 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +9966d488fd41fa1ca654f08086b06fee 0xFFFF-0.3.9.tar.gz From cf6194d44ea38937fedc7d865f72646b9006f814 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 23:49:50 +0000 Subject: [PATCH 3/4] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f929b84..2c559d0 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := 0xFFFF SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From f810056cb87cc1526b19f6fc379d1eae85e828ba Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 08:43:26 +0000 Subject: [PATCH 4/4] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - import.log | 1 - 4 files changed, 23 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch delete mode 100644 import.log diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 2c559d0..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: 0xFFFF -# $Id$ -NAME := 0xFFFF -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index 1c26f78..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-9 diff --git a/import.log b/import.log deleted file mode 100644 index 6fd125d..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -xFFFF-0_3_9-2_fc9:F-9:0xFFFF-0.3.9-2.fc9.src.rpm:1225821329