diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2019-05-04 14:02:07 +0200 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2019-09-22 17:39:51 +0200 |
commit | 998686364da7d002ba9f6dbb43cc5f32294dd4ab (patch) | |
tree | cd1818e79ff096e1ed114c4737a6889663a5b610 /package/network/services/hostapd/files/wpa_supplicant-mini.config | |
parent | 0d86bf518aaefa57bef577d09a18aff03eccb70c (diff) | |
download | upstream-998686364da7d002ba9f6dbb43cc5f32294dd4ab.tar.gz upstream-998686364da7d002ba9f6dbb43cc5f32294dd4ab.tar.bz2 upstream-998686364da7d002ba9f6dbb43cc5f32294dd4ab.zip |
hostapd: use getrandom syscall
hostapd will not use the getrandom() syscall and as a fallback use
/dev/random, the syscall is supported since Linux 3.17 and in the musl,
glibc and uclibc version used by OpenWrt.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'package/network/services/hostapd/files/wpa_supplicant-mini.config')
-rw-r--r-- | package/network/services/hostapd/files/wpa_supplicant-mini.config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/services/hostapd/files/wpa_supplicant-mini.config b/package/network/services/hostapd/files/wpa_supplicant-mini.config index a71ac9dfe3..6af4693c53 100644 --- a/package/network/services/hostapd/files/wpa_supplicant-mini.config +++ b/package/network/services/hostapd/files/wpa_supplicant-mini.config @@ -473,7 +473,7 @@ CONFIG_NO_RANDOM_POOL=y # Should we attempt to use the getrandom(2) call that provides more reliable # yet secure randomness source than /dev/random on Linux 3.17 and newer. # Requires glibc 2.25 to build, falls back to /dev/random if unavailable. -#CONFIG_GETRANDOM=y +CONFIG_GETRANDOM=y # IEEE 802.11n (High Throughput) support (mainly for AP mode) #CONFIG_IEEE80211N=y |