feat(hostapd): disable openssl to save space
Some checks failed
build liminix / build_vm_qemu_mips (pull_request) Failing after 28s

Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
This commit is contained in:
Raito Bezarius 2024-09-07 17:03:50 +02:00
parent 032e57b34c
commit 71813a1f8f

View file

@ -172,8 +172,7 @@ extraPkgs // {
"CONFIG_LIBNL32=y"
"CONFIG_PKCS12=y"
"CONFIG_RSN_PREAUTH=y"
# Required to read the key material for RADIUS.
"CONFIG_TLS=openssl"
"CONFIG_TLS=internal"
];
h = prev.hostapd.overrideAttrs(o: {
extraConfig = "";
@ -184,7 +183,7 @@ extraPkgs // {
${o.configurePhase}
'';
});
in h.override { sqlite = null; };
in h.override { openssl = null; sqlite = null; };