diff options
| author | Sander Vanheule | 2025-01-02 08:31:44 +0000 |
|---|---|---|
| committer | Sander Vanheule | 2025-01-02 08:46:10 +0000 |
| commit | d5f01971f728c6eb9ec7745c0040bd673c824add (patch) | |
| tree | 2a78d9e2a7d6d7fcbe68df4a5834919047dbbd9f | |
| parent | 36f7db978a5fd2f84d3351a2e4148106cb1af282 (diff) | |
| download | openwrt-d5f01971f728c6eb9ec7745c0040bd673c824add.tar.gz | |
realtek: drop extraneous ')' in 02_network
The extraneous closing parenthesis inside the case matching breaks
syntax of the network initialization script 02_network.
/bin/board_detect: /etc/board.d/02_network:
line 40: syntax error: unexpected newline (expecting ")")
Remove this character so board init is functional again.
Fixes: c8ea1aa970bf ("realtek: add support for HPE 1920-24G-PoE-370w")
Signed-off-by: Sander Vanheule <sander@svanheule.net>
(cherry picked from commit a3391d871d3f14f5de2081e23eda08986abc2b9b)
| -rw-r--r-- | target/linux/realtek/base-files/etc/board.d/02_network | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/realtek/base-files/etc/board.d/02_network b/target/linux/realtek/base-files/etc/board.d/02_network index a73944107a..12fb33d85e 100644 --- a/target/linux/realtek/base-files/etc/board.d/02_network +++ b/target/linux/realtek/base-files/etc/board.d/02_network @@ -36,7 +36,7 @@ hpe,1920-8g-poe-65w|\ hpe,1920-8g-poe-180w|\ hpe,1920-16g|\ hpe,1920-24g|\ -hpe,1920-24g-poe-370w|\) +hpe,1920-24g-poe-370w|\ hpe,1920-48g|\ hpe,1920-48g-poe) label_mac=$(mtd_get_mac_binary factory 0x68) |