android系統預製app/bin/.so檔案及資料夾

慢慢的燃燒發表於2017-03-30

1、extern/test/test.mk

 //拷貝單個檔案: 拷貝external/test/iwconfig到system/bin/iwconfig,名字為iwconfig                    

 PRODUCT_COPY_FILES += \

         external/test/iwconfig:system/bin/iwconfig \

         external/test/iwlist:system/bin/iwlist \

 

 //拷貝目錄下所有檔案: 拷貝extern/test/file_test/下檔案到system/etc/file_test的目錄

 testfile := $(shellls $(LOCAL_PATH)/file_test)

 PRODUCT_COPY_FILES += \

         $(foreachfile, $(testfile), $(LOCAL_PATH)/file_test/$(file):system/etc/file_test/$(file))


2、device/rockchip/common/device.mk裡呼叫 test.mk

  $(callinherit-product-if-exists, external/test/test.mk)

相關文章