From: nico Date: Tue, 11 Sep 2007 13:29:53 +0000 (+0000) Subject: move package descriptions to separate definitions X-Git-Url: http://git.rohieb.name/openwrt.git/commitdiff_plain/4159f224db26b75007dac0d3238b1df19c6556c8 move package descriptions to separate definitions git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8745 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/kernel/modules/other.mk b/package/kernel/modules/other.mk index 781a05187..0cd869dac 100644 --- a/package/kernel/modules/other.mk +++ b/package/kernel/modules/other.mk @@ -11,12 +11,15 @@ EMENU:=Other modules define KernelPackage/crc-itu-t SUBMENU:=$(EMENU) TITLE:=CRC ITU-T V.41 support - DESCRIPTION:=Kernel module for CRC ITU-T V.41 support KCONFIG:=CONFIG_CRC_ITU_T FILES:=$(LINUX_DIR)/lib/crc-itu-t.$(LINUX_KMOD_SUFFIX) AUTOLOAD:=$(call AutoLoad,20,crc-itu-t) endef +define KernelPackage/crc-itu-t/description + Kernel module for CRC ITU-T V.41 support +endef + $(eval $(call KernelPackage,crc-itu-t)) @@ -58,13 +61,16 @@ $(eval $(call KernelPackage,crypto)) define KernelPackage/eeprom-93cx6 SUBMENU:=$(EMENU) TITLE:=EEPROM 93CX6 support - DESCRIPTION:=Kernel module for EEPROM 93CX6 support DEPENDS:=@LINUX_2_6 KCONFIG:=CONFIG_EEPROM_93CX6 FILES:=$(LINUX_DIR)/drivers/misc/eeprom_93cx6.$(LINUX_KMOD_SUFFIX) AUTOLOAD:=$(call AutoLoad,20,eeprom_93cx6) endef +define KernelPackage/eeprom-93cx6/description + Kernel module for EEPROM 93CX6 support +endef + $(eval $(call KernelPackage,eeprom-93cx6))