-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update matter-netman to build network manager app from 44afdd2d (#21)
Switch CI to build against OpenWrt 23.05.4
- Loading branch information
1 parent
1b6974c
commit 0428cfc
Showing
5 changed files
with
33 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
CONFIG_ALL=n | ||
CONFIG_PACKAGE_wpad-basic-mbedtls=n | ||
CONFIG_PACKAGE_wpad-basic-openssl=n | ||
CONFIG_PACKAGE_wpad-basic-wolfssl=n | ||
CONFIG_PACKAGE_wpad-openssl=y | ||
CONFIG_PACKAGE_matter-netman=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/sh /etc/rc.common | ||
|
||
START=80 | ||
|
||
USE_PROCD=1 | ||
PROG=/usr/sbin/matter-network-manager-app | ||
|
||
start_service() { | ||
procd_open_instance | ||
procd_set_param command "$PROG" | ||
procd_set_param user matter | ||
procd_set_param group matter | ||
procd_set_param stdout 1 | ||
procd_set_param respawn | ||
procd_close_instance | ||
} |