mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-trx.git
synced 2025-11-02 13:13:17 +00:00
This adds a IPC backend that uses shared memory interface to communicate with (proprietary) devices. Requires config file option dev-args ipc_msock=/path/to/socket to specify the master socket the ipc backend should connect to. If UHD is avaialble the ipc-driver-test tool can be used to test the backend with a uhd device, this was so far only tested with a b2xx. Change-Id: Ice63d3499026293ade8aad675ff7a883bcdd5756
28 lines
470 B
Makefile
28 lines
470 B
Makefile
EXTRA_DIST = \
|
|
osmo-trx-lms.service \
|
|
osmo-trx-uhd.service \
|
|
osmo-trx-usrp1.service \
|
|
osmo-trx-ipc.service
|
|
|
|
if HAVE_SYSTEMD
|
|
SYSTEMD_SERVICES =
|
|
|
|
if DEVICE_UHD
|
|
SYSTEMD_SERVICES += osmo-trx-uhd.service
|
|
endif
|
|
|
|
if DEVICE_USRP1
|
|
SYSTEMD_SERVICES += osmo-trx-usrp1.service
|
|
endif
|
|
|
|
if DEVICE_LMS
|
|
SYSTEMD_SERVICES += osmo-trx-lms.service
|
|
endif
|
|
|
|
if DEVICE_IPC
|
|
SYSTEMD_SERVICES += osmo-trx-ipc.service
|
|
endif
|
|
|
|
systemdsystemunit_DATA = $(SYSTEMD_SERVICES)
|
|
endif # HAVE_SYSTEMD
|