mirror of https://github.com/hak5/openwrt-owl.git
parent
3881fcbbe0
commit
1e6f674088
|
@ -130,6 +130,14 @@ config BR2_PACKAGE_KMOD_IPTABLES_V4
|
||||||
help
|
help
|
||||||
Kernel modules for IPv4 firewalling
|
Kernel modules for IPv4 firewalling
|
||||||
|
|
||||||
|
config BR2_PACKAGE_KMOD_AX25
|
||||||
|
tristate "AX25 support"
|
||||||
|
default m
|
||||||
|
help
|
||||||
|
Kernel modules for AX25 protocol family
|
||||||
|
- ax25.o: AX25 layer 2 support
|
||||||
|
- mkiss.o: AX25 KISS driver
|
||||||
|
|
||||||
config BR2_PACKAGE_KMOD_IPTABLES_V4_EXTRA
|
config BR2_PACKAGE_KMOD_IPTABLES_V4_EXTRA
|
||||||
tristate "Extra modules for iptables"
|
tristate "Extra modules for iptables"
|
||||||
default m
|
default m
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
Package: kmod-ax25
|
||||||
|
Priority: optional
|
||||||
|
Section: net
|
||||||
|
Maintainer: Michael Conrad <openwrt@friggleware.net>
|
||||||
|
Source: buildroot internal
|
||||||
|
Description: Kernel AX25 driver
|
|
@ -193,6 +193,10 @@ $(eval $(call KMOD_template,VIDEODEV,videodev,\
|
||||||
$(eval $(call KMOD_template,PWC,pwc,\
|
$(eval $(call KMOD_template,PWC,pwc,\
|
||||||
$(MODULES_DIR)/kernel/drivers/usb/pwc.o \
|
$(MODULES_DIR)/kernel/drivers/usb/pwc.o \
|
||||||
,CONFIG_USB_PWC))
|
,CONFIG_USB_PWC))
|
||||||
|
$(eval $(call KMOD_template,AX25,ax25,\
|
||||||
|
$(MODULES_DIR)/kernel/net/ax25/ax25.o \
|
||||||
|
$(MODULES_DIR)/kernel/drivers/net/hamradio/mkiss.o \
|
||||||
|
,CONFIG_AX25))
|
||||||
|
|
||||||
$(TARGETS): $(PACKAGE_DIR)
|
$(TARGETS): $(PACKAGE_DIR)
|
||||||
|
|
||||||
|
|
|
@ -849,7 +849,30 @@ CONFIG_SHAPER=m
|
||||||
#
|
#
|
||||||
# Amateur Radio support
|
# Amateur Radio support
|
||||||
#
|
#
|
||||||
# CONFIG_HAMRADIO is not set
|
#
|
||||||
|
# Amateur Radio support
|
||||||
|
#
|
||||||
|
CONFIG_HAMRADIO=y
|
||||||
|
CONFIG_AX25=m
|
||||||
|
# CONFIG_AX25_DAMA_SLAVE is not set
|
||||||
|
# CONFIG_NETROM is not set
|
||||||
|
# CONFIG_ROSE is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# AX.25 network device drivers
|
||||||
|
#
|
||||||
|
CONFIG_MKISS=m
|
||||||
|
# CONFIG_6PACK is not set
|
||||||
|
# CONFIG_BPQETHER is not set
|
||||||
|
# CONFIG_DMASCC is not set
|
||||||
|
# CONFIG_SCC is not set
|
||||||
|
# CONFIG_BAYCOM_SER_FDX is not set
|
||||||
|
# CONFIG_BAYCOM_SER_HDX is not set
|
||||||
|
# CONFIG_BAYCOM_PAR is not set
|
||||||
|
# CONFIG_BAYCOM_EPP is not set
|
||||||
|
# CONFIG_SOUNDMODEM is not set
|
||||||
|
# CONFIG_YAM is not set
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# IrDA (infrared) support
|
# IrDA (infrared) support
|
||||||
|
|
|
@ -807,7 +807,27 @@ CONFIG_NET_PCMCIA=y
|
||||||
#
|
#
|
||||||
# Amateur Radio support
|
# Amateur Radio support
|
||||||
#
|
#
|
||||||
# CONFIG_HAMRADIO is not set
|
CONFIG_HAMRADIO=y
|
||||||
|
CONFIG_AX25=m
|
||||||
|
# CONFIG_AX25_DAMA_SLAVE is not set
|
||||||
|
# CONFIG_NETROM is not set
|
||||||
|
# CONFIG_ROSE is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# AX.25 network device drivers
|
||||||
|
#
|
||||||
|
CONFIG_MKISS=m
|
||||||
|
# CONFIG_6PACK is not set
|
||||||
|
# CONFIG_BPQETHER is not set
|
||||||
|
# CONFIG_DMASCC is not set
|
||||||
|
# CONFIG_SCC is not set
|
||||||
|
# CONFIG_BAYCOM_SER_FDX is not set
|
||||||
|
# CONFIG_BAYCOM_SER_HDX is not set
|
||||||
|
# CONFIG_BAYCOM_PAR is not set
|
||||||
|
# CONFIG_BAYCOM_EPP is not set
|
||||||
|
# CONFIG_SOUNDMODEM is not set
|
||||||
|
# CONFIG_YAM is not set
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# IrDA (infrared) support
|
# IrDA (infrared) support
|
||||||
|
|
Loading…
Reference in New Issue