forked from openkylin/platform_build
emulator: move rild.libpath to vendor
BUG: 62137708 Test: buld sdk_gphone_x86-user, launch emulator make sure radio works Change-Id: Ib25ae4a1c7f86ef20a45af2f88732067ad95c5f4 Merged-In: I4ef1483a8d95a74b54deb6f0d4b2461c733c8140
This commit is contained in:
parent
179849ade7
commit
4a6cc6a8fc
|
@ -63,4 +63,4 @@ BOARD_FLASH_BLOCK_SIZE := 512
|
|||
TARGET_USERIMAGES_SPARSE_EXT_DISABLED := true
|
||||
|
||||
BOARD_SEPOLICY_DIRS += build/target/board/generic/sepolicy
|
||||
|
||||
BOARD_PROPERTY_OVERRIDES_SPLIT_ENABLED := true
|
||||
|
|
|
@ -2,5 +2,4 @@
|
|||
# system.prop for generic sdk
|
||||
#
|
||||
|
||||
rild.libpath=/system/lib/libreference-ril.so
|
||||
rild.libargs=-d /dev/ttyS0
|
||||
rild.libpath=/vendor/lib/libreference-ril.so
|
||||
|
|
|
@ -93,4 +93,5 @@ BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4
|
|||
BOARD_FLASH_BLOCK_SIZE := 512
|
||||
TARGET_USERIMAGES_SPARSE_EXT_DISABLED := true
|
||||
|
||||
BOARD_PROPERTY_OVERRIDES_SPLIT_ENABLED := true
|
||||
BOARD_SEPOLICY_DIRS += build/target/board/generic/sepolicy
|
||||
|
|
|
@ -2,5 +2,4 @@
|
|||
# system.prop for generic arm64 sdk
|
||||
#
|
||||
|
||||
rild.libpath=/system/lib64/libreference-ril.so
|
||||
rild.libargs=-d /dev/ttyS0
|
||||
rild.libpath=/vendor/lib64/libreference-ril.so
|
||||
|
|
|
@ -43,6 +43,7 @@ TARGET_USERIMAGES_USE_EXT4 := true
|
|||
BOARD_SYSTEMIMAGE_PARTITION_SIZE := 2147483648
|
||||
BOARD_USERDATAIMAGE_PARTITION_SIZE := 576716800
|
||||
TARGET_COPY_OUT_VENDOR := vendor
|
||||
BOARD_PROPERTY_OVERRIDES_SPLIT_ENABLED := true
|
||||
# ~100 MB vendor image. Please adjust system image / vendor image sizes
|
||||
# when finalizing them.
|
||||
BOARD_VENDORIMAGE_PARTITION_SIZE := 100000000
|
||||
|
|
|
@ -2,5 +2,4 @@
|
|||
# system.prop for generic sdk
|
||||
#
|
||||
|
||||
rild.libpath=/system/lib/libreference-ril.so
|
||||
rild.libargs=-d /dev/ttyS0
|
||||
rild.libpath=/vendor/lib/libreference-ril.so
|
||||
|
|
|
@ -54,6 +54,7 @@ BOARD_CACHEIMAGE_PARTITION_SIZE := 69206016
|
|||
BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4
|
||||
BOARD_FLASH_BLOCK_SIZE := 512
|
||||
TARGET_USERIMAGES_SPARSE_EXT_DISABLED := true
|
||||
BOARD_PROPERTY_OVERRIDES_SPLIT_ENABLED := true
|
||||
|
||||
BOARD_SEPOLICY_DIRS += \
|
||||
build/target/board/generic/sepolicy \
|
||||
|
|
|
@ -2,5 +2,4 @@
|
|||
# system.prop for generic sdk
|
||||
#
|
||||
|
||||
rild.libpath=/system/lib64/libreference-ril.so
|
||||
rild.libargs=-d /dev/ttyS0
|
||||
rild.libpath=/vendor/lib64/libreference-ril.so
|
||||
|
|
|
@ -14,6 +14,9 @@
|
|||
# limitations under the License.
|
||||
#
|
||||
|
||||
PRODUCT_PROPERTY_OVERRIDES += \
|
||||
rild.libpath=/vendor/lib64/libreference-ril.so
|
||||
|
||||
# This is a build configuration for a full-featured build of the
|
||||
# Open-Source part of the tree. It's geared toward a US-centric
|
||||
# build quite specifically for the emulator, and might not be
|
||||
|
|
|
@ -14,6 +14,9 @@
|
|||
# limitations under the License.
|
||||
#
|
||||
|
||||
PRODUCT_PROPERTY_OVERRIDES += \
|
||||
rild.libpath=/vendor/lib/libreference-ril.so
|
||||
|
||||
# Note: the following lines need to stay at the beginning so that it can
|
||||
# take priority and override the rules it inherit from other mk files
|
||||
# see copy file rules in core/Makefile
|
||||
|
|
|
@ -14,6 +14,9 @@
|
|||
# limitations under the License.
|
||||
#
|
||||
|
||||
PRODUCT_PROPERTY_OVERRIDES += \
|
||||
rild.libpath=/vendor/lib/libreference-ril.so
|
||||
|
||||
# This is a build configuration for a full-featured build of the
|
||||
# Open-Source part of the tree. It's geared toward a US-centric
|
||||
# build quite specifically for the emulator, and might not be
|
||||
|
|
|
@ -14,6 +14,9 @@
|
|||
# limitations under the License.
|
||||
#
|
||||
|
||||
PRODUCT_PROPERTY_OVERRIDES += \
|
||||
rild.libpath=/vendor/lib64/libreference-ril.so
|
||||
|
||||
# This is a build configuration for a full-featured build of the
|
||||
# Open-Source part of the tree. It's geared toward a US-centric
|
||||
# build quite specifically for the emulator, and might not be
|
||||
|
|
Loading…
Reference in New Issue