From dc9bb70fc09523af60af60318356e8c9fcdceafa Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Fri, 25 Oct 2024 14:35:45 +0300 Subject: [PATCH] import fcoe-utils-1.0.34-10.gitb233050.el10 --- .fcoe-utils.metadata | 1 + .gitignore | 1 + ...intf-string-precision-modifiers-in-f.patch | 95 ++++ ...2-Don-t-attempt-to-memcpy-zero-bytes.patch | 34 ++ SPECS/fcoe-utils.spec | 408 ++++++++++++++++++ 5 files changed, 539 insertions(+) create mode 100644 .fcoe-utils.metadata create mode 100644 .gitignore create mode 100644 SOURCES/0001-fcoemon-add-snprintf-string-precision-modifiers-in-f.patch create mode 100644 SOURCES/0002-Don-t-attempt-to-memcpy-zero-bytes.patch create mode 100644 SPECS/fcoe-utils.spec diff --git a/.fcoe-utils.metadata b/.fcoe-utils.metadata new file mode 100644 index 0000000..eba59d0 --- /dev/null +++ b/.fcoe-utils.metadata @@ -0,0 +1 @@ +4310acd864ca374d849f63e6cd982c9a1e6f9484 SOURCES/fcoe-utils-1.0.34-b233050.tar.gz diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..674a920 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/fcoe-utils-1.0.34-b233050.tar.gz diff --git a/SOURCES/0001-fcoemon-add-snprintf-string-precision-modifiers-in-f.patch b/SOURCES/0001-fcoemon-add-snprintf-string-precision-modifiers-in-f.patch new file mode 100644 index 0000000..1c9e3b3 --- /dev/null +++ b/SOURCES/0001-fcoemon-add-snprintf-string-precision-modifiers-in-f.patch @@ -0,0 +1,95 @@ +From c54147b3ada8c37a536a4df90e8707538021ed20 Mon Sep 17 00:00:00 2001 +From: Chris Leech +Date: Fri, 4 Feb 2022 09:21:47 -0800 +Subject: [PATCH 1/1] fcoemon: add snprintf string precision modifiers in + fcm_netif_advance + +GCC 12 is warning of potential snprintf truncations + +fcm_netif.ifname is an IFNAMSIZ array, but formating with %s doesn't +understand that, so add a precision modifier every time we print it to +limit the output. This allows the compiler to verify that the output +buffer is of sufficient length to never truncate. + +Signed-off-by: Chris Leech +--- + fcoemon.c | 28 ++++++++++++++-------------- + 1 file changed, 14 insertions(+), 14 deletions(-) + +diff --git a/fcoemon.c b/fcoemon.c +index 8c08bc5a032..b85f276c7df 100644 +--- a/fcoemon.c ++++ b/fcoemon.c +@@ -3135,55 +3135,55 @@ static void fcm_netif_advance(struct fcm_netif *ff) + case FCD_ERROR: + break; + case FCD_GET_DCB_STATE: +- snprintf(buf, sizeof(buf), "%c%x%2.2x%2.2x%2.2x%2.2x%s", ++ snprintf(buf, sizeof(buf), "%c%x%2.2x%2.2x%2.2x%2.2x%.*s", + DCB_CMD, CLIF_RSP_VERSION, + CMD_GET_CONFIG, FEATURE_DCB, 0, +- (u_int) strlen(ff->ifname), ff->ifname); ++ (u_int) strlen(ff->ifname), IFNAMSIZ, ff->ifname); + ff->response_pending = fcm_dcbd_request(buf); + break; + case FCD_SEND_CONF: + snprintf(params, sizeof(params), "%x1%x02", + ff->ff_app_info.enable, + ff->ff_app_info.willing); +- snprintf(buf, sizeof(buf), "%c%x%2.2x%2.2x%2.2x%2.2x%s%s", ++ snprintf(buf, sizeof(buf), "%c%x%2.2x%2.2x%2.2x%2.2x%.*s%s", + DCB_CMD, CLIF_RSP_VERSION, + CMD_SET_CONFIG, FEATURE_APP, APP_FCOE_STYPE, +- (u_int) strlen(ff->ifname), ff->ifname, params); ++ (u_int) strlen(ff->ifname), IFNAMSIZ, ff->ifname, params); + ff->response_pending = fcm_dcbd_request(buf); + break; + case FCD_GET_PFC_CONFIG: +- snprintf(buf, sizeof(buf), "%c%x%2.2x%2.2x%2.2x%2.2x%s%s", ++ snprintf(buf, sizeof(buf), "%c%x%2.2x%2.2x%2.2x%2.2x%.*s%s", + DCB_CMD, CLIF_RSP_VERSION, + CMD_GET_CONFIG, FEATURE_PFC, 0, +- (u_int) strlen(ff->ifname), ff->ifname, ""); ++ (u_int) strlen(ff->ifname), IFNAMSIZ, ff->ifname, ""); + ff->response_pending = fcm_dcbd_request(buf); + break; + case FCD_GET_APP_CONFIG: +- snprintf(buf, sizeof(buf), "%c%x%2.2x%2.2x%2.2x%2.2x%s%s", ++ snprintf(buf, sizeof(buf), "%c%x%2.2x%2.2x%2.2x%2.2x%.*s%s", + DCB_CMD, CLIF_RSP_VERSION, + CMD_GET_CONFIG, FEATURE_APP, APP_FCOE_STYPE, +- (u_int) strlen(ff->ifname), ff->ifname, ""); ++ (u_int) strlen(ff->ifname), IFNAMSIZ, ff->ifname, ""); + ff->response_pending = fcm_dcbd_request(buf); + break; + case FCD_GET_PFC_OPER: +- snprintf(buf, sizeof(buf), "%c%x%2.2x%2.2x%2.2x%2.2x%s%s", ++ snprintf(buf, sizeof(buf), "%c%x%2.2x%2.2x%2.2x%2.2x%.*s%s", + DCB_CMD, CLIF_RSP_VERSION, + CMD_GET_OPER, FEATURE_PFC, 0, +- (u_int) strlen(ff->ifname), ff->ifname, ""); ++ (u_int) strlen(ff->ifname), IFNAMSIZ, ff->ifname, ""); + ff->response_pending = fcm_dcbd_request(buf); + break; + case FCD_GET_APP_OPER: +- snprintf(buf, sizeof(buf), "%c%x%2.2x%2.2x%2.2x%2.2x%s%s", ++ snprintf(buf, sizeof(buf), "%c%x%2.2x%2.2x%2.2x%2.2x%.*s%s", + DCB_CMD, CLIF_RSP_VERSION, + CMD_GET_OPER, FEATURE_APP, APP_FCOE_STYPE, +- (u_int) strlen(ff->ifname), ff->ifname, ""); ++ (u_int) strlen(ff->ifname), IFNAMSIZ, ff->ifname, ""); + ff->response_pending = fcm_dcbd_request(buf); + break; + case FCD_GET_PEER: +- snprintf(buf, sizeof(buf), "%c%x%2.2x%2.2x%2.2x%2.2x%s%s", ++ snprintf(buf, sizeof(buf), "%c%x%2.2x%2.2x%2.2x%2.2x%.*s%s", + DCB_CMD, CLIF_RSP_VERSION, + CMD_GET_PEER, FEATURE_APP, APP_FCOE_STYPE, +- (u_int) strlen(ff->ifname), ff->ifname, ""); ++ (u_int) strlen(ff->ifname), IFNAMSIZ, ff->ifname, ""); + ff->response_pending = fcm_dcbd_request(buf); + break; + case FCD_DONE: +-- +2.34.1 + diff --git a/SOURCES/0002-Don-t-attempt-to-memcpy-zero-bytes.patch b/SOURCES/0002-Don-t-attempt-to-memcpy-zero-bytes.patch new file mode 100644 index 0000000..fa45a14 --- /dev/null +++ b/SOURCES/0002-Don-t-attempt-to-memcpy-zero-bytes.patch @@ -0,0 +1,34 @@ +From 78a5e2e17bba531b41101ca036a5bb1a0d5caca5 Mon Sep 17 00:00:00 2001 +From: Stephen Gallagher +Date: Tue, 6 Feb 2024 21:15:33 -0500 +Subject: [PATCH 2/2] Don't attempt to memcpy() zero bytes + +add_rtattr_nest() is called in several places in the code. As part of +its operation, it calls add_rtattr(nm type, NULL, 0) which results in +NULL and 0 being passed to memcpy(). This fails with -Werror=nonnull +on recent GCC. + +Signed-off-by: Stephen Gallagher +--- + lib/rtnetlink.c | 5 ++++- + 1 file changed, 4 insertions(+), 1 deletion(-) + +diff --git a/lib/rtnetlink.c b/lib/rtnetlink.c +index 3b8413718997568a20752791807b19c1f299955e..faa60d7c12f68af175d223b6c3c3257a982e4f37 100644 +--- a/lib/rtnetlink.c ++++ b/lib/rtnetlink.c +@@ -172,7 +172,10 @@ static void add_rtattr(struct nlmsghdr *n, int type, const void *data, int alen) + + rta->rta_type = type; + rta->rta_len = len; +- memcpy(RTA_DATA(rta), data, alen); ++ if (alen > 0) ++ { ++ memcpy(RTA_DATA(rta), data, alen); ++ } + n->nlmsg_len = NLMSG_ALIGN(n->nlmsg_len) + RTA_ALIGN(len); + } + +-- +2.43.0 + diff --git a/SPECS/fcoe-utils.spec b/SPECS/fcoe-utils.spec new file mode 100644 index 0000000..4e7d571 --- /dev/null +++ b/SPECS/fcoe-utils.spec @@ -0,0 +1,408 @@ +# https://fedoraproject.org/wiki/Packaging:Guidelines#Compiler_flags +%global _hardened_build 1 + +# v1.0.34-2 +%global commit0 b233050792cc5fa54ba1da257706ca2b5ef3c987 +%global shortcommit0 %(c=%{commit0}; echo ${c:0:7}) + +Name: fcoe-utils +Version: 1.0.34 +Release: 10.git%{shortcommit0}%{?dist} +Summary: Fibre Channel over Ethernet utilities +License: GPL-2.0-only +URL: http://www.open-fcoe.org +Source0: https://github.com/openSUSE/fcoe-utils/archive/%{commit0}.tar.gz#/%{name}-%{version}-%{shortcommit0}.tar.gz +ExcludeArch: ppc s390 +BuildRequires: autoconf +BuildRequires: automake +BuildRequires: libtool +BuildRequires: libpciaccess-devel +BuildRequires: lldpad-devel >= 0.9.43 +BuildRequires: systemd +BuildRequires: make +Requires: lldpad >= 0.9.43 +Requires: iproute +Requires: device-mapper-multipath +Requires(post): systemd +Requires(preun): systemd +Requires(postun): systemd + +Patch1: 0001-fcoemon-add-snprintf-string-precision-modifiers-in-f.patch + +# https://github.com/openSUSE/fcoe-utils/pull/25 +Patch2: 0002-Don-t-attempt-to-memcpy-zero-bytes.patch + +# https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval +ExcludeArch: %{ix86} + +%description +Fibre Channel over Ethernet utilities +fcoeadm - command line tool for configuring FCoE interfaces +fcoemon - service to configure DCB Ethernet QOS filters, works with lldpad + +%prep +%autosetup -p1 -n fcoe-utils-%{commit0} +%if 0%{?rhel} >= 8 +# RHEL dropped support for software fcoe (fcoe.ko) +sed -i 's/^\(SUPPORTED_DRIVERS\)=".*"$/\1="bnx2fc qedf"/' etc/config +# make the defaults sane for supported offload drivers +sed -i 's/^\(DCB_REQUIRED\)=".*"$/\1="no"/' etc/cfg-ethx +%endif + +%build +./bootstrap.sh +%configure --with-systemdsystemunitdir=%{_unitdir} +make %{?_smp_mflags} + +%install +make install DESTDIR=%{buildroot} +rm -rf %{buildroot}/etc/init.d +mkdir -p %{buildroot}%{_libexecdir}/fcoe +for file in \ + contrib/*.sh \ + debug/*sh + do install -m 755 ${file} %{buildroot}%{_libexecdir}/fcoe/ +done + +%post +%systemd_post fcoe.service fcoemon.socket + +%preun +%systemd_preun fcoe.service fcoemon.socket + +%postun +%systemd_postun_with_restart fcoe.service fcoemon.socket + +%files +%doc README COPYING QUICKSTART +%{_sbindir}/* +%{_mandir}/man8/* +%{_unitdir}/fcoe.service +%{_unitdir}/fcoemon.socket +%{_sysconfdir}/fcoe/ +%config(noreplace) %{_sysconfdir}/fcoe/cfg-ethx +%config(noreplace) %{_sysconfdir}/fcoe/config +%{_datadir}/bash-completion/completions/* +%{_libexecdir}/fcoe/ + +%changelog +* Mon Jun 24 2024 Troy Dawson - 1.0.34-10.gitb233050 +- Bump release for June 2024 mass rebuild + +* Tue Feb 06 2024 Stephen Gallagher - 1.0.34-9.gitb233050 +- FTBFS: Don't attempt to memcpy() zero bytes + +* Wed Jan 24 2024 Fedora Release Engineering - 1.0.34-8.gitb233050 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Fri Jan 19 2024 Fedora Release Engineering - 1.0.34-7.gitb233050 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Mon Oct 30 2023 Chris Leech - 1.0.34-6.gitb233050 +- use SPDX in license tag + +* Wed Jul 19 2023 Fedora Release Engineering - 1.0.34-5.gitb233050 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Thu Jan 19 2023 Fedora Release Engineering - 1.0.34-4.gitb233050 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Thu Jul 21 2022 Fedora Release Engineering - 1.0.34-3.gitb233050 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Fri Feb 04 2022 Chris Leech - 1.0.34-2.gitb233050 +- FTBFS: more gcc 12 snprintf truncation issues on 32-bit arch + +* Fri Jan 28 2022 Chris Leech - 1.0.34-1.gitb233050 +- FTBFS: update with gcc 12 fix from upstream + +* Thu Jan 20 2022 Fedora Release Engineering - 1.0.34-0.git14ef0d2.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Wed Jul 21 2021 Fedora Release Engineering - 1.0.34-0.git14ef0d2.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Wed Apr 14 2021 Chris Leech - 1.0.34-0.git14ef0d2 +- upstream 1.0.34 +- drop gcc11 warning disabling patch, warnings have been addressed upstream + +* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek - 1.0.33-6.git848bcc6 +- Rebuilt for updated systemd-rpm-macros + See https://pagure.io/fesco/issue/2583. + +* Tue Feb 02 2021 Chris Leech - 1.0.33-5.git848bcc6 +- add in RHEL conditional for removed fcoe.ko support + +* Mon Feb 01 2021 Chris Leech - 1.0.33-4.git848bcc6 +- drop any differences with upstream service and config files + +* Tue Jan 26 2021 Fedora Release Engineering - 1.0.33-3.gitfe376de +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Sat Nov 14 2020 Jeff Law - 1.0.33-2.gitfe376de +- Disable fatal diagnostic from gcc-11 for fping + +* Wed Oct 28 2020 Jeff Law - 1.0.33-1.gitfe376de +- Disable fatal diagnostics from gcc-11 for fipvlan + +* Mon Sep 21 2020 Chris Leech - 1.0.33-0.gitfe376de +- FTBFS: fix gcc 10.2 truncation and overflow errors +- rebase to 1.0.33+ from new upstream location + +* Sat Aug 01 2020 Fedora Release Engineering - 1.0.32-12.git9834b34 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Mon Jul 27 2020 Fedora Release Engineering - 1.0.32-11.git9834b34 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Tue Jan 28 2020 Fedora Release Engineering - 1.0.32-10.git9834b34 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Jul 25 2019 Fedora Release Engineering - 1.0.32-9.git9834b34 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Tue Jun 04 2019 Chris Leech - 1.0.32-8.git9834b34 +- fix more string function issues breaking the build with newer gcc + +* Thu Jan 31 2019 Fedora Release Engineering - 1.0.32-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Fri Jul 13 2018 Fedora Release Engineering - 1.0.32-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Fri Mar 16 2018 Chris Leech - 1.0.32-5 +- fix some newer gcc 8 truncation format errors + +* Wed Feb 07 2018 Fedora Release Engineering - 1.0.32-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Wed Aug 02 2017 Fedora Release Engineering - 1.0.32-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 1.0.32-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Thu Feb 09 2017 Chris Leech - 1.0.32-1 +- update to 1.0.32 + +* Wed Feb 03 2016 Fedora Release Engineering - 1.0.30-5.git91c0c8c +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Mon Feb 01 2016 Chris Leech - 1.0.30-4.git91c0c8c +- 1303433 package should not attempt to own /etc/bash_completion.d + +* Mon Jul 06 2015 Chris Leech - 1.0.30-2 +- fix display when libhbalinux includes hosts without a serial number + +* Tue Jun 16 2015 Chris Leech - 1.0.30-1 +- rebase to upstream v1.0.30-2-g91c0c8c + +* Fri Oct 24 2014 Chris Leech - 1.0.29-7 +- enable vn2vn mode in fcoeadm + +* Tue Oct 07 2014 Chris Leech - 1.0.29-6 +- update to upstream v1.0.29-29-g9267509 + +* Sat Aug 16 2014 Fedora Release Engineering - 1.0.29-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 1.0.29-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Thu Nov 07 2013 Petr Šabata - 1.0.29-3 +- Fix configure.ac for automake 1.14 + +* Thu Nov 07 2013 Petr Šabata - 1.0.29-2 +- Don't install the old configuration file alongside the new one +- Add bnx2fc to the SUPPORTED_DRIVERS for consistency with previous configuration + +* Thu Aug 29 2013 Petr Šabata - 1.0.29-1 +- 1.0.29 bump + +* Wed Jul 31 2013 Petr Šabata - 1.0.28-4 +- Drop the initscript-specific config patch + +* Wed Jul 31 2013 Petr Šabata - 1.0.28-3 +- Require just 'systemd' instead of 'systemd-units' +- Patch the fcoemon manpage with a note for systemd users + +* Mon Jun 10 2013 Petr Šabata - 1.0.28-2 +- Enhance the format strings patch to fix ppc64 build failures too + +* Tue Jun 04 2013 Petr Šabata - 1.0.28-1 +- 1.0.28 bump + +* Wed Mar 06 2013 Petr Šabata - 1.0.27-1 +- 1.0.27 bump + +* Wed Feb 13 2013 Fedora Release Engineering - 1.0.25-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Wed Jan 09 2013 Petr Šabata - 1.0.25-2 +- Don't build for s390x since it's not supported by kernel either + +* Tue Nov 27 2012 Petr Šabata - 1.0.25-1 +- 1.0.25 (with latest fixes) +- Simplify the spec a bit +- Fix bogus dates in changelog + +* Thu Nov 01 2012 Petr Šabata - 1.0.25-1 + +* Tue Aug 28 2012 Petr Šabata - 1.0.24-2 +- Migrate to systemd scriptlets (#850104) + +* Wed Aug 15 2012 Petr Šabata - 1.0.24-1 +- 1.0.24 bump + +* Mon Jul 23 2012 Petr Šabata - 1.0.23-3 +- Don't exclude s390x. +- Add AM_PROG_AR to configure.ac. + +* Thu Jul 19 2012 Fedora Release Engineering - 1.0.23-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Mon Jun 25 2012 Petr Šabata - 1.0.23-1 +- Update to 1.0.23 +- Re-introduce ExcludeArch to be in line with EL. + +* Thu Feb 16 2012 Petr Šabata - 1.0.22-2 +- Fix the incorrect libhbalinux runtime dependency + +* Mon Jan 23 2012 Petr Šabata - 1.0.22-1 +- 1.0.22 bump +- Remove dcbd from Description + +* Fri Jan 13 2012 Fedora Release Engineering - 1.0.21-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Thu Nov 24 2011 Petr Šabata - 1.0.21-1 +- 1.0.21 bump + +* Mon Oct 31 2011 Petr Sabata - 1.0.20-5 +- Remove useless PIDFile from fcoe.service unit file + +* Thu Oct 06 2011 Petr Sabata - 1.0.20-4 +- Do not enable fcoemon by default (#701999) +- Silence systemctl output + +* Fri Sep 23 2011 Petr Sabata - 1.0.20-3 +- Enable hardened build + +* Mon Jul 18 2011 Petr Sabata - 1.0.20-2 +- Drop SysV support in favor of systemd (#714683) +- Remove ancient scriptlets (pre-1.0.7 era) +- Update quickstart.txt to reflect new changes + +* Thu Jul 07 2011 Petr Sabata - 1.0.20-1 +- 1.0.20 bump + +* Thu Jun 02 2011 Petr Sabata - 1.0.19-1 +- 1.0.19 bump + +* Tue May 3 2011 Petr Sabata - 1.0.18-2 +- fcoemon: Do not create a world and group writable PID file + +* Wed Apr 20 2011 Petr Sabata - 1.0.18-1 +- 1.0.18 bump with latest bugfixes +- Removing ExcludeArch completely; not related for Fedora +- Buildroot cleanup + +* Tue Apr 19 2011 Karsten Hopp 1.0.17-1.1 +- remove excludearch ppc, required by anaconda.ppc + +* Thu Feb 24 2011 Fabio M. Di Nitto - 1.0.17-1 +- Pull in new upstream release (required to build) +- Fix git clone URL in comments +- Drop fcoe-utils-1.0.7-init.patch, fcoe-utils-1.0.7-init-condrestart.patch + and fcoe-utils-1.0.8-init-LSB.patch that are now upstream +- Drop fcoe-utils-1.0.8-includes.patch and use a copy of kernel headers + for all architectures (rename fcoe-sparc.patch to fcoe-include-headers.patch) + Upstream added detection to avoid inclusion of kernel headers in the build + and it expects to find the userland headers installed. Those have not + yet propagated in Fedora. + Use temporary this workaround, since fcoe is a requiment for anaconda + and it failed to build for a while +- Drop BuildRequires on kernel-devel +- Add BuildRequires on autoconf (it is used and not installed by default + on all build chroots) + +* Wed Feb 23 2011 Dennis Gilmore - 1.0.14-5 +- patch in headers used from kernel-devel on 32 bit sparc + +* Tue Feb 08 2011 Fedora Release Engineering - 1.0.14-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Tue Nov 30 2010 Petr Sabata - 1.0.14-3 +- Removing dependency on vconfig, rhbz#658525 + +* Mon Jun 28 2010 Jan Zeleny - 1.0.14-2 +- added device-mapper-multipath to requires (#603242) +- added missing man pages for fcrls, fcnsq and fcping +- update of init script - added condrestart, try-restart + and force-reload options +- added vconfig to requires (#589608) + +* Mon May 24 2010 Jan Zeleny - 1.0.14-1 +- rebased to 1.0.14, see bug #593824 for complete changelog + +* Mon Apr 12 2010 Jan Zeleny - 1.0.13-1 +- rebased to v1.0.13, some bugfixes, new fcoe related scripts + +* Tue Mar 30 2010 Jan Zeleny - 1.0.12-2.20100323git +- some upstream updates +- better fipvlan support +- added fcoe_edd.sh script + +* Tue Mar 16 2010 Jan Zeleny - 1.0.12-1 +- rebased to version 1.0.12, improved functionality with lldpad + and dcbd +- removed /etc/fcoe/scripts/fcoeplumb + +* Thu Dec 10 2009 Jan Zeleny - 1.0.9-2.20091204git +- excluded s390 and ppc + +* Fri Dec 04 2009 Jan Zeleny - 1.0.9-1.20091204git +- rebase to latest version of fcoe-utils + +* Mon Sep 14 2009 Jan Zeleny - 1.0.8-3 +- update of init script to be LSB-compliant + +* Fri Jul 31 2009 Jan Zeleny - 1.0.8-2 +- patch for clean compilation without usage of upstream's ugly hack + +* Thu Jul 30 2009 Jan Zeleny - 1.0.8-1 +- rebase of fcoe-utils to 1.0.8, adjusted spec file + +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.7-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Tue Jun 9 2009 Jan Zeleny - 1.0.7-7 +- added quickstart file to doc (#500759) + +* Thu May 14 2009 Jan Zeleny - 1.0.7-6 +- renamed init script to fcoe, changed lock filename to fcoe + (#497604) +- init script modified to do condrestart properly +- some modifications in spec file to apply previous change + to older versions od init script during update +- fixed issue with accepting long options (#498551) + +* Mon May 4 2009 Jan Zeleny - 1.0.7-5 +- fixed SIGSEGV when fcoe module isn't loaded (#498550) + +* Mon Apr 27 2009 Jan Zeleny - 1.0.7-4 +- added libhbalinux to Requires (#497605) +- correction of spec file (_initddir -> _initrddir) + +* Wed Apr 8 2009 Jan Zeleny - 1.0.7-3 +- more minor corrections in spec file + +* Thu Apr 2 2009 Jan Zeleny - 1.0.7-2 +- minor corrections in spec file +- moved init script to correct location +- correction in the init script (chkconfig directives) + +* Mon Mar 2 2009 Chris Leech - 1.0.7-1 +- initial rpm build of fcoe tools +