Jack Snedecor wrote:

> I have successfully compile the kernel with (built - in) SCC drivers.  In
> following the AX25 how-to, it is suppose to create /dev/ssc0-7, but they
> are
> not found.  Nor do I find the utils mentioned.
>
> Does anyone have more up to date instructions?  Or maybe an RPM file with
> the utils, drivers and devices?
>
> Any help would be appreciated!

The old Make file contained the following:

install:
. . .
DEVNAME=scc
MAJOR=34
for d in 0 1 2 3 4 5 6 7 ; do
    rm -f /dev/${DEVNAME}$$d ;
    mknod /dev/${DEVNAME}$$d c ${MAJOR} $$d ;
done

which will create scc0-scc7 when you install the rest of the binaries.

You only need as many sccX as you have ports.  Make them manually with
    mknod /dev/sccX c 34 X
where X is 0, 1, 2 . . . as needed.

>

73 de K6HS

--
######################################
#  Harry L. Styron, Attorney at Law  #
# 1-925-932-4300  Fax 1-925-944-0591 #
#   "The devil is in the details."   #
######################################


Reply via email to