mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
080b0fb9b3
The supplicant is updated to the current release and is now downloaded as archive rather than pulled from git. For the time being 'libnl' is still kept at 3.2.25 as the current 3.7.0 release relies on more Linux infrastructure that our integration does not provide. Issue #4861.
21 lines
535 B
Makefile
21 lines
535 B
Makefile
LICENSE := BSD-3-Clause
|
|
VERSION := 2.10
|
|
DOWNLOADS := wpa_supplicant.archive
|
|
|
|
#
|
|
# wpa_supplicant sources
|
|
#
|
|
URL(wpa_supplicant) := https://w1.fi/releases/wpa_supplicant-2.10.tar.gz
|
|
SHA(wpa_supplicant) := 20df7ae5154b3830355f8ab4269123a87affdea59fe74fe9292a91d0d7e17b2f
|
|
DIR(wpa_supplicant) := src/app/wpa_supplicant
|
|
|
|
#
|
|
# Patches
|
|
#
|
|
PATCHES := $(addprefix patches/,$(notdir $(wildcard $(REP_DIR)/patches/wpa*.patch)))
|
|
|
|
# WPA supplicant
|
|
PATCH_OPT(patches/wpa_supplicant.patch) := -p1 -d ${DIR(wpa_supplicant)}
|
|
|
|
# vi: set ft=make :
|