diff options
author | Sander Vanheule <sander@svanheule.net> | 2024-01-24 11:20:08 +0100 |
---|---|---|
committer | Sander Vanheule <sander@svanheule.net> | 2024-02-12 20:46:51 +0100 |
commit | 6f83a708c8f1df14da9a24609d32bd7263d1798b (patch) | |
tree | d13bf4d649b29e1ccdf81264347008649f79d658 /package/base-files | |
parent | 7cbfe5654d6eeda211edb0fd6938177cbe32c5e0 (diff) |
base-files: move uci_set_poe() to uci-defaults.sh
PoE devices in the realtek target have the possibility to add PSE info
to the board description via 02_network. Make this available for all
targets, by moving the uci_set_poe() function to the globally available
uci-default.sh script.
Signed-off-by: Sander Vanheule <sander@svanheule.net>
Diffstat (limited to 'package/base-files')
-rw-r--r-- | package/base-files/files/lib/functions/uci-defaults.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/base-files/files/lib/functions/uci-defaults.sh b/package/base-files/files/lib/functions/uci-defaults.sh index a75bd11652..b89cc8e9e3 100644 --- a/package/base-files/files/lib/functions/uci-defaults.sh +++ b/package/base-files/files/lib/functions/uci-defaults.sh @@ -654,6 +654,17 @@ ucidef_set_ntpserver() { json_select .. } +ucidef_set_poe() { + json_select_object poe + json_add_string "budget" "$1" + json_select_array ports + for port in $2; do + json_add_string "" "$port" + done + json_select .. + json_select .. +} + ucidef_add_wlan() { local path="$1"; shift |