Commit
c50937d6371a7b203a52ec6c2daf52fe443f398f
by Vadim Yanitskiyfixup: bts: create all components alive
Making the ConnHdlr and lapdm_CT components alive resulted in
massive regressions. Specifically, trxcon started rejecting L1CTL
connections with the following message:
L1CTL server cannot accept more than 1 connection(s)
Apparently, alive components do not close the L1CTL connection
automatially, unless the L1CTL port is unmap()ped from the system
explicitly. Thus, testcases spawning multiple alive components
end up creating multiple L1CTL connections, which get rejected.
Let's revert those components that speak L1CTL back to normal
(non-alive), while keeping the emulation components alive.
Change-Id: Id5edfa2514024d1fe83f6c4082e096044ce8e6fd
Fixes: 713e7a86 ("bts: create all components alive")