From: Jose V Beneyto Date: Mon, 15 Oct 2012 17:43:57 +0000 (+0000) Subject: Added code to package kernel modules X-Git-Url: http://gitweb/?a=commitdiff_plain;h=eef3f94a918ec35d777726deea2aa801e3f7c38f;p=kernel%2Fefikamx.git Added code to package kernel modules --- diff --git a/Makefile b/Makefile index f05f578..7ba9ee6 100644 --- a/Makefile +++ b/Makefile @@ -52,10 +52,15 @@ $(WORK)/modules-$(KERNEL_VERSION): $(WORK)/linux-$(KERNEL_VERSION) rm -f $(WORK)/modules-$(KERNEL_VERSION)/lib/modules/$(KERNEL_VERSION)/{source,build} touch $(WORK)/modules-$(KERNEL_VERSION) -modules: $(WORK)/modules-$(KERNEL_VERSION) +$(WORK)/modules-$(KERNEL_VERSION).tar.xz: $(WORK)/modules-$(KERNEL_VERSION) + cd $(WORK) && \ + tar cvJf modules-$(KERNEL_VERSION).tar.xz modules-$(KERNEL_VERSION) + touch $(WORK)/modules-$(KERNEL_VERSION).tar.xz + +modules: $(WORK)/modules-$(KERNEL_VERSION).tar.xz modules-clean: - rm -vrf $(WORK)/modules-$(KERNEL_VERSION) + rm -vrf $(WORK)/modules-$(KERNEL_VERSION) $(WORK)/modules-$(KERNEL_VERSION).tar.xz modules-distclean: modules-clean