minimal-manifest-twrp / platform_manifest_twrp_aosp

Minimal manifest for building TWRP for devices shipped with Android 10+
295 stars 267 forks source link

Missing 'vendor/aosp/config/common.mk' #33

Open Jason-summer opened 1 year ago

Jason-summer commented 1 year ago
device/samsung/a60q/device.mk:8: error: _nic.PRODUCTS.[[device/samsung/a60q/omni_a60q.mk]]: "vendor/aosp/config/common.mk" does not exist.
10:37:05 dumpvars failed with: exit status 1
In file included from build/make/core/config.mk:313:
In file included from build/make/core/envsetup.mk:312:

Does anyone know how to fix this problem? I am using the device tree generate by twrpdtgen.😢

iamr0s commented 1 year ago

I have also encountered this problem. Have you found a solution?

iamr0s commented 1 year ago

I solved the problem by replacing aosp with twrp. such as "vendor/aosp/config/common.mk" --> "vendor/twrp/config/common.mk"

OpenIonGroup commented 1 year ago

I also encountered a similar issue, with the prompt 'vendor/omni/common.mk do not found' at the beginning of compilation

May I ask which file statement did you replace to modify

iamr0s commented 1 year ago

I also encountered a similar issue, with the prompt 'vendor/omni/common.mk do not found' at the beginning of compilation

May I ask which file statement did you replace to modify

rename "vendor/omni/common.mk" --> "vendor/twrp/config/common.mk"

Jason-summer commented 1 year ago

I also encountered a similar issue, with the prompt 'vendor/omni/common.mk do not found' at the beginning of compilation May I ask which file statement did you replace to modify

rename "vendor/omni/common.mk" --> "vendor/twrp/config/common.mk"

You're right, I fix it in the same way.