|
|
7c853a |
%global _hardened_build 1
|
|
|
7c853a |
%if 0%{?fedora}
|
|
|
7c853a |
%bcond_without gui
|
|
|
7c853a |
%else
|
|
|
7c853a |
%bcond_with gui
|
|
|
7c853a |
%endif
|
|
|
7c853a |
|
|
|
7c853a |
Summary: WPA/WPA2/IEEE 802.1X Supplicant
|
|
|
7c853a |
Name: wpa_supplicant
|
|
|
7c853a |
Epoch: 1
|
|
|
7c853a |
Version: 2.10
|
|
|
00ee6d |
Release: 4%{?dist}
|
|
|
7c853a |
License: BSD
|
|
|
7c853a |
Source0: http://w1.fi/releases/%{name}-%{version}.tar.gz
|
|
|
7c853a |
Source1: wpa_supplicant.conf
|
|
|
7c853a |
Source2: wpa_supplicant.service
|
|
|
7c853a |
Source3: wpa_supplicant.sysconfig
|
|
|
7c853a |
Source4: wpa_supplicant.logrotate
|
|
|
7c853a |
|
|
|
7c853a |
# distro specific customization and not suitable for upstream,
|
|
|
7c853a |
# Fedora-specific updates to defconfig
|
|
|
7c853a |
Patch0: wpa_supplicant-config.patch
|
|
|
7c853a |
# works around busted drivers
|
|
|
7c853a |
Patch1: wpa_supplicant-assoc-timeout.patch
|
|
|
7c853a |
# ensures that debug output gets flushed immediately to help diagnose driver
|
|
|
7c853a |
# bugs, not suitable for upstream
|
|
|
7c853a |
Patch2: wpa_supplicant-flush-debug-output.patch
|
|
|
7c853a |
# quiet an annoying and frequent syslog message
|
|
|
7c853a |
Patch3: wpa_supplicant-quiet-scan-results-message.patch
|
|
|
7c853a |
# distro specific customization for Qt4 build tools, not suitable for upstream
|
|
|
7c853a |
Patch4: wpa_supplicant-gui-qt4.patch
|
|
|
00ee6d |
# backport fix for bz2063730
|
|
|
00ee6d |
Patch5: 0001-D-Bus-Add-wep_disabled-capability.patch
|
|
|
00ee6d |
# backport fix for bz2077973
|
|
|
00ee6d |
Patch6: 0001-EAP-peer-Workaround-for-servers-that-do-not-support-.patch
|
|
|
00ee6d |
Patch7: 0001-EAP-peer-status-notification-for-server-not-supporti.patch
|
|
|
7c853a |
|
|
|
7c853a |
URL: http://w1.fi/wpa_supplicant/
|
|
|
7c853a |
|
|
|
7c853a |
%if %with gui
|
|
|
7c853a |
BuildRequires: qt-devel >= 4.0
|
|
|
7c853a |
%endif
|
|
|
7c853a |
BuildRequires: openssl-devel
|
|
|
7c853a |
BuildRequires: readline-devel
|
|
|
7c853a |
BuildRequires: dbus-devel
|
|
|
7c853a |
BuildRequires: libnl3-devel
|
|
|
7c853a |
BuildRequires: systemd-units
|
|
|
7c853a |
BuildRequires: docbook-utils
|
|
|
7c853a |
BuildRequires: gcc
|
|
|
7c853a |
Requires(post): systemd-sysv
|
|
|
7c853a |
Requires(post): systemd
|
|
|
7c853a |
Requires(preun): systemd
|
|
|
7c853a |
Requires(postun): systemd
|
|
|
7c853a |
# libeap used to be built from wpa_supplicant with some fairly horrible
|
|
|
7c853a |
# hackery, solely for use by WiMAX. We dropped all WiMAX support around
|
|
|
7c853a |
# F21. This is here so people don't wind up with obsolete libeap packages
|
|
|
7c853a |
# lying around. If it's ever resurrected for any reason, this needs
|
|
|
7c853a |
# dropping.
|
|
|
7c853a |
Obsoletes: libeap < %{epoch}:%{version}-%{release}
|
|
|
7c853a |
Obsoletes: libeap-devel < %{epoch}:%{version}-%{release}
|
|
|
7c853a |
|
|
|
7c853a |
%description
|
|
|
7c853a |
wpa_supplicant is a WPA Supplicant for Linux, BSD and Windows with support
|
|
|
7c853a |
for WPA and WPA2 (IEEE 802.11i / RSN). Supplicant is the IEEE 802.1X/WPA
|
|
|
7c853a |
component that is used in the client stations. It implements key negotiation
|
|
|
7c853a |
with a WPA Authenticator and it controls the roaming and IEEE 802.11
|
|
|
7c853a |
authentication/association of the wlan driver.
|
|
|
7c853a |
|
|
|
7c853a |
|
|
|
7c853a |
%if %with gui
|
|
|
7c853a |
%package gui
|
|
|
7c853a |
Summary: Graphical User Interface for %{name}
|
|
|
7c853a |
|
|
|
7c853a |
%description gui
|
|
|
7c853a |
Graphical User Interface for wpa_supplicant written using QT
|
|
|
7c853a |
%endif
|
|
|
7c853a |
|
|
|
7c853a |
|
|
|
7c853a |
%prep
|
|
|
7c853a |
%autosetup -p1 -n %{name}-%{version}
|
|
|
7c853a |
|
|
|
7c853a |
|
|
|
7c853a |
%build
|
|
|
7c853a |
pushd wpa_supplicant
|
|
|
7c853a |
cp defconfig .config
|
|
|
7c853a |
export CFLAGS="${CFLAGS:-%optflags} -fPIE -DPIE"
|
|
|
7c853a |
export CXXFLAGS="${CXXFLAGS:-%optflags} -fPIE -DPIE"
|
|
|
7c853a |
export LDFLAGS="${LDFLAGS:-%optflags} -pie -Wl,-z,now"
|
|
|
7c853a |
# yes, BINDIR=_sbindir
|
|
|
7c853a |
export BINDIR="%{_sbindir}"
|
|
|
7c853a |
export LIBDIR="%{_libdir}"
|
|
|
7c853a |
make %{_smp_mflags} V=1
|
|
|
7c853a |
%if %with gui
|
|
|
7c853a |
make wpa_gui-qt4 %{_smp_mflags} V=1 QTDIR=%{_libdir}/qt4 \
|
|
|
7c853a |
QMAKE='%{qmake_qt4}' LRELEASE='%{_qt4_bindir}/lrelease'
|
|
|
7c853a |
%endif
|
|
|
7c853a |
make eapol_test V=1
|
|
|
7c853a |
make -C doc/docbook man V=1
|
|
|
7c853a |
%if !%with gui
|
|
|
7c853a |
rm doc/docbook/wpa_gui.8
|
|
|
7c853a |
%endif
|
|
|
7c853a |
popd
|
|
|
7c853a |
|
|
|
7c853a |
|
|
|
7c853a |
%install
|
|
|
7c853a |
# config
|
|
|
7c853a |
install -D -m 0600 %{SOURCE1} %{buildroot}/%{_sysconfdir}/wpa_supplicant/wpa_supplicant.conf
|
|
|
7c853a |
|
|
|
7c853a |
# init scripts
|
|
|
7c853a |
install -D -m 0644 %{SOURCE2} %{buildroot}/%{_unitdir}/wpa_supplicant.service
|
|
|
7c853a |
install -D -m 0644 %{SOURCE3} %{buildroot}/%{_sysconfdir}/sysconfig/wpa_supplicant
|
|
|
7c853a |
install -D -m 0644 %{SOURCE4} %{buildroot}/%{_sysconfdir}/logrotate.d/wpa_supplicant
|
|
|
7c853a |
|
|
|
7c853a |
# binary
|
|
|
7c853a |
install -d %{buildroot}/%{_sbindir}
|
|
|
7c853a |
install -m 0755 wpa_supplicant/wpa_passphrase %{buildroot}/%{_sbindir}
|
|
|
7c853a |
install -m 0755 wpa_supplicant/wpa_cli %{buildroot}/%{_sbindir}
|
|
|
7c853a |
install -m 0755 wpa_supplicant/wpa_supplicant %{buildroot}/%{_sbindir}
|
|
|
7c853a |
install -m 0755 wpa_supplicant/eapol_test %{buildroot}/%{_sbindir}
|
|
|
7c853a |
install -D -m 0644 wpa_supplicant/dbus/dbus-wpa_supplicant.conf \
|
|
|
7c853a |
%{buildroot}/%{_sysconfdir}/dbus-1/system.d/wpa_supplicant.conf
|
|
|
7c853a |
install -D -m 0644 wpa_supplicant/dbus/fi.w1.wpa_supplicant1.service \
|
|
|
7c853a |
%{buildroot}/%{_datadir}/dbus-1/system-services/fi.w1.wpa_supplicant1.service
|
|
|
7c853a |
|
|
|
7c853a |
%if %with gui
|
|
|
7c853a |
# gui
|
|
|
7c853a |
install -d %{buildroot}/%{_bindir}
|
|
|
7c853a |
install -m 0755 wpa_supplicant/wpa_gui-qt4/wpa_gui %{buildroot}/%{_bindir}
|
|
|
7c853a |
%endif
|
|
|
7c853a |
|
|
|
7c853a |
# man pages
|
|
|
7c853a |
install -d %{buildroot}%{_mandir}/man{5,8}
|
|
|
7c853a |
install -m 0644 wpa_supplicant/doc/docbook/*.8 %{buildroot}%{_mandir}/man8
|
|
|
7c853a |
install -m 0644 wpa_supplicant/doc/docbook/*.5 %{buildroot}%{_mandir}/man5
|
|
|
7c853a |
|
|
|
7c853a |
# some cleanup in docs and examples
|
|
|
7c853a |
rm -f wpa_supplicant/doc/.cvsignore
|
|
|
7c853a |
rm -rf wpa_supplicant/doc/docbook
|
|
|
7c853a |
chmod -R 0644 wpa_supplicant/examples/*.py
|
|
|
7c853a |
|
|
|
7c853a |
|
|
|
7c853a |
%post
|
|
|
7c853a |
%systemd_post wpa_supplicant.service
|
|
|
7c853a |
|
|
|
7c853a |
|
|
|
7c853a |
%preun
|
|
|
7c853a |
%systemd_preun wpa_supplicant.service
|
|
|
7c853a |
|
|
|
7c853a |
%triggerun -- wpa_supplicant < 0.7.3-10
|
|
|
7c853a |
# Save the current service runlevel info
|
|
|
7c853a |
# User must manually run systemd-sysv-convert --apply wpa_supplicant
|
|
|
7c853a |
# to migrate them to systemd targets
|
|
|
7c853a |
/usr/bin/systemd-sysv-convert --save wpa_supplicant >/dev/null 2>&1 ||:
|
|
|
7c853a |
|
|
|
7c853a |
# Run these because the SysV package being removed won't do them
|
|
|
7c853a |
/sbin/chkconfig --del wpa_supplicant >/dev/null 2>&1 || :
|
|
|
7c853a |
/bin/systemctl try-restart wpa_supplicant.service >/dev/null 2>&1 || :
|
|
|
7c853a |
|
|
|
7c853a |
|
|
|
7c853a |
%files
|
|
|
7c853a |
%config(noreplace) %{_sysconfdir}/wpa_supplicant/wpa_supplicant.conf
|
|
|
7c853a |
%config(noreplace) %{_sysconfdir}/sysconfig/wpa_supplicant
|
|
|
7c853a |
%dir %{_sysconfdir}/logrotate.d
|
|
|
7c853a |
%config(noreplace) %{_sysconfdir}/logrotate.d/wpa_supplicant
|
|
|
7c853a |
%{_unitdir}/wpa_supplicant.service
|
|
|
7c853a |
%{_sysconfdir}/dbus-1/system.d/wpa_supplicant.conf
|
|
|
7c853a |
%{_datadir}/dbus-1/system-services/fi.w1.wpa_supplicant1.service
|
|
|
7c853a |
%{_sbindir}/wpa_passphrase
|
|
|
7c853a |
%{_sbindir}/wpa_supplicant
|
|
|
7c853a |
%{_sbindir}/wpa_cli
|
|
|
7c853a |
%{_sbindir}/eapol_test
|
|
|
7c853a |
%dir %{_sysconfdir}/wpa_supplicant
|
|
|
7c853a |
%{_mandir}/man8/wpa_supplicant.8.gz
|
|
|
7c853a |
%{_mandir}/man8/wpa_priv.8.gz
|
|
|
7c853a |
%{_mandir}/man8/wpa_passphrase.8.gz
|
|
|
7c853a |
%{_mandir}/man8/wpa_cli.8.gz
|
|
|
7c853a |
%{_mandir}/man8/wpa_background.8.gz
|
|
|
7c853a |
%{_mandir}/man8/eapol_test.8.gz
|
|
|
7c853a |
%{_mandir}/man5/*
|
|
|
7c853a |
%doc README
|
|
|
7c853a |
%doc wpa_supplicant/ChangeLog
|
|
|
7c853a |
%doc wpa_supplicant/eap_testing.txt
|
|
|
7c853a |
%doc wpa_supplicant/todo.txt
|
|
|
7c853a |
%doc wpa_supplicant/wpa_supplicant.conf
|
|
|
7c853a |
%doc wpa_supplicant/examples
|
|
|
7c853a |
%license COPYING
|
|
|
7c853a |
|
|
|
7c853a |
|
|
|
7c853a |
%if %with gui
|
|
|
7c853a |
%files gui
|
|
|
7c853a |
%{_bindir}/wpa_gui
|
|
|
7c853a |
%{_mandir}/man8/wpa_gui.8.gz
|
|
|
7c853a |
%endif
|
|
|
7c853a |
|
|
|
7c853a |
|
|
|
7c853a |
%changelog
|
|
|
00ee6d |
* Fri May 13 2022 Davide Caratti <dcaratti@redhat.com> - 1:2.10-4
|
|
|
00ee6d |
- Explicitly allow/disallow unsafe legacy renegotiation on configuration base.
|
|
|
00ee6d |
Resolves: rhbz#2077973
|
|
|
00ee6d |
|
|
|
00ee6d |
* Fri Apr 22 2022 Davide Caratti <dcaratti@redhat.com> - 1:2.10-3
|
|
|
00ee6d |
- Expose 'wep_disabled' capability via D-Bus. Resolves: rhbz#2063730
|
|
|
00ee6d |
|
|
|
7c853a |
* Fri Feb 4 2022 Davide Caratti <dcaratti@redhat.com> - 1:2.10-2
|
|
|
7c853a |
- Disable CONFIG_IEEE80211R. Resolves: rhbz#2032539
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Jan 20 2022 Davide Caratti <dcaratti@redhat.com> - 1:2.10-1
|
|
|
7c853a |
- Update to version 2.10. Resolves: rhbz#2042540
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Nov 22 2021 Davide Caratti <dcaratti@redhat.com> - 1:2.9-17.20211112gitc8b94bc7b347
|
|
|
7c853a |
- Update to latest upstream tree to include support for H2E
|
|
|
7c853a |
Resolves: rhbz#2007334
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Aug 19 2021 Davide Caratti <dcaratti@redhat.com> - 1:2.9-17
|
|
|
7c853a |
- Fix NetworkManager-CI failures with OpenSSL 3.0
|
|
|
7c853a |
|
|
|
7c853a |
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1:2.9-16
|
|
|
7c853a |
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
7c853a |
Related: rhbz#1991688
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Jun 16 2021 Mohan Boddu <mboddu@redhat.com> - 1:2.9-15
|
|
|
7c853a |
- Rebuilt for RHEL 9 BETA for openssl 3.0
|
|
|
7c853a |
Related: rhbz#1971065
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Jun 3 2021 Davide Caratti <dcaratti@redhat.com> - 1:2.9-14
|
|
|
7c853a |
- Disable 'badfuncs' test in rpminspect. Related: rhbz#1967579
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1:2.9-13
|
|
|
7c853a |
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Mar 1 2021 Davide Caratti <dcaratti@redhat.com> - 1:2.9-12
|
|
|
7c853a |
- Fix a corner case in peer addition based on PD Request (CVE-2021-27803)
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Feb 4 2021 Davide Caratti <dcaratti@redhat.com> - 1:2.9-11
|
|
|
7c853a |
- Fix copying of secondary device types for P2P group client (CVE-2021-0326)
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.9-10
|
|
|
7c853a |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Jan 22 2021 Davide Caratti <dcaratti@redhat.com> - 1:2.9-9
|
|
|
7c853a |
- Expose OWE capability on D-Bus
|
|
|
7c853a |
- Allow changing interface bridge using D-Bus
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Dec 17 2020 Antonio Cardace <acardace@redhat.com> - 1:2.9-8
|
|
|
7c853a |
- Enable WPA-EAP-SUITE-B-192 cipher suite
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Dec 17 2020 Davide Caratti <dcaratti@redhat.com> - 1:2.9-7
|
|
|
7c853a |
- fix build on ELN target (rh #1902609)
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.9-6
|
|
|
7c853a |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Jun 15 2020 Benjamin Berg <bberg@redhat.com> - 1:2.9-5
|
|
|
7c853a |
- fix some issues with P2P operation
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Apr 23 2020 Davide Caratti <dcaratti@redhat.com> - 1:2.9-4
|
|
|
7c853a |
- Enable Tunneled Direct Link Setup (TDLS)
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.9-3
|
|
|
7c853a |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Oct 30 2019 Davide Caratti <dcaratti@redhat.com> - 1:2.9-2
|
|
|
7c853a |
- fix AP mode PMF disconnection protection bypass (CVE-2019-16275, rh #1767026)
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Aug 16 2019 Lubomir Rintel <lkundrak@v3.sk> - 1:2.9-1
|
|
|
7c853a |
- Update to version 2.9
|
|
|
7c853a |
|
|
|
7c853a |
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.8-3
|
|
|
7c853a |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
7c853a |
|
|
|
7c853a |
* Fri May 10 2019 Davide Caratti <dcaratti@redhat.com> - 1:2.8-2
|
|
|
7c853a |
- fix changelog for version 2.8-1
|
|
|
7c853a |
|
|
|
7c853a |
* Thu May 02 2019 Davide Caratti <dcaratti@redhat.com> - 1:2.8-1
|
|
|
7c853a |
- Update to 2.8 upstream release, to include latest fix for NULL
|
|
|
7c853a |
pointer dereference when EAP-PWD peer receives unexpected EAP
|
|
|
7c853a |
fragments (CVE-2019-11555, rh #1701759)
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Apr 12 2019 Davide Caratti <dcaratti@redhat.com> - 1:2.7-5
|
|
|
7c853a |
- fix SAE and EAP_PWD vulnerabilities:
|
|
|
7c853a |
CVE-2019-9494 (cache attack against SAE)
|
|
|
7c853a |
CVE-2019-9495 (cache attack against EAP-pwd)
|
|
|
7c853a |
CVE-2019-9496 (SAE confirm missing state validation in hostapd/AP)
|
|
|
7c853a |
CVE-2019-9497 (EAP-pwd server not checking for reflection attack)
|
|
|
7c853a |
CVE-2019-9498 (EAP-pwd server missing commit validation for scalar/element)
|
|
|
7c853a |
CVE-2019-9499 (EAP-pwd peer missing commit validation for scalar/element)
|
|
|
7c853a |
|
|
|
7c853a |
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.7-4
|
|
|
7c853a |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Jan 21 2019 Lubomir Rintel <lkundrak@v3.sk> - 1:2.7-3
|
|
|
7c853a |
- Enable OWE and DPP
|
|
|
7c853a |
- Expose SAE support on D-Bus
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Jan 21 2019 Lubomir Rintel <lkundrak@v3.sk> - 1:2.7-2
|
|
|
7c853a |
- Enable MESH & SAE
|
|
|
7c853a |
|
|
|
7c853a |
* Tue Dec 18 2018 Lubomir Rintel <lkundrak@v3.sk> - 1:2.7-1
|
|
|
7c853a |
- Update to 2.7 upstream release
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Aug 15 2018 Lubomir Rintel <lkundrak@v3.sk> - 1:2.6-20
|
|
|
7c853a |
- Expose availability of SHA384 and FT on D-Bus
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Aug 15 2018 Lubomir Rintel <lkundrak@v3.sk> - 1:2.6-19
|
|
|
7c853a |
- Drop the broken Pmf D-Bus property patch
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Aug 8 2018 Davide Caratti <dcaratti@redhat.com> - 1:2.6-18
|
|
|
7c853a |
- Ignore unauthenticated encrypted EAPOL-Key data (CVE-2018-14526)
|
|
|
7c853a |
|
|
|
7c853a |
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.6-17
|
|
|
7c853a |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Jun 22 2018 Davide Caratti <dcaratti@redhat.com> - 1:2.6-16
|
|
|
7c853a |
- Fix endoding of NL80211_ATTR_SMPS_MODE (rh#1570903)
|
|
|
7c853a |
|
|
|
7c853a |
* Fri May 11 2018 Davide Caratti <dcaratti@redhat.com> - 1:2.6-15
|
|
|
7c853a |
- Make PMF configurable using D-Bus (rh#1567474)
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.6-14
|
|
|
7c853a |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
7c853a |
|
|
|
7c853a |
* Tue Jan 16 2018 Davide Caratti <dcaratti@redhat.com> - 1:2.6-13
|
|
|
7c853a |
- Don't restart wpa_supplicant.service on package upgrade (rh#1535233)
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Nov 1 2017 Jiřà Klimeš <blueowl@centrum.cz> - 1:2.6-12
|
|
|
7c853a |
- Fix crash when using MACsec without loaded macsec.ko (rh #1497640)
|
|
|
7c853a |
- Enable Fast BSS Transition for station mode (rh #1372928)
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Oct 16 2017 Lubomir Rintel <lkundrak@v3.sk> - 1:2.6-11
|
|
|
7c853a |
- hostapd: Avoid key reinstallation in FT handshake (CVE-2017-13082)
|
|
|
7c853a |
- Fix PTK rekeying to generate a new ANonce
|
|
|
7c853a |
- Prevent reinstallation of an already in-use group key and extend
|
|
|
7c853a |
protection of GTK/IGTK reinstallation of WNM-Sleep Mode cases
|
|
|
7c853a |
(CVE-2017-13078, CVE-2017-13079, CVE-2017-13080, CVE-2017-13081,
|
|
|
7c853a |
CVE-2017-13087, CVE-2017-13088)
|
|
|
7c853a |
- Prevent installation of an all-zero TK
|
|
|
7c853a |
- TDLS: Reject TPK-TK reconfiguration
|
|
|
7c853a |
- WNM: Ignore WNM-Sleep Mode Response without pending request
|
|
|
7c853a |
- FT: Do not allow multiple Reassociation Response frames
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.6-10
|
|
|
7c853a |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.6-9
|
|
|
7c853a |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Jul 17 2017 Beniamino Galvani <bgalvani@redhat.com> - 1:2.6-8
|
|
|
7c853a |
- OpenSSL: use system ciphers by default (rh #1462262)
|
|
|
7c853a |
- OpenSSL: fix private key password callback (rh #1465138)
|
|
|
7c853a |
|
|
|
7c853a |
* Wed May 17 2017 Beniamino Galvani <bgalvani@redhat.com> - 1:2.6-7
|
|
|
7c853a |
- nl80211: Fix race condition in detecting MAC change (rh #1451834)
|
|
|
7c853a |
|
|
|
7c853a |
* Tue Apr 11 2017 Davide Caratti <dcaratti@redhat.com> - 1:2.6-6
|
|
|
7c853a |
- Fix use-after-free when macsec secure channels are deleted
|
|
|
7c853a |
- Fix segmentation fault in case macsec module is not loaded (rh#1428937)
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Mar 13 2017 Thomas Haller <thaller@redhat.com> - 1:2.6-5
|
|
|
7c853a |
- Enable IEEE 802.11w (management frame protection, PMF) (rh#909499)
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Mar 2 2017 Davide Caratti <dcaratti@redhat.com> - 1:2.6-4
|
|
|
7c853a |
- Backport support for IEEE 802.1AE (macsec)
|
|
|
7c853a |
|
|
|
7c853a |
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.6-3
|
|
|
7c853a |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Jan 27 2017 Jiřà Klimeš <blueowl@centrum.cz> - 1:2.6-2
|
|
|
7c853a |
- Enable Wi-Fi Display support for Miracast (rh #1395682)
|
|
|
7c853a |
|
|
|
7c853a |
* Tue Nov 22 2016 Lubomir Rintel <lkundrak@v3.sk> - 1:2.6-1
|
|
|
7c853a |
- Update to version 2.6
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.5-5
|
|
|
7c853a |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Nov 16 2015 Lubomir Rintel <lkundrak@v3.sk> - 1:2.5-4
|
|
|
7c853a |
- Really synchronize the service file with upstream
|
|
|
7c853a |
|
|
|
7c853a |
* Tue Nov 03 2015 Lukáš Nykrýn <lnykryn@redhat.com> - 1:2.5-3
|
|
|
7c853a |
- Scriptlets replaced with new systemd macros (rh #850369)
|
|
|
7c853a |
|
|
|
7c853a |
* Sat Oct 31 2015 Lubomir Rintel <lkundrak@v3.sk> - 1:2.5-2
|
|
|
7c853a |
- Enable syslog by default
|
|
|
7c853a |
- Drop writing a pid and log file
|
|
|
7c853a |
|
|
|
7c853a |
* Tue Oct 27 2015 Lubomir Rintel <lkundrak@v3.sk> - 1:2.5-1
|
|
|
7c853a |
- Update to version 2.5
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Oct 23 2015 Lubomir Rintel <lkundrak@v3.sk> - 1:2.4-6
|
|
|
7c853a |
- Fix the D-Bus policy
|
|
|
7c853a |
|
|
|
7c853a |
* Sat Oct 3 2015 Ville Skyttä <ville.skytta@iki.fi> - 1:2.4-5
|
|
|
7c853a |
- Don't order service after syslog.target (rh #1055197)
|
|
|
7c853a |
- Mark COPYING as %%license
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Jul 15 2015 Jiřà Klimeš <jklimes@redhat.com> - 1:2.4-4
|
|
|
7c853a |
- Fix for NDEF record payload length checking (rh #1241907)
|
|
|
7c853a |
|
|
|
7c853a |
* Tue Jun 16 2015 Jiřà Klimeš <jklimes@redhat.com> - 1:2.4-3
|
|
|
7c853a |
- Fix a crash if P2P management interface is used (rh #1231973)
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Apr 23 2015 Dan Williams <dcbw@redhat.com> - 1:2.4-2
|
|
|
7c853a |
- Remove obsolete wpa_supplicant-openssl-more-algs.patch
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Apr 23 2015 Adam Williamson <awilliam@redhat.com> - 1:2.4-1
|
|
|
7c853a |
- new release 2.4
|
|
|
7c853a |
- add some info on a couple of patches
|
|
|
7c853a |
- drop some patches merged or superseded upstream
|
|
|
7c853a |
- rediff other patches
|
|
|
7c853a |
- drop libeap hackery (we dropped the kernel drivers anyhow)
|
|
|
7c853a |
- backport fix for CVE-2015-1863
|
|
|
7c853a |
|
|
|
7c853a |
* Sat Nov 01 2014 Orion Poplawski <orion@cora.nwra.com> - 1:2.3-2
|
|
|
7c853a |
- Do not install wpa_supplicant.service as executable (bug #803980)
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Oct 30 2014 Lubomir Rintel <lkundrak@v3.sk> - 1:2.3-1
|
|
|
7c853a |
- Update to 2.3
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Oct 22 2014 Dan Williams <dcbw@redhat.com> - 1:2.0-12
|
|
|
7c853a |
- Use os_exec() for action script execution (CVE-2014-3686)
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Aug 21 2014 Kevin Fenzi <kevin@scrye.com> - 1:2.0-11
|
|
|
7c853a |
- Rebuild for rpm bug 1131960
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:2.0-10
|
|
|
7c853a |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
7c853a |
|
|
|
7c853a |
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:2.0-9
|
|
|
7c853a |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Nov 18 2013 Dan Williams <dcbw@redhat.com> - 1:2.0-8
|
|
|
7c853a |
- Don't disconnect when PMKSA cache gets too large (rh #1016707)
|
|
|
7c853a |
|
|
|
7c853a |
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:2.0-7
|
|
|
7c853a |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Jul 10 2013 Dan Williams <dcbw@redhat.com> - 1:2.0-6
|
|
|
7c853a |
- Enable full RELRO/PIE/PIC for wpa_supplicant and libeap
|
|
|
7c853a |
- Fix changelog dates
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Jul 10 2013 Dan Williams <dcbw@redhat.com> - 1:2.0-5
|
|
|
7c853a |
- Build and package eapol_test (rh #638218)
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Jul 10 2013 Dan Williams <dcbw@redhat.com> - 1:2.0-4
|
|
|
7c853a |
- Disable WiMAX libeap hack for RHEL
|
|
|
7c853a |
|
|
|
7c853a |
* Wed May 15 2013 Dan Williams <dcbw@redhat.com> - 1:2.0-3
|
|
|
7c853a |
- Enable HT (802.11n) for AP mode
|
|
|
7c853a |
|
|
|
7c853a |
* Tue May 7 2013 Dan Williams <dcbw@redhat.com> - 1:2.0-2
|
|
|
7c853a |
- Use hardened build macros and ensure they apply to libeap too
|
|
|
7c853a |
|
|
|
7c853a |
* Mon May 6 2013 Dan Williams <dcbw@redhat.com> - 1:2.0-1
|
|
|
7c853a |
- Update to 2.0
|
|
|
7c853a |
- Be less aggressive when roaming due to signal strength changes (rh #837402)
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Apr 1 2013 Dan Williams <dcbw@redhat.com> - 1:1.1-1
|
|
|
7c853a |
- Update to 1.1
|
|
|
7c853a |
- Be less aggressive when roaming due to signal strength changes
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.0-4
|
|
|
7c853a |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
7c853a |
|
|
|
7c853a |
* Sun Jan 20 2013 Dan Horák <dan@danny.cz> - 1:1.0-3
|
|
|
7c853a |
- rebuilt again for fixed soname in libnl3
|
|
|
7c853a |
|
|
|
7c853a |
* Sun Jan 20 2013 Kalev Lember <kalevlember@gmail.com> - 1:1.0-2
|
|
|
7c853a |
- Rebuilt for libnl3
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Aug 29 2012 Dan Williams <dcbw@redhat.com> - 1:1.0-1
|
|
|
7c853a |
- Enable lightweight AP mode support
|
|
|
7c853a |
- Enable P2P (WiFi Direct) support
|
|
|
7c853a |
- Enable RSN IBSS/AdHoc support
|
|
|
7c853a |
|
|
|
7c853a |
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.0-0.5
|
|
|
7c853a |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
7c853a |
|
|
|
7c853a |
* Tue May 1 2012 Dan Williams <dcbw@redhat.com> - 1:1.0-0.4
|
|
|
7c853a |
- Update to wpa_supplicant 1.0-rc3
|
|
|
7c853a |
- Fix systemd target dependencies (rh #815091)
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Mar 2 2012 Dan Williams <dcbw@redhat.com> - 1:1.0-0.3
|
|
|
7c853a |
- Update to latest 1.0 git snapshot
|
|
|
7c853a |
- Rebuild against libnl3
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Feb 2 2012 Dan Williams <dcbw@redhat.com> - 1:1.0-0.2
|
|
|
7c853a |
- Fix driver fallback for non nl80211-based drivers (rh #783712)
|
|
|
7c853a |
|
|
|
7c853a |
* Tue Jan 10 2012 Dan Williams <dcbw@redhat.com> - 1:1.0-0.1
|
|
|
7c853a |
- Update to 1.0-rc1 + git
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Sep 9 2011 Tom Callaway <spot@fedoraproject.org> - 1:0.7.3-11
|
|
|
7c853a |
- add missing systemd scriptlets
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Sep 8 2011 Tom Callaway <spot@fedoraproject.org> - 1:0.7.3-10
|
|
|
7c853a |
- convert to systemd
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Jul 27 2011 Dan Williams <dcbw@redhat.com> - 1:0.7.3-9
|
|
|
7c853a |
- Fix various crashes with D-Bus interface (rh #678625) (rh #725517)
|
|
|
7c853a |
|
|
|
7c853a |
* Tue May 3 2011 Dan Williams <dcbw@redhat.com> - 1:0.7.3-8
|
|
|
7c853a |
- Don't crash when trying to access invalid properties via D-Bus (rh #678625)
|
|
|
7c853a |
|
|
|
7c853a |
* Mon May 2 2011 Dan Williams <dcbw@redhat.com> - 1:0.7.3-7
|
|
|
7c853a |
- Make examples read-only to avoid erroneous python dependency (rh #687952)
|
|
|
7c853a |
|
|
|
7c853a |
* Tue Apr 19 2011 Bill Nottingham <notting@redhat.com> - 1:0.7.3-6
|
|
|
7c853a |
- Fix EAP patch to only apply when building libeap
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Mar 25 2011 Bill Nottingham <notting@redhat.com> - 1:0.7.3-5
|
|
|
7c853a |
- Add libeap/libeap-devel subpackge for WiMAX usage
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.7.3-4
|
|
|
7c853a |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
7c853a |
|
|
|
7c853a |
* Tue Jan 11 2011 Dan Williams <dcbw@redhat.com> - 1:0.7.3-3
|
|
|
7c853a |
- Enable EAP-TNC (rh #659038)
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Dec 15 2010 Dan Williams <dcbw@redhat.com> - 1:0.7.3-2
|
|
|
7c853a |
- Enable the bgscan_simple plugin
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Dec 8 2010 Dan Williams <dcbw@redhat.com> - 1:0.7.3-1
|
|
|
7c853a |
- Update to 0.7.3
|
|
|
7c853a |
- Drop upstreamed and backported patches
|
|
|
7c853a |
- Drop support for Qt3
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Oct 7 2010 Peter Lemenkov <lemenkov@gmail.com> - 1:0.6.8-11
|
|
|
7c853a |
- Added comments to some patches (see rhbz #226544#c17)
|
|
|
7c853a |
- Shortened %%install section a bit
|
|
|
7c853a |
|
|
|
7c853a |
* Thu May 13 2010 Dan Williams <dcbw@redhat.com> - 1:0.6.8-10
|
|
|
7c853a |
- Remove prereq on chkconfig
|
|
|
7c853a |
- Build GUI with qt4 for rawhide (rh #537105)
|
|
|
7c853a |
|
|
|
7c853a |
* Thu May 6 2010 Dan Williams <dcbw@redhat.com> - 1:0.6.8-9
|
|
|
7c853a |
- Fix crash when interfaces are removed (like suspend/resume) (rh #589507)
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Jan 6 2010 Dan Williams <dcbw@redhat.com> - 1:0.6.8-8
|
|
|
7c853a |
- Fix handling of newer PKCS#12 files (rh #541924)
|
|
|
7c853a |
|
|
|
7c853a |
* Sun Nov 29 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.8-7
|
|
|
7c853a |
- Fix supplicant initscript return value (rh #521807)
|
|
|
7c853a |
- Fix race when connecting to WPA-Enterprise/802.1x-enabled access points (rh #508509)
|
|
|
7c853a |
- Don't double-scan when attempting to associate
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1:0.6.8-6
|
|
|
7c853a |
- rebuilt with new openssl
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.6.8-5
|
|
|
7c853a |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
7c853a |
|
|
|
7c853a |
* Wed May 13 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.8-4
|
|
|
7c853a |
- Let D-Bus clients know when the supplicant is scanning
|
|
|
7c853a |
|
|
|
7c853a |
* Tue May 12 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.8-3
|
|
|
7c853a |
- Ensure the supplicant starts and ends with clean driver state
|
|
|
7c853a |
- Handle driver disconnect spammage by forcibly clearing SSID
|
|
|
7c853a |
- Don't switch access points unless the current association is dire (rh #493745)
|
|
|
7c853a |
|
|
|
7c853a |
* Tue May 12 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.8-2
|
|
|
7c853a |
- Avoid creating bogus Ad-Hoc networks when forcing the driver to disconnect (rh #497771)
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Mar 9 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.8-1
|
|
|
7c853a |
- Update to latest upstream release
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Feb 25 2009 Colin Walters <walters@verbum.org> - 1:0.6.7-4
|
|
|
7c853a |
- Add patch from upstream to suppress unrequested replies, this
|
|
|
7c853a |
quiets a dbus warning.
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Feb 6 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.7-3
|
|
|
7c853a |
- Fix scan result retrieval in very dense wifi environments
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Feb 6 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.7-2
|
|
|
7c853a |
- Ensure that drivers don't retry association when they aren't supposed to
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Jan 30 2009 Dan Williams <dcbw@redhat.com> - 1:0.6.7-1
|
|
|
7c853a |
- Fix PEAP connections to Windows Server 2008 authenticators (rh #465022)
|
|
|
7c853a |
- Stop supplicant on uninstall (rh #447843)
|
|
|
7c853a |
- Suppress scan results message in logs (rh #466601)
|
|
|
7c853a |
|
|
|
7c853a |
* Sun Jan 18 2009 Tomas Mraz <tmraz@redhat.com> - 1:0.6.4-3
|
|
|
7c853a |
- rebuild with new openssl
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Oct 15 2008 Dan Williams <dcbw@redhat.com> - 1:0.6.4-2
|
|
|
7c853a |
- Handle encryption keys correctly when switching 802.11 modes (rh #459399)
|
|
|
7c853a |
- Better scanning behavior on resume from suspend/hibernate
|
|
|
7c853a |
- Better interaction with newer kernels and drivers
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Aug 27 2008 Dan Williams <dcbw@redhat.com> - 1:0.6.4-1
|
|
|
7c853a |
- Update to 0.6.4
|
|
|
7c853a |
- Remove 'hostap', 'madwifi', and 'prism54' drivers; use standard 'wext' instead
|
|
|
7c853a |
- Drop upstreamed patches
|
|
|
7c853a |
|
|
|
7c853a |
* Tue Jun 10 2008 Dan Williams <dcbw@redhat.com> - 1:0.6.3-6
|
|
|
7c853a |
- Fix 802.11a frequency bug
|
|
|
7c853a |
- Always schedule specific SSID scans to help find hidden APs
|
|
|
7c853a |
- Properly switch between modes on mac80211 drivers
|
|
|
7c853a |
- Give adhoc connections more time to assocate
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Mar 10 2008 Christopher Aillon <caillon@redhat.com> - 1:0.6.3-5
|
|
|
7c853a |
- BuildRequires qt3-devel
|
|
|
7c853a |
|
|
|
7c853a |
* Sat Mar 8 2008 Dan Williams <dcbw@redhat.com> - 1:0.6.3-4
|
|
|
7c853a |
- Fix log file path in service config file
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Mar 6 2008 Dan Williams <dcbw@redhat.com> - 1:0.6.3-3
|
|
|
7c853a |
- Don't start the supplicant by default when installed (rh #436380)
|
|
|
7c853a |
|
|
|
7c853a |
* Tue Mar 4 2008 Dan Williams <dcbw@redhat.com> - 1:0.6.3-2
|
|
|
7c853a |
- Fix a potential use-after-free in the D-Bus byte array demarshalling code
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Mar 3 2008 Dan Williams <dcbw@redhat.com> - 1:0.6.3-1
|
|
|
7c853a |
- Update to latest development release; remove upstreamed patches
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Feb 22 2008 Dan Williams <dcbw@redhat.com> 1:0.5.7-23
|
|
|
7c853a |
- Fix gcc 4.3 rebuild issues
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1:0.5.7-22
|
|
|
7c853a |
- Autorebuild for GCC 4.3
|
|
|
7c853a |
|
|
|
7c853a |
* Tue Dec 25 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-21
|
|
|
7c853a |
- Backport 'frequency' option for Ad-Hoc network configs
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Dec 24 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-20
|
|
|
7c853a |
- Fix LSB initscript header to ensure 'messagebus' is started first (rh #244029)
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Dec 6 2007 Dan Williams <dcbw@redhat.com> - 1:0.5.7-19
|
|
|
7c853a |
- Fix two leaks when signalling state and scan results (rh #408141)
|
|
|
7c853a |
- Add logrotate config file (rh #404181)
|
|
|
7c853a |
- Add new LSB initscript header to initscript with correct deps (rh #244029)
|
|
|
7c853a |
- Move other runtime arguments to /etc/sysconfig/wpa_supplicant
|
|
|
7c853a |
- Start after messagebus service (rh #385191)
|
|
|
7c853a |
- Fix initscript 'condrestart' command (rh #217281)
|
|
|
7c853a |
|
|
|
7c853a |
* Tue Dec 4 2007 Matthias Clasen <mclasen@redhat.com> - 1:0.5.7-18
|
|
|
7c853a |
- Rebuild against new openssl
|
|
|
7c853a |
|
|
|
7c853a |
* Tue Dec 4 2007 Ville Skyttä <ville.skytta at iki.fi> - 1:0.5.7-17
|
|
|
7c853a |
- Group: Application/System -> Applications/System in -gui.
|
|
|
7c853a |
|
|
|
7c853a |
* Tue Nov 13 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-16
|
|
|
7c853a |
- Add IW_ENCODE_TEMP patch for airo driver and Dynamic WEP
|
|
|
7c853a |
- Fix error in wpa_supplicant-0.5.7-ignore-dup-ca-cert-addition.patch that
|
|
|
7c853a |
caused the last error to not be printed
|
|
|
7c853a |
- Fix wpa_supplicant-0.5.7-ignore-dup-ca-cert-addition.patch to ignore
|
|
|
7c853a |
duplicate cert additions for all certs and keys
|
|
|
7c853a |
- Change license to BSD due to linkage against OpenSSL since there is no
|
|
|
7c853a |
OpenSSL exception in the GPLv2 license text that upstream ships
|
|
|
7c853a |
|
|
|
7c853a |
* Sun Oct 28 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-15
|
|
|
7c853a |
- Fix Dynamic WEP associations with mac80211-based drivers
|
|
|
7c853a |
|
|
|
7c853a |
* Sun Oct 28 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-14
|
|
|
7c853a |
- Don't error an association on duplicate CA cert additions
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Oct 24 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-13
|
|
|
7c853a |
- Correctly set the length of blobs added via the D-Bus interface
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Oct 24 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-12
|
|
|
7c853a |
- Fix conversion of byte arrays to strings by ensuring the buffer is NULL
|
|
|
7c853a |
terminated after conversion
|
|
|
7c853a |
|
|
|
7c853a |
* Sat Oct 20 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-11
|
|
|
7c853a |
- Add BLOB support to the D-Bus interface
|
|
|
7c853a |
- Fix D-Bus interface permissions so that only root can use the wpa_supplicant
|
|
|
7c853a |
D-Bus interface
|
|
|
7c853a |
|
|
|
7c853a |
* Tue Oct 9 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-10
|
|
|
7c853a |
- Don't segfault with dbus control interface enabled and invalid network
|
|
|
7c853a |
interface (rh #310531)
|
|
|
7c853a |
|
|
|
7c853a |
* Tue Sep 25 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-9
|
|
|
7c853a |
- Always allow explicit wireless scans triggered from a control interface
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Sep 20 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-8
|
|
|
7c853a |
- Change system bus activation file name to work around D-Bus bug that fails
|
|
|
7c853a |
to launch services unless their .service file is named the same as the
|
|
|
7c853a |
service itself
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Aug 24 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-7
|
|
|
7c853a |
- Make SIGUSR1 change debug level on-the-fly; useful in combination with
|
|
|
7c853a |
the -f switch to log output to /var/log/wpa_supplicant.log
|
|
|
7c853a |
- Stop stripping binaries on install so we get debuginfo packages
|
|
|
7c853a |
- Remove service start requirement for interfaces & devices from sysconfig file,
|
|
|
7c853a |
since wpa_supplicant's D-Bus interface is now turned on
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Aug 17 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-6
|
|
|
7c853a |
- Fix compilation with RPM_OPT_FLAGS (rh #249951)
|
|
|
7c853a |
- Make debug output to logfile a runtime option
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Aug 17 2007 Christopher Aillon <caillon@redhat.com> - 0.5.7-5
|
|
|
7c853a |
- Update the license tag
|
|
|
7c853a |
|
|
|
7c853a |
* Tue Jun 19 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-4
|
|
|
7c853a |
- Fix initscripts to use -Dwext by default, be more verbose on startup
|
|
|
7c853a |
(rh #244511)
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Jun 4 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-3
|
|
|
7c853a |
- Fix buffer overflow by removing syslog patch (#rh242455)
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Apr 9 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-2
|
|
|
7c853a |
- Add patch to send output to syslog
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Mar 15 2007 Dan Williams <dcbw@redhat.com> - 0.5.7-1
|
|
|
7c853a |
- Update to 0.5.7 stable release
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Oct 27 2006 Dan Williams <dcbw@redhat.com> - 0.4.9-1
|
|
|
7c853a |
- Update to 0.4.9 for WE-21 fixes, remove upstreamed patches
|
|
|
7c853a |
- Don't package doc/ because they aren't actually wpa_supplicant user documentation,
|
|
|
7c853a |
and becuase it pulls in perl
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.4.8-10.1
|
|
|
7c853a |
- rebuild
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Apr 27 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-10
|
|
|
7c853a |
- Add fix for madwifi and WEP (wpa_supplicant/hostap bud #140) (#rh190075#)
|
|
|
7c853a |
- Fix up madwifi-ng private ioctl()s for r1331 and later
|
|
|
7c853a |
- Update madwifi headers to r1475
|
|
|
7c853a |
|
|
|
7c853a |
* Tue Apr 25 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-9
|
|
|
7c853a |
- Enable Wired driver, PKCS12, and Smartcard options (#rh189805#)
|
|
|
7c853a |
|
|
|
7c853a |
* Tue Apr 11 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-8
|
|
|
7c853a |
- Fix control interface key obfuscation a bit
|
|
|
7c853a |
|
|
|
7c853a |
* Sun Apr 2 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-7
|
|
|
7c853a |
- Work around older & incorrect drivers that return null-terminated SSIDs
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Mar 27 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-6
|
|
|
7c853a |
- Add patch to make orinoco happy with WEP keys
|
|
|
7c853a |
- Enable Prism54-specific driver
|
|
|
7c853a |
- Disable ipw-specific driver; ipw2x00 should be using WEXT instead
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Mar 3 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-5
|
|
|
7c853a |
- Increase association timeout, mainly for drivers that don't
|
|
|
7c853a |
fully support WPA ioctls yet
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Mar 3 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-4
|
|
|
7c853a |
- Add additional BuildRequires #rh181914#
|
|
|
7c853a |
- Add prereq on chkconfig #rh182905# #rh182906#
|
|
|
7c853a |
- Own /var/run/wpa_supplicant and /etc/wpa_supplicant #rh183696#
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Mar 1 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-3
|
|
|
7c853a |
- Install wpa_passphrase too #rh183480#
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Feb 27 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-2
|
|
|
7c853a |
- Don't expose private data on the control interface unless requested
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Feb 24 2006 Dan Williams <dcbw@redhat.com> - 0.4.8-1
|
|
|
7c853a |
- Downgrade to 0.4.8 stable release rather than a dev release
|
|
|
7c853a |
|
|
|
7c853a |
* Sun Feb 12 2006 Dan Williams <dcbw@redhat.com> - 0.5.1-3
|
|
|
7c853a |
- Documentation cleanup (Terje Rosten <terje.rosten@ntnu.no>)
|
|
|
7c853a |
|
|
|
7c853a |
* Sun Feb 12 2006 Dan Williams <dcbw@redhat.com> - 0.5.1-2
|
|
|
7c853a |
- Move initscript to /etc/rc.d/init.d
|
|
|
7c853a |
|
|
|
7c853a |
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.5.1-1.2
|
|
|
7c853a |
- bump again for double-long bug on ppc(64)
|
|
|
7c853a |
|
|
|
7c853a |
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.5.1-1.1
|
|
|
7c853a |
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
7c853a |
|
|
|
7c853a |
* Sun Feb 5 2006 Dan Williams <dcbw@redhat.com> 0.5.1-1
|
|
|
7c853a |
- Update to 0.5.1
|
|
|
7c853a |
- Add WE auth fallback to actually work with older drivers
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Jan 26 2006 Dan Williams <dcbw@redhat.com> 0.4.7-2
|
|
|
7c853a |
- Bring package into Fedora Core
|
|
|
7c853a |
- Add ap_scan control interface patch
|
|
|
7c853a |
- Enable madwifi-ng driver
|
|
|
7c853a |
|
|
|
7c853a |
* Sun Jan 15 2006 Douglas E. Warner <silfreed@silfreed.net> 0.4.7-1
|
|
|
7c853a |
- upgrade to 0.4.7
|
|
|
7c853a |
- added package w/ wpa_gui in it
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Nov 14 2005 Douglas E. Warner <silfreed@silfreed.net> 0.4.6-1
|
|
|
7c853a |
- upgrade to 0.4.6
|
|
|
7c853a |
- adding ctrl interface changes recommended
|
|
|
7c853a |
by Hugo Paredes <hugo.paredes@e-know.org>
|
|
|
7c853a |
|
|
|
7c853a |
* Sun Oct 9 2005 Douglas E. Warner <silfreed@silfreed.net> 0.4.5-1
|
|
|
7c853a |
- upgrade to 0.4.5
|
|
|
7c853a |
- updated config file wpa_supplicant is built with
|
|
|
7c853a |
especially, the ipw2100 driver changed to just ipw
|
|
|
7c853a |
and enabled a bunch more EAP
|
|
|
7c853a |
- disabled dist tag
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Jun 30 2005 Douglas E. Warner <silfreed@silfreed.net> 0.4.2-3
|
|
|
7c853a |
- fix typo in init script
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Jun 30 2005 Douglas E. Warner <silfreed@silfreed.net> 0.4.2-2
|
|
|
7c853a |
- fixing init script using fedora-extras' template
|
|
|
7c853a |
- removing chkconfig default startup
|
|
|
7c853a |
|
|
|
7c853a |
* Tue Jun 21 2005 Douglas E. Warner <silfreed@silfreed.net> 0.4.2-1
|
|
|
7c853a |
- upgrade to 0.4.2
|
|
|
7c853a |
- new sample conf file that will use any unrestricted AP
|
|
|
7c853a |
- make sysconfig config entry
|
|
|
7c853a |
- new BuildRoot for Fedora Extras
|
|
|
7c853a |
- adding dist tag to Release
|
|
|
7c853a |
|
|
|
7c853a |
* Fri May 06 2005 Douglas E. Warner <silfreed@silfreed.net> 0.3.8-1
|
|
|
7c853a |
- upgrade to 0.3.8
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Feb 10 2005 Douglas E. Warner <silfreed@silfreed.net> 0.3.6-2
|
|
|
7c853a |
- compile ipw driver in
|
|
|
7c853a |
|
|
|
7c853a |
* Wed Feb 09 2005 Douglas E. Warner <silfreed@silfreed.net> 0.3.6-1
|
|
|
7c853a |
- upgrade to 0.3.6
|
|
|
7c853a |
|
|
|
7c853a |
* Thu Dec 23 2004 Douglas E. Warner <silfreed@silfreed.net> 0.2.5-4
|
|
|
7c853a |
- fixing init script
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Dec 20 2004 Douglas E. Warner <silfreed@silfreed.net> 0.2.5-3
|
|
|
7c853a |
- fixing init script
|
|
|
7c853a |
- adding post/preun items to add/remove via chkconfig
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Dec 20 2004 Douglas E. Warner <silfreed@silfreed.net> 0.2.5-2
|
|
|
7c853a |
- adding sysV scripts
|
|
|
7c853a |
|
|
|
7c853a |
* Mon Dec 20 2004 Douglas E. Warner <silfreed@silfreed.net> 0.2.5-1
|
|
|
7c853a |
- Initial RPM release.
|
|
|
7c853a |
|