netstart(8) lost bridge specific functionality in 2009.
$ grep bridge /etc/netstart
# interfaces (or bridges), add default routes and return.
This is dead unreached code.
OK?
Index: install.sub
===================================================================
RCS file: /cvs/src/distrib/miniroot/install.sub,v
retrieving revision 1.1202
diff -u -p -r1.1202 install.sub
--- install.sub 28 Jun 2022 12:10:08 -0000 1.1202
+++ install.sub 25 Jul 2022 23:50:30 -0000
@@ -2420,8 +2420,8 @@ parse_hn_line() {
_cmds[${#_cmds[*]}]="ifconfig $_if inet autoconf"
V4_AUTOCONF=true
;;
- '!'*|bridge)
- # Skip shell commands and bridge in the installer.
+ '!'*)
+ # Skip shell commands in the installer.
return
;;
*) _cmds[${#_cmds[*]}]="ifconfig $_if ${_c[@]}"