diff options
author | Nicolas Thill <nico@openwrt.org> | 2007-09-07 08:34:51 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2007-09-07 08:34:51 +0000 |
commit | 2180fa92a1158fe8f660b3a69a8f9848309ce9b6 (patch) | |
tree | 0f9b6c1a366e3cdca242f1fbebe68337d21e3b7b /package/wlcompat | |
parent | f2b24749083122a565ebf96a9143cb763d17345e (diff) | |
download | upstream-2180fa92a1158fe8f660b3a69a8f9848309ce9b6.tar.gz upstream-2180fa92a1158fe8f660b3a69a8f9848309ce9b6.tar.bz2 upstream-2180fa92a1158fe8f660b3a69a8f9848309ce9b6.zip |
move package description to a separate definition, remove it when DESCRIPTION=TITLE
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8659 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/wlcompat')
-rw-r--r-- | package/wlcompat/Makefile | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/package/wlcompat/Makefile b/package/wlcompat/Makefile index 78e3c0fcfd..482ec4a2d2 100644 --- a/package/wlcompat/Makefile +++ b/package/wlcompat/Makefile @@ -19,26 +19,34 @@ define KernelPackage/wlcompat/Default SUBMENUDEP:=@TARGET_BRCM_2_4 DEPENDS:=@TARGET_BRCM_2_4 @PACKAGE_kmod-brcm-wl||PACKAGE_kmod-brcm-wl-mimo +wireless-tools TITLE:=Broadcom wl wrapper module - DESCRIPTION:=\ - This package contains a wrapper module, that provides Wireless Extension \\\ - support for the proprietary Broadcom wl module. +endef + +define KernelPackage/wlcompat/Default/description + This package contains a wrapper module, that provides Wireless Extension + support for the proprietary Broadcom wl module. endef define KernelPackage/wlcompat - $(call KernelPackage/wlcompat/Default) +$(call KernelPackage/wlcompat/Default) FILES:=$(PKG_BUILD_DIR)/wlcompat.o AUTOLOAD:=$(call AutoLoad,50,wlcompat) endef +define KernelPackage/wlcompat/description +$(call KernelPackage/wlcompat/Default/description) +endef + define KernelPackage/wlcompat-debug - $(call KernelPackage/wlcompat/Default) +$(call KernelPackage/wlcompat/Default) TITLE+= (debug) - DESCRIPTION+=\\\ - \\\ - This is a debugging version. FILES:=$(PKG_BUILD_DIR)/wlcompat-debug.o endef +define KernelPackage/wlcompat-debug/description +$(call KernelPackage/wlcompat/Default/description) + This is a debugging version. +endef + define Build/Prepare mkdir -p $(PKG_BUILD_DIR) $(CP) ./src/* $(PKG_BUILD_DIR)/ |