mirror of https://github.com/hak5/openwrt-owl.git
parent
4c776cf093
commit
c272d54969
|
@ -43,6 +43,29 @@ endef
|
|||
$(eval $(call KernelPackage,atmtcp))
|
||||
|
||||
|
||||
define KernelPackage/appletalk
|
||||
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
||||
TITLE:=Appletalk protocol support
|
||||
DEPENDS:=@LINUX_2_6
|
||||
KCONFIG:= \
|
||||
CONFIG_ATALK \
|
||||
CONFIG_DEV_APPLETALK \
|
||||
CONFIG_IPDDP \
|
||||
CONFIG_IPDDP_ENCAP=y \
|
||||
CONFIG_IPDDP_DECAP=y
|
||||
FILES:= \
|
||||
$(LINUX_DIR)/net/appletalk/appletalk.$(LINUX_KMOD_SUFFIX) \
|
||||
$(LINUX_DIR)/drivers/net/appletalk/ipddp.$(LINUX_KMOD_SUFFIX)
|
||||
AUTOLOAD:=$(call AutoLoad,40,appletalk ipddp)
|
||||
endef
|
||||
|
||||
define KernelPackage/appletalk/description
|
||||
Kernel module for AppleTalk protocol.
|
||||
endef
|
||||
|
||||
$(eval $(call KernelPackage,appletalk))
|
||||
|
||||
|
||||
define KernelPackage/bonding
|
||||
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
||||
TITLE:=Ethernet bonding driver
|
||||
|
|
|
@ -785,6 +785,24 @@ endef
|
|||
$(eval $(call KernelPackage,cs5535-gpio))
|
||||
|
||||
|
||||
define KernelPackage/ixp4xx-beeper
|
||||
SUBMENU:=$(OTHER_MENU)
|
||||
TITLE:=IXP4XX Beeper support
|
||||
DEPENDS:=@TARGET_ixp4xx +kmod-input-core
|
||||
KCONFIG:= \
|
||||
CONFIG_INPUT_MISC=y \
|
||||
CONFIG_INPUT_IXP4XX_BEEPER
|
||||
FILES:=$(LINUX_DIR)/drivers/input/misc/ixp4xx-beeper.$(LINUX_KMOD_SUFFIX)
|
||||
AUTOLOAD:=$(call AutoLoad,50,ixp4xx-beeper)
|
||||
endef
|
||||
|
||||
define KernelPackage/ixp4xx-beeper/description
|
||||
IXP4XX Beeper support
|
||||
endef
|
||||
|
||||
$(eval $(call KernelPackage,ixp4xx-beeper))
|
||||
|
||||
|
||||
define KernelPackage/textsearch
|
||||
SUBMENU:=$(OTHER_MENU)
|
||||
TITLE:=Textsearch support is selected if needed
|
||||
|
|
Loading…
Reference in New Issue