feat(hostapd): ubus support
Some checks failed
build liminix / build_vm_qemu_mips (pull_request) Failing after 27s
Some checks failed
build liminix / build_vm_qemu_mips (pull_request) Failing after 27s
Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
This commit is contained in:
parent
0fb671023c
commit
032e57b34c
1 changed files with 9 additions and 0 deletions
|
@ -130,9 +130,18 @@ extraPkgs // {
|
||||||
"CONFIG_LIBNL32=y"
|
"CONFIG_LIBNL32=y"
|
||||||
"CONFIG_PKCS12=y"
|
"CONFIG_PKCS12=y"
|
||||||
"CONFIG_RSN_PREAUTH=y"
|
"CONFIG_RSN_PREAUTH=y"
|
||||||
|
"CONFIG_UBUS=y"
|
||||||
"CONFIG_TLS=internal"
|
"CONFIG_TLS=internal"
|
||||||
];
|
];
|
||||||
h = prev.hostapd.overrideAttrs(o: {
|
h = prev.hostapd.overrideAttrs(o: {
|
||||||
|
buildInputs = o.buildInputs ++ [ final.libubox final.ubus ];
|
||||||
|
src = final.fetchFromGitea {
|
||||||
|
domain = "git.dgnum.eu";
|
||||||
|
owner = "DGNum";
|
||||||
|
repo = "hostapd";
|
||||||
|
rev = "hostap-liminix-integration";
|
||||||
|
hash = "sha256-qoCXx3raXCD51YX5izj30VG/HMgr6lv/288Yg9I4S7M=";
|
||||||
|
};
|
||||||
extraConfig = "";
|
extraConfig = "";
|
||||||
configurePhase = ''
|
configurePhase = ''
|
||||||
cat > hostapd/defconfig <<EOF
|
cat > hostapd/defconfig <<EOF
|
||||||
|
|
Loading…
Reference in a new issue