diff options
| author | Nicolas Thill <nico@openwrt.org> | 2007-08-25 14:43:15 +0000 |
|---|---|---|
| committer | Nicolas Thill <nico@openwrt.org> | 2007-08-25 14:43:15 +0000 |
| commit | 655a446b17a93d7ba12c85bb4a29d160cd940c69 (patch) | |
| tree | 148f6219390fb9cf728d5479b26c7df7e3d37887 | |
| parent | 7ab328b133d77b2fd4b77b34d7f5561cae794af2 (diff) | |
| download | upstream-655a446b17a93d7ba12c85bb4a29d160cd940c69.tar.gz upstream-655a446b17a93d7ba12c85bb4a29d160cd940c69.tar.bz2 upstream-655a446b17a93d7ba12c85bb4a29d160cd940c69.zip | |
add support for KernelPackage/*/description
SVN-Revision: 8484
| -rw-r--r-- | include/kernel.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/kernel.mk b/include/kernel.mk index df859a42b03..7f035c7bc52 100644 --- a/include/kernel.mk +++ b/include/kernel.mk @@ -99,6 +99,12 @@ define KernelPackage $(call KernelPackage/$(1)/$(BOARD)-$(KERNEL)) endef + ifdef KernelPackage/$(1)/description + define Package/kmod-$(1)/description +$(call KernelPackage/$(1)/description) + endef + endif + ifneq ($(if $(KCONFIG),$(filter m,$(foreach c,$(filter-out %=y %=n %=m,$(KCONFIG)),$($(c)))),.),) ifneq ($(strip $(FILES)),) define Package/kmod-$(1)/install |
