Private modules should be installed into private
authorHongguang <hgchen@google.com>
Mon, 23 May 2022 23:15:47 +0000 (16:15 -0700)
committerHongguang <hgchen@google.com>
Mon, 23 May 2022 23:15:47 +0000 (16:15 -0700)
Bug: 220644706
Test: make and find the private modules in dist.
Change-Id: I920715ccdb4d39c11a9ca74e2d97096babbc7ffe

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

index 60837c3c55375e2d55e0a0aea931ab27275ffd16..78a7ae5fd9832da665bfa553b127387e62fa0993 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}/../vendor_lib/modules
-       cd ${OUT_DIR}/$(M)/; find -name "*.ko" -exec cp {} ${OUT_DIR}/../vendor_lib/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 8177ba71b6d9bbfbce660d555564e2858575765b..9b15cad7db9b736126bc6a7404669b54e65bb288 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}/../vendor_lib/modules
-       cd ${OUT_DIR}/$(M)/; find -name "*.ko" -exec cp {} ${OUT_DIR}/../vendor_lib/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)