move package descriptions to separate definitions
SVN-Revision: 8745
This commit is contained in:
parent
7b30c695dd
commit
c65310746f
1 changed files with 8 additions and 2 deletions
|
@ -11,12 +11,15 @@ EMENU:=Other modules
|
||||||
define KernelPackage/crc-itu-t
|
define KernelPackage/crc-itu-t
|
||||||
SUBMENU:=$(EMENU)
|
SUBMENU:=$(EMENU)
|
||||||
TITLE:=CRC ITU-T V.41 support
|
TITLE:=CRC ITU-T V.41 support
|
||||||
DESCRIPTION:=Kernel module for CRC ITU-T V.41 support
|
|
||||||
KCONFIG:=CONFIG_CRC_ITU_T
|
KCONFIG:=CONFIG_CRC_ITU_T
|
||||||
FILES:=$(LINUX_DIR)/lib/crc-itu-t.$(LINUX_KMOD_SUFFIX)
|
FILES:=$(LINUX_DIR)/lib/crc-itu-t.$(LINUX_KMOD_SUFFIX)
|
||||||
AUTOLOAD:=$(call AutoLoad,20,crc-itu-t)
|
AUTOLOAD:=$(call AutoLoad,20,crc-itu-t)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/crc-itu-t/description
|
||||||
|
Kernel module for CRC ITU-T V.41 support
|
||||||
|
endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,crc-itu-t))
|
$(eval $(call KernelPackage,crc-itu-t))
|
||||||
|
|
||||||
|
|
||||||
|
@ -58,13 +61,16 @@ $(eval $(call KernelPackage,crypto))
|
||||||
define KernelPackage/eeprom-93cx6
|
define KernelPackage/eeprom-93cx6
|
||||||
SUBMENU:=$(EMENU)
|
SUBMENU:=$(EMENU)
|
||||||
TITLE:=EEPROM 93CX6 support
|
TITLE:=EEPROM 93CX6 support
|
||||||
DESCRIPTION:=Kernel module for EEPROM 93CX6 support
|
|
||||||
DEPENDS:=@LINUX_2_6
|
DEPENDS:=@LINUX_2_6
|
||||||
KCONFIG:=CONFIG_EEPROM_93CX6
|
KCONFIG:=CONFIG_EEPROM_93CX6
|
||||||
FILES:=$(LINUX_DIR)/drivers/misc/eeprom_93cx6.$(LINUX_KMOD_SUFFIX)
|
FILES:=$(LINUX_DIR)/drivers/misc/eeprom_93cx6.$(LINUX_KMOD_SUFFIX)
|
||||||
AUTOLOAD:=$(call AutoLoad,20,eeprom_93cx6)
|
AUTOLOAD:=$(call AutoLoad,20,eeprom_93cx6)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/eeprom-93cx6/description
|
||||||
|
Kernel module for EEPROM 93CX6 support
|
||||||
|
endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,eeprom-93cx6))
|
$(eval $(call KernelPackage,eeprom-93cx6))
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue