Operating System - HP-UX
1753439 Members
4781 Online
108794 Solutions
New Discussion юеВ

Problems pci_mux on HP-UX 11.0

 
SOLVED
Go to solution
Armando Carreto
Occasional Contributor

Problems pci_mux on HP-UX 11.0

HP-UX recognice the card fine and diagnostics run o.k. but when I try to setup one port SAM send me the follow message
mkter.sh[184]: a3 : the specified number is not valid for this command
I have already installed PHCO_21187
and the driver is J3593A PCI RS-232 MUX DRIVER
I also tried configured ports by comands but ports sendme wrong caracters
Tanks in Advance

2 REPLIES 2
Patrick Wessel
Honored Contributor
Solution

Re: Problems pci_mux on HP-UX 11.0

The problem is the mkterm.sh

/usr/sam/lbin/mkterm.sh contain:

if [ $port -eq 0 ]

The line should read:

if [ $port = "0" ]

(A string compare as opposed to a numeric compare can work for both string values of ports such as "a4", as well as numeric values of ports such as "4".)

Replacing the former "if" statement with the latter one will solve the problem.
There is no good troubleshooting with bad data
Armando Carreto
Occasional Contributor

Re: Problems pci_mux on HP-UX 11.0

Thanks
The problem was resolved with your information