greybus: build: android: add all greybus modules to the build
authorMichael Scott <michael.scott@linaro.org>
Fri, 23 Jan 2015 00:22:47 +0000 (16:22 -0800)
committerGreg Kroah-Hartman <greg@kroah.com>
Fri, 23 Jan 2015 02:18:06 +0000 (10:18 +0800)
We now have several modules generated by the greybus build.
Let's add any *.ko files we find to the buid.

Signed-off-by: Michael Scott <michael.scott@linaro.org>
Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
drivers/staging/greybus/Android.mk

index 5d96a24..6f13d35 100644 (file)
@@ -29,4 +29,6 @@ build-greybus: android_kernel
        cd $(GREYBUS_SRC_PATH) &&\
        $(MAKE) -j$(MAKE_JOBS) CROSS_COMPILE=$(KERNEL_TOOLS_PREFIX) $(ARGS)
        mkdir -p $(GREYBUS_MODULE_OUT_PATH)
-       cp $(GREYBUS_SRC_PATH)/greybus.ko $(GREYBUS_MODULE_OUT_PATH)
+       ko=`find $$GREYBUS_SRC_PATH -type f -name *.ko`;\
+       for i in $$ko; do $(KERNEL_TOOLCHAIN_PATH)strip --strip-unneeded $$i;\
+       mv $$i $(GREYBUS_MODULE_OUT_PATH)/; done;