Do not disable factory build under PDK
This is related to commit a1712e. Some PDKs need the factory build under PDK. If you want to disable the factory build under PDK, use TARGET_NO_FACTORY in your device's BoardConfig.mk Change-Id: I5e208836918ffd737951d3fb1f54c560d2b93641
This commit is contained in:
parent
d76ff19a0f
commit
60b9efc060
|
@ -16,6 +16,9 @@
|
|||
|
||||
ifeq (,$(ONE_SHOT_MAKEFILE))
|
||||
ifneq ($(TARGET_BUILD_PDK),true)
|
||||
TARGET_BUILD_FACTORY=true
|
||||
endif
|
||||
ifeq ($(TARGET_BUILD_FACTORY),true)
|
||||
|
||||
# PRODUCT_FACTORY_RAMDISK_MODULES consists of "<module_name>:<install_path>[:<install_path>...]" tuples.
|
||||
# <install_path> is relative to the staging directory for the bundle.
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
|
||||
ifeq (,$(ONE_SHOT_MAKEFILE))
|
||||
ifneq ($(TARGET_BUILD_PDK),true)
|
||||
TARGET_BUILD_FACTORY=true
|
||||
endif
|
||||
ifeq ($(TARGET_BUILD_FACTORY),true)
|
||||
|
||||
# PRODUCT_FACTORY_RAMDISK_MODULES consists of "<module_name>:<install_path>[:<install_path>...]" tuples.
|
||||
# <install_path> is relative to TARGET_FACTORY_RAMDISK_OUT.
|
||||
|
|
Loading…
Reference in New Issue