Jeff Johnson wrote:
> The following packages are in Red Hat PowerTools 6.1 and later:
>
> ax25-apps-0.0.4-1.src.rpm
> ax25-tools-0.0.5-1.src.rpm
> libax25-0.0.7-1.src.rpm
It's nice that you provide these libs/apps, and also nice that you
provide them compiled for sparc, but that doesn't help terribly since
the sparc kernel (config) does not allow you to compile ax25.
The attached patch (against the 2.2.13 kernel) makes those AX25 portions
that are hardware independent (i.e. protocols (ax25, netrom, rose) and
line disciplines (mkiss, 6pack)) selectable for compilation on sparc.
ax25 and mkiss work fine on my SS2.
Tom
--- arch/sparc/config.in.orig Tue Dec 28 13:55:18 1999
+++ arch/sparc/config.in Tue Dec 28 14:07:15 1999
@@ -103,6 +103,25 @@
if [ "$CONFIG_NET" = "y" ]; then
source net/Config.in
+ mainmenu_option next_comment
+ comment 'Amateur Radio support'
+ bool 'Amateur Radio support' CONFIG_HAMRADIO
+ if [ "$CONFIG_HAMRADIO" != "n" ] ; then
+ comment 'Packet Radio protocols'
+ tristate 'Amateur Radio AX.25 Level 2 protocol' CONFIG_AX25
+ if [ "$CONFIG_AX25" != "n" ]; then
+ bool ' AX.25 DAMA Slave support' CONFIG_AX25_DAMA_SLAVE
+# bool ' AX.25 DAMA Master support' CONFIG_AX25_DAMA_MASTER
+ dep_tristate ' Amateur Radio NET/ROM protocol' CONFIG_NETROM
+$CONFIG_AX25
+ dep_tristate ' Amateur Radio X.25 PLP (Rose)' CONFIG_ROSE
+$CONFIG_AX25
+ fi
+ fi
+ if [ "$CONFIG_AX25" != "n" ]; then
+ comment 'AX.25 network device drivers'
+ dep_tristate 'Serial port KISS driver' CONFIG_MKISS $CONFIG_AX25
+ dep_tristate 'Serial port 6PACK driver' CONFIG_6PACK $CONFIG_AX25
+ fi
+ endmenu
fi
mainmenu_option next_comment