Fix private modules installing path
authorHongguang <hgchen@google.com>
Tue, 24 May 2022 02:17:51 +0000 (19:17 -0700)
committerHongguang <hgchen@google.com>
Tue, 24 May 2022 02:17:51 +0000 (19:17 -0700)
Bug: 220644706
Test: make and find the private modules in dist.
Change-Id: I83004e21f5d2a4f80256f2c660b4dd15fcaa6dc6

bcmdhd.100.10.315.x/Makefile
bcmdhd.101.10.240.x/Makefile

index 78a7ae5fd9832da665bfa553b127387e62fa0993..a3d819c80232244f2ee1d5f7a37dcd86a3ef7ca1 100644 (file)
@@ -249,8 +249,8 @@ all: bcmdhd_sdio
 EXTRA_CFLAGS += -I$(KERNEL_SRC)/$(M)/include -I$(KERNEL_SRC)/$(M)/
 modules_install:
        @$(MAKE) INSTALL_MOD_STRIP=1 M=$(M) -C $(KERNEL_SRC) modules_install
-       mkdir -p ${OUT_DIR}/private/modules
-       cd ${OUT_DIR}/$(M)/; find -name "*.ko" -exec cp {} ${OUT_DIR}/private/modules/ \;
+       mkdir -p ${OUT_DIR}/../private/modules
+       cd ${OUT_DIR}/$(M)/; find -name "*.ko" -exec cp {} ${OUT_DIR}/../private/modules/ \;
 
 clean:
        $(MAKE) -C $(KERNEL_SRC) M=$(M) clean $(KBUILD_OPTIONS)
index 9b15cad7db9b736126bc6a7404669b54e65bb288..56557f8ad8f354d28b08b12e4db41d1ca3fb4338 100644 (file)
@@ -244,8 +244,8 @@ all: bcmdhd_sdio
 EXTRA_CFLAGS += -I$(KERNEL_SRC)/$(M)/include -I$(KERNEL_SRC)/$(M)/
 modules_install:
        @$(MAKE) INSTALL_MOD_STRIP=1 M=$(M) -C $(KERNEL_SRC) modules_install
-       mkdir -p ${OUT_DIR}/private/modules
-       cd ${OUT_DIR}/$(M)/; find -name "*.ko" -exec cp {} ${OUT_DIR}/private/modules/ \;
+       mkdir -p ${OUT_DIR}/../private/modules
+       cd ${OUT_DIR}/$(M)/; find -name "*.ko" -exec cp {} ${OUT_DIR}/../private/modules/ \;
 
 clean:
        $(MAKE) -C $(KERNEL_SRC) M=$(M) clean $(KBUILD_OPTIONS)