mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-02-13 10:41:55 +02:00
don't try to create kmod packages that contain no files
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4278 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
b03a57d41e
commit
aaa058cf5c
@ -72,12 +72,14 @@ define KernelPackage
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
ifeq ($(findstring m,$(KCONFIG)),m)
|
ifeq ($(findstring m,$(KCONFIG)),m)
|
||||||
|
ifneq ($(strip $(FILES)),)
|
||||||
define Package/kmod-$(1)/install
|
define Package/kmod-$(1)/install
|
||||||
mkdir -p $$(1)/lib/modules/$(LINUX_VERSION)
|
mkdir -p $$(1)/lib/modules/$(LINUX_VERSION)
|
||||||
$(CP) $$(FILES) $$(1)/lib/modules/$(LINUX_VERSION)/
|
$(CP) $$(FILES) $$(1)/lib/modules/$(LINUX_VERSION)/
|
||||||
$(call ModuleAutoLoad,$(1),$$(1),$(AUTOLOAD))
|
$(call ModuleAutoLoad,$(1),$$(1),$(AUTOLOAD))
|
||||||
endef
|
endef
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
$$(eval $$(call BuildPackage,kmod-$(1)))
|
$$(eval $$(call BuildPackage,kmod-$(1)))
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user