Re: DVSwitch-System-Builder


Steve N4IRS
 

I remember seeing this on the MMDVM list. Thanks, I'll look into it.
It's interesting that you are not getting the recommended packages.
If you can, please check /etc/apt/apt.conf.d
I'm looking for something like:

root@armbian:/etc/apt/apt.conf.d# cat 71-no-recommends
APT::Install-Recommends "0";
APT::Install-Suggests "0";

It may be in a different file in the same directory structure. I will spin up a fresh Debian 9 32 bit and check it.
"apt-get install quantar" recommends dvswitch-base, mmdvm-bridge, p25gateway, p25parrot, quantar-bridge
Which installs those packages. I may switch it to required when I rebuild the apt packages (soon)

Thanks, Steve


On 1/22/2019 9:56 AM, erniepratt@... wrote:

Im am running.
Debian 9 stretch 32 bit and Ubuntu 18.4.1 lts 64 bit

I am using a DVMega Blue Stack connected to my Debian 9 system running MMDVMHost . I changed YSFControl.cpp, this allows traffic to pass both ways from Wires-x.
This may not work  with MMDVM_Bridge.  I'm no programmer I just know enough to tinker. But its looks the same problem.
Original.
// Stop repeater packets coming through, unless we're acting as a remote gateway
if (m_remoteGateway) {
unsigned char mr = m_lastFICH.getMR();
if (mr != YSF_MR_BUSY)
return false;
} else {
unsigned char mr = m_lastFICH.getMR();
if (mr == YSF_MR_BUSY)
return false;
}
Changed.
// Stop repeater packets coming through, unless we're acting as a remote gateway
if (m_remoteGateway) {
unsigned char mr = m_lastFICH.getMR();
if (mr == YSF_MR_BUSY)
return false;
} else {
unsigned char mr = m_lastFICH.getMR();
if (mr != YSF_MR_BUSY)
return false;
}

Under [SYSTEM FUSION ]
RemoteGateway=1

Join {main@DVSwitch.groups.io to automatically receive all group messages.