Blame SPECS/hostapd.spec

faa14f
%global _hardened_build 1
faa14f
faa14f
Name:           hostapd
faa14f
Version:        2.10
faa14f
Release:        1%{?dist}
faa14f
Summary:        IEEE 802.11 AP, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator
faa14f
License:        BSD
faa14f
URL:            http://w1.fi/hostapd
faa14f
faa14f
Source0:        http://w1.fi/releases/%{name}-%{version}.tar.gz
faa14f
Source1:        %{name}.service
faa14f
Source2:        %{name}.conf
faa14f
Source3:        %{name}.conf.5
faa14f
Source4:        %{name}.sysconfig
faa14f
Source5:        %{name}.init
faa14f
faa14f
BuildRequires:  libnl3-devel
faa14f
BuildRequires:  openssl-devel
faa14f
BuildRequires:  perl-generators
faa14f
BuildRequires:  gcc
faa14f
faa14f
%if 0%{?fedora} || 0%{?rhel} >= 7
faa14f
BuildRequires:      systemd
faa14f
BuildRequires: make
faa14f
Requires(post):     systemd
faa14f
Requires(preun):    systemd
faa14f
Requires(postun):   systemd
faa14f
%endif
faa14f
faa14f
%if 0%{?rhel} == 6
faa14f
Requires(post):     /sbin/chkconfig
faa14f
Requires(preun):    /sbin/chkconfig
faa14f
Requires(preun):    /sbin/service
faa14f
Requires(postun):   /sbin/service
faa14f
%endif
faa14f
faa14f
%description
faa14f
%{name} is a user space daemon for access point and authentication servers. It
faa14f
implements IEEE 802.11 access point management, IEEE 802.1X/WPA/WPA2/EAP
faa14f
Authenticators and RADIUS authentication server.
faa14f
faa14f
%{name} is designed to be a "daemon" program that runs in the back-ground and
faa14f
acts as the backend component controlling authentication. %{name} supports
faa14f
separate frontend programs and an example text-based frontend, hostapd_cli, is
faa14f
included with %{name}.
faa14f
faa14f
%package logwatch
faa14f
Summary:        Logwatch scripts for hostapd
faa14f
Requires:       %{name} = %{version}-%{release}
faa14f
Requires:       logwatch
faa14f
%if 0%{?rhel} == 6 || 0%{?rhel} == 7
faa14f
Requires:       perl
faa14f
%else
faa14f
Requires:       perl-interpreter
faa14f
%endif
faa14f
faa14f
%description logwatch
faa14f
Logwatch scripts for hostapd.
faa14f
faa14f
%prep
faa14f
%setup -q
faa14f
faa14f
%build
faa14f
cd hostapd
faa14f
cat defconfig | sed \
faa14f
    -e '$ a CONFIG_SAE=y' \
faa14f
    -e '$ a CONFIG_SUITEB192=y' \
faa14f
    -e '$ a CONFIG_TLS_DEFAULT_CIPHERS="PROFILE=SYSTEM:3DES"' \
faa14f
    -e '/^#CONFIG_DRIVER_NL80211=y/s/^#//' \
faa14f
    -e '/^#CONFIG_RADIUS_SERVER=y/s/^#//' \
faa14f
    -e '/^#CONFIG_DRIVER_WIRED=y/s/^#//' \
faa14f
    -e '/^#CONFIG_DRIVER_NONE=y/s/^#//' \
faa14f
    -e '/^#CONFIG_IEEE80211N=y/s/^#//' \
faa14f
    -e '/^#CONFIG_IEEE80211R=y/s/^#//' \
faa14f
    -e '/^#CONFIG_IEEE80211AC=y/s/^#//' \
faa14f
    -e '/^#CONFIG_FULL_DYNAMIC_VLAN=y/s/^#//' \
faa14f
    -e '/^#CONFIG_LIBNL32=y/s/^#//' \
faa14f
    -e '/^#CONFIG_ACS=y/s/^#//' \
faa14f
    -e '/^#CONFIG_OWE=y/s/^#//' \
faa14f
    -e '/^#CONFIG_WEP=y/s/^#//' \
faa14f
    > .config
faa14f
echo "CFLAGS += -I%{_includedir}/libnl3" >> .config
faa14f
echo "LIBS += -L%{_libdir}" >> .config
faa14f
export CFLAGS="${CFLAGS:-%optflags} -fPIE -DPIE"
faa14f
export CXXFLAGS="${CXXFLAGS:-%optflags} -fPIE -DPIE"
faa14f
export LDFLAGS="${LDFLAGS:-%optflags} -pie -Wl,-z,now"
faa14f
make %{?_smp_mflags} V=1
faa14f
faa14f
%install
faa14f
%if 0%{?fedora} || 0%{?rhel} >= 7
faa14f
faa14f
# Systemd unit files
faa14f
install -p -m 644 -D %{SOURCE1} %{buildroot}%{_unitdir}/%{name}.service
faa14f
faa14f
%else
faa14f
faa14f
# Initscripts
faa14f
install -p -m 755 -D %{SOURCE5} %{buildroot}%{_initrddir}/%{name}
faa14f
faa14f
%endif
faa14f
faa14f
# logwatch files
faa14f
install -d %{buildroot}/%{_sysconfdir}/logwatch/conf/services
faa14f
install -pm 0644 %{name}/logwatch/%{name}.conf  \
faa14f
        %{buildroot}/%{_sysconfdir}/logwatch/conf/services/%{name}.conf
faa14f
install -d %{buildroot}/%{_sysconfdir}/logwatch/scripts/services
faa14f
install -pm 0755 %{name}/logwatch/%{name} \
faa14f
        %{buildroot}/%{_sysconfdir}/logwatch/scripts/services/%{name}
faa14f
faa14f
# config files
faa14f
install -d %{buildroot}/%{_sysconfdir}/%{name}
faa14f
install -pm 0600 %{SOURCE2} %{buildroot}/%{_sysconfdir}/%{name}
faa14f
faa14f
install -d %{buildroot}/%{_sysconfdir}/sysconfig
faa14f
install -pm 0644 %{SOURCE4} %{buildroot}/%{_sysconfdir}/sysconfig/%{name}
faa14f
faa14f
# binaries
faa14f
install -d %{buildroot}/%{_sbindir}
faa14f
install -pm 0755 %{name}/%{name} %{buildroot}%{_sbindir}/%{name}
faa14f
install -pm 0755 %{name}/%{name}_cli %{buildroot}%{_sbindir}/%{name}_cli
faa14f
faa14f
# man pages
faa14f
install -d %{buildroot}%{_mandir}/man{1,5,8}
faa14f
install -pm 0644 %{name}/%{name}_cli.1 %{buildroot}%{_mandir}/man1
faa14f
install -pm 0644 %{SOURCE3} %{buildroot}%{_mandir}/man5
faa14f
install -pm 0644 %{name}/%{name}.8 %{buildroot}%{_mandir}/man8
faa14f
faa14f
# prepare docs
faa14f
cp %{name}/README ./README.%{name}
faa14f
cp %{name}/README-WPS ./README-WPS.%{name}
faa14f
cp %{name}/logwatch/README ./README.logwatch
faa14f
faa14f
%if 0%{?fedora} || 0%{?rhel} >= 7
faa14f
faa14f
%post
faa14f
%systemd_post %{name}.service
faa14f
faa14f
%preun
faa14f
%systemd_preun %{name}.service
faa14f
faa14f
%postun
faa14f
%systemd_postun_with_restart %{name}.service
faa14f
faa14f
%endif
faa14f
faa14f
%if 0%{?rhel} == 6
faa14f
faa14f
%post
faa14f
/sbin/chkconfig --add %{name}
faa14f
faa14f
%preun
faa14f
if [ $1 -eq 0 ]; then
faa14f
    /sbin/service %{name} stop >/dev/null 2>&1 || :
faa14f
    /sbin/chkconfig --del %{name}
faa14f
fi
faa14f
faa14f
%postun
faa14f
if [ $1 -ge 1 ]; then
faa14f
    /sbin/service %{name} condrestart >/dev/null 2>&1 || :
faa14f
fi
faa14f
faa14f
%endif
faa14f
faa14f
%files
faa14f
%license COPYING
faa14f
%doc README README.hostapd README-WPS.hostapd
faa14f
%doc %{name}/%{name}.conf %{name}/wired.conf
faa14f
%doc %{name}/%{name}.accept %{name}/%{name}.deny
faa14f
%doc %{name}/%{name}.eap_user %{name}/%{name}.radius_clients
faa14f
%doc %{name}/%{name}.vlan %{name}/%{name}.wpa_psk
faa14f
%config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf
faa14f
%config(noreplace) %{_sysconfdir}/sysconfig/%{name}
faa14f
%{_sbindir}/%{name}
faa14f
%{_sbindir}/%{name}_cli
faa14f
%dir %{_sysconfdir}/%{name}
faa14f
%{_mandir}/man1/*
faa14f
%{_mandir}/man5/*
faa14f
%{_mandir}/man8/*
faa14f
%if 0%{?fedora} || 0%{?rhel} >= 7
faa14f
%{_unitdir}/%{name}.service
faa14f
%else
faa14f
%{_initrddir}/%{name}
faa14f
%endif
faa14f
faa14f
%files logwatch
faa14f
%doc %{name}/logwatch/README
faa14f
%config(noreplace) %{_sysconfdir}/logwatch/conf/services/%{name}.conf
faa14f
%{_sysconfdir}/logwatch/scripts/services/%{name}
faa14f
faa14f
%changelog
faa14f
* Fri Jan 21 2022 Davide Caratti <dcaratti@redhat.com> - 2.10-1
faa14f
- Update to version 2.10, keeping CONFIG_WEP enabled
faa14f
faa14f
* Wed Dec 22 2021 Davide Caratti <dcaratti@redhat.com> - 2.9-17
faa14f
- fix typo while enabling support for suite B-192
faa14f
faa14f
* Tue Dec 21 2021 Davide Caratti <dcaratti@redhat.com> - 2.9-16
faa14f
- disable 'badfuncs' rpminspect test
faa14f
- change default value of CONFIG_TLS_DEFAULT_CIPHERS to allow using OpenSSL
faa14f
  to compute 3DES
faa14f
faa14f
* Mon Dec 20 2021 Davide Caratti <dcaratti@redhat.com> - 2.9-15
faa14f
- Build with -fPIE, and enable verbose build log
faa14f
- Enable CONFIG_SUITEB192
faa14f
faa14f
* Sat Dec 18 2021 Tomas Pelka <tpelka@redhat.com> - 2.9-14
faa14f
- bump release and rebuild to correctly trigger gating
faa14f
faa14f
* Tue Sep 14 2021 Sahana Prasad <sahana@redhat.com> - 2.9-13
faa14f
- Rebuilt with OpenSSL 3.0.0
faa14f
faa14f
* Fri Sep  3 2021 Davide Caratti <dcaratti@redhat.com> - 2.9-12
faa14f
- backport fix for NetworkManager-ci failures with openssl-3.0.0
faa14f
faa14f
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.9-11
faa14f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
faa14f
faa14f
* Tue May 11 2021 John W. Linville <linville@redhat.com> - 2.9-10
faa14f
- Enable CONFIG_OWE build option in order to provide WPA3 capability
faa14f
faa14f
* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.9-9
faa14f
- Rebuilt for updated systemd-rpm-macros
faa14f
  See https://pagure.io/fesco/issue/2583.
faa14f
faa14f
* Wed Feb 10 2021 John W. Linville <linville@redhat.com> - 2.9-8
faa14f
- Add hostapd.conf.5 man file, with content borrowed from NetBSD
faa14f
faa14f
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.9-7
faa14f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
faa14f
faa14f
* Thu Dec 10 2020 John W. Linville <linville@redhat.com> - 2.9-6
faa14f
- Enable environment file in hostapd service definition
faa14f
faa14f
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.9-5
faa14f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
faa14f
faa14f
* Wed Jun 24 2020 John W. Linville <linville@redhat.com> - 2.9-4
faa14f
- Fix CVE-2020-12695 (UPnP SUBSCRIBE misbehavior in hostapd WPS AP)
faa14f
faa14f
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.9-3
faa14f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
faa14f
faa14f
* Wed Oct 30 2019 John W. Linville <linville@redhat.com> - 2.9-2
faa14f
- Fix CVE-2019-16275 (AP mode PMF disconnection protection bypass)
faa14f
faa14f
* Fri Aug 09 2019 John W. Linville <linville@redhat.com> - 2.9-1
faa14f
- Update to version 2.9 from upstream
faa14f
faa14f
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.8-3
faa14f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
faa14f
faa14f
* Wed Jul 03 2019 Lubomir Rintel <lkundrak@v3.sk> - 2.8-2
faa14f
- Enable SAE
faa14f
faa14f
* Wed May 15 2019 John W. Linville <linville@redhat.com> - 2.8-1
faa14f
- Update to version 2.8 from upstream
faa14f
- Drop obsoleted patches
faa14f
faa14f
* Fri Apr 12 2019 John W. Linville <linville@redhat.com> - 2.7-2
faa14f
- Bump N-V-R for rebuild
faa14f
faa14f
* Fri Apr 12 2019 John W. Linville <linville@redhat.com> - 2.7-1
faa14f
- Update to version 2.7 from upstream
faa14f
- Remove obsolete patches for NL80211_ATTR_SMPS_MODE encoding and KRACK
faa14f
- Fix CVE-2019-9494 (cache attack against SAE)
faa14f
- Fix CVE-2019-9495 (cache attack against EAP-pwd)
faa14f
- Fix CVE-2019-9496 (SAE confirm missing state validation in hostapd/AP)
faa14f
- Fix CVE-2019-9497 (EAP-pwd server not checking for reflection attack)
faa14f
- Fix CVE-2019-9498 (EAP-pwd server missing commit validation for scalar/element)
faa14f
- Fix CVE-2019-9499 (EAP-pwd peer missing commit validation for scalar/element)
faa14f
faa14f
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-12
faa14f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
faa14f
faa14f
* Fri Jul 20 2018 John W. Linville <linville@redhat.com> - 2.6-11
faa14f
- Add previously unnecessary BuildRequires for gcc
faa14f
faa14f
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-10
faa14f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
faa14f
faa14f
* Tue May 29 2018 Davide Caratti <dcaratti@redhat.com> - 2.6-9
faa14f
- backport fix for Fix NL80211_ATTR_SMPS_MODE encoding (rh #1582839)
faa14f
faa14f
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-8
faa14f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
faa14f
faa14f
* Thu Dec 07 2017 Simone Caronni <negativo17@gmail.com> - 2.6-7
faa14f
- Fix dependencies on the logwatch package for RHEL/CentOS.
faa14f
faa14f
* Fri Nov 03 2017 Xavier Bachelot <xavier@bachelot.org> - 2.6-6
faa14f
- Add patches for KRACK : CVE-2017-13077, CVE-2017-13078, CVE-2017-13079,
faa14f
  CVE-2017-13080, CVE-2017-13081, CVE-2017-13082, CVE-2017-13086,
faa14f
  CVE-2017-13087, CVE-2017-13088 (RHBZ#1502588).
faa14f
faa14f
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-5
faa14f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
faa14f
faa14f
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-4
faa14f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
faa14f
faa14f
* Thu Jul 13 2017 Petr Pisar <ppisar@redhat.com> - 2.6-3
faa14f
- perl dependency renamed to perl-interpreter
faa14f
  <https://fedoraproject.org/wiki/Changes/perl_Package_to_Install_Core_Modules>
faa14f
faa14f
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-2
faa14f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
faa14f
faa14f
* Mon Oct 03 2016 John W. Linville <linville@redhat.com> - 2.6-1
faa14f
- Update to version 2.6 from upstream
faa14f
- Remove patch for CVE-2016-4476, now included in base tarball
faa14f
faa14f
* Fri Jul 15 2016 John W. Linville <linville@redhat.com> - 2.5-5
faa14f
- Bump NVR and rebuild to resolve GLIBC_2.24 symbol issue
faa14f
faa14f
* Mon Jun 06 2016 John W. Linville <linville@redhat.com> - 2.5-4
faa14f
- Add WPS patch for CVE-2016-4476
faa14f
faa14f
* Tue Apr 19 2016 Sascha Spreitzer <sspreitz@redhat.com> - 2.5-3
faa14f
- Enable ACS feature (automatic channel switching)
faa14f
faa14f
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.5-2
faa14f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
faa14f
faa14f
* Tue Oct 13 2015 John W. Linville <linville@redhat.com> - 2.5-1
faa14f
- Update to version 2.5 from upstream
faa14f
- Remove patches made redundant by version update
faa14f
faa14f
* Fri Jul 10 2015 John W. Linville <linville@redhat.com> - 2.4-3
faa14f
- apply fix for NDEF record payload length checking
faa14f
faa14f
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4-3
faa14f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
faa14f
faa14f
* Fri May 15 2015 John W. Linville <linville@redhat.com> - 2.4-2
faa14f
- apply fix for underflow in WMM action frame parser
faa14f
faa14f
* Tue Apr 21 2015 John W. Linville <linville@redhat.com> - 2.4-1
faa14f
- Update to version 2.4 from upstream
faa14f
- Enable support for IEEE802.11r and IEEE802.11ac
faa14f
faa14f
* Wed Feb  4 2015 John W. Linville <linville@redhat.com> - 2.3-4
faa14f
- Use %%license instead of %%doc for file containing license information
faa14f
faa14f
* Sun Nov 02 2014 poma <poma@gmail.com> - 2.3-3
faa14f
- Further simplify hostapd.conf installation
faa14f
- Rebase "EAP-TLS server" patch to 2.3
faa14f
faa14f
* Tue Oct 28 2014 John W. Linville <linville@redhat.com> - 2.3-2
faa14f
- Remove version info from /usr/share/doc/hostapd/hostapd.conf
faa14f
faa14f
* Thu Oct 23 2014 John W. Linville <linville@redhat.com> - 2.3-1
faa14f
- Update to version 2.3 from upstream
faa14f
faa14f
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2-3
faa14f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
faa14f
faa14f
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2-2
faa14f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
faa14f
faa14f
* Thu Jun  5 2014 John W. Linville <linville@redhat.com> - 2.2-1
faa14f
- Update to version 2.2 from upstream
faa14f
faa14f
* Sat Feb 22 2014 Simone Caronni <negativo17@gmail.com> - 2.1-2
faa14f
- Re-enable drivers (#1068849).
faa14f
faa14f
* Fri Feb 14 2014 John W. Linville <linville@redhat.com> - 2.1-1
faa14f
- Update to version 2.1 from upstream
faa14f
- Remove obsolete patch for libnl build documentation
faa14f
faa14f
* Mon Feb 03 2014 Simone Caronni <negativo17@gmail.com> - 2.0-6
faa14f
- Add libnl build documentation and switch libnl-devel to libnl3-devel build
faa14f
  dependency (#1041471).
faa14f
faa14f
* Fri Nov 22 2013 John W. Linville <linville@redhat.com> - 2.0-5
faa14f
- Enable CONFIG_FULL_DYNAMIC_VLAN build option
faa14f
faa14f
* Wed Aug 07 2013 Simone Caronni <negativo17@gmail.com> - 2.0-4
faa14f
- Add EPEL 6 support.
faa14f
- Remove obsolete EPEL 5 tags.
faa14f
- Little spec file formatting.
faa14f
faa14f
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-3
faa14f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
faa14f
faa14f
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 2.0-2
faa14f
- Perl 5.18 rebuild
faa14f
faa14f
* Thu May 30 2013 John W. Linville <linville@redhat.com> - 2.0-1
faa14f
- Update to version 2.0 from upstream
faa14f
- Convert to use of systemd-rpm macros
faa14f
- Build with PIE flags
faa14f
faa14f
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-4
faa14f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
faa14f
faa14f
* Mon Oct  8 2012 John W. Linville <linville@redhat.com> - 1.0-3
faa14f
- EAP-TLS: Add extra validation for TLS Message Length
faa14f
faa14f
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-2
faa14f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
faa14f
faa14f
* Fri Jun  8 2012 John W. Linville <linville@redhat.com> - 1.0-1
faa14f
- Update to version 1.0 from upstream
faa14f
faa14f
* Fri Jun  8 2012 John W. Linville <linville@redhat.com> - 0.7.3-9
faa14f
- Remove hostapd-specific runtime state directory
faa14f
faa14f
* Wed Jun  6 2012 John W. Linville <linville@redhat.com> - 0.7.3-8
faa14f
- Fixup typo in pid file path in hostapd.service
faa14f
faa14f
* Wed May 30 2012 John W. Linville <linville@redhat.com> - 0.7.3-7
faa14f
- Add BuildRequires for systemd-units
faa14f
faa14f
* Fri May 25 2012 John W. Linville <linville@redhat.com> - 0.7.3-6
faa14f
- Fixup typo in configuration file path in hostapd.service
faa14f
- Tighten-up default permissions for hostapd.conf
faa14f
faa14f
* Tue Feb 28 2012 Jon Ciesla <limburgher@gmail.com> - 0.7.3-5
faa14f
- Migrate to systemd, BZ 770310.
faa14f
faa14f
* Wed Jan 18 2012 John W. Linville <linville@redhat.com> - 0.7.3-4
faa14f
- Add reference to sample hostapd.conf in the default installed version
faa14f
- Include README-WPS from the hostapd distribution as part of the docs
faa14f
faa14f
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.3-3
faa14f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
faa14f
faa14f
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.3-2
faa14f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
faa14f
faa14f
* Thu Dec 23 2010 John W. Linville <linville@redhat.com> - 0.7.3-1
faa14f
- Update to version 0.7.3
faa14f
faa14f
* Wed Nov 24 2010 John W. Linville <linville@redhat.com> - 0.6.10-3
faa14f
- Use ghost directive for /var/run/hostapd
faa14f
- Remove some rpmlint warnings
faa14f
faa14f
* Thu May 27 2010 John W. Linville <linville@redhat.com> - 0.6.10-2
faa14f
- Move DTIM period configuration into Beacon set operation
faa14f
faa14f
* Mon May 10 2010 John W. Linville <linville@redhat.com> - 0.6.10-1
faa14f
- Update to version 0.6.10
faa14f
faa14f
* Tue Jan 19 2010 John W. Linville <linville@redhat.com> - 0.6.9-8
faa14f
- Do not compress man pages manually in spec file
faa14f
- Correct date of previous changelog entry
faa14f
faa14f
* Thu Jan 14 2010 John W. Linville <linville@redhat.com> - 0.6.9-7
faa14f
- Enable 802.11n support
faa14f
faa14f
* Thu Dec 17 2009 John W. Linville <linville@redhat.com> - 0.6.9-6
faa14f
- Enable RADIUS server
faa14f
- Enable "wired" and "none" drivers
faa14f
- Use BSD license option
faa14f
faa14f
* Wed Dec 16 2009 John W. Linville <linville@redhat.com> - 0.6.9-5
faa14f
- Use openssl instead of gnutls (broken)
faa14f
faa14f
* Wed Dec 16 2009 John W. Linville <linville@redhat.com> - 0.6.9-4
faa14f
- Remove wired.conf from doc (not in chosen configuration)
faa14f
- Use $RPM_OPT_FLAGS
faa14f
- Add dist tag
faa14f
faa14f
* Wed Dec 16 2009 John W. Linville <linville@redhat.com> - 0.6.9-3
faa14f
- Use gnutls instead of openssl
faa14f
- Turn-off internal EAP server (broken w/ gnutls)
faa14f
- Remove doc files not applicable to chosen configuration
faa14f
- Un-mangle README filename for logwatch sub-package
faa14f
faa14f
* Wed Dec 16 2009 John W. Linville <linville@redhat.com> - 0.6.9-2
faa14f
- Initial build
faa14f
- Start release at 2 to avoid conflicts w/ previous attempts by others