diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2012-05-11 21:53:54 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2012-05-11 21:53:54 -0700 |
commit | 44fd5580b5f09f7acc1b7446bdb6343ce89b3d52 (patch) | |
tree | b90c62726aaee7724bfaf50f4599098870c6bae0 /target/product | |
parent | 057366e21d6b7b8203bd5b6f6ad32fbb0ba3c15a (diff) | |
parent | 7eb749d134fd52e23be7218bf2ea7dfa1b1180b3 (diff) | |
download | build-44fd5580b5f09f7acc1b7446bdb6343ce89b3d52.zip build-44fd5580b5f09f7acc1b7446bdb6343ce89b3d52.tar.gz build-44fd5580b5f09f7acc1b7446bdb6343ce89b3d52.tar.bz2 |
am 7eb749d1: am 2d7274de: Merge "MIPS generic target support"
* commit '7eb749d134fd52e23be7218bf2ea7dfa1b1180b3':
MIPS generic target support
Diffstat (limited to 'target/product')
-rw-r--r-- | target/product/AndroidProducts.mk | 3 | ||||
-rw-r--r-- | target/product/full_mips.mk | 32 | ||||
-rw-r--r-- | target/product/generic_mips.mk | 26 | ||||
-rw-r--r-- | target/product/sdk_mips.mk | 28 |
4 files changed, 89 insertions, 0 deletions
diff --git a/target/product/AndroidProducts.mk b/target/product/AndroidProducts.mk index 44b9000..9279633 100644 --- a/target/product/AndroidProducts.mk +++ b/target/product/AndroidProducts.mk @@ -36,10 +36,13 @@ PRODUCT_MAKEFILES := \ $(LOCAL_DIR)/core.mk \ $(LOCAL_DIR)/generic.mk \ $(LOCAL_DIR)/generic_x86.mk \ + $(LOCAL_DIR)/generic_mips.mk \ $(LOCAL_DIR)/full.mk \ $(LOCAL_DIR)/full_x86.mk \ + $(LOCAL_DIR)/full_mips.mk \ $(LOCAL_DIR)/vbox_x86.mk \ $(LOCAL_DIR)/sdk.mk \ $(LOCAL_DIR)/sdk_x86.mk \ + $(LOCAL_DIR)/sdk_mips.mk \ $(LOCAL_DIR)/large_emu_hw.mk endif diff --git a/target/product/full_mips.mk b/target/product/full_mips.mk new file mode 100644 index 0000000..886cf31 --- /dev/null +++ b/target/product/full_mips.mk @@ -0,0 +1,32 @@ +# +# Copyright (C) 2009 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +# 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 +# mips build quite specifically for the emulator, and might not be +# entirely appropriate to inherit from for on-device configurations. + +PRODUCT_PACKAGES := \ + Camera + +$(call inherit-product, $(SRC_TARGET_DIR)/product/full_base_telephony.mk) +$(call inherit-product, $(SRC_TARGET_DIR)/board/generic_mips/device.mk) + +# Overrides +PRODUCT_NAME := full_mips +PRODUCT_DEVICE := generic_mips +PRODUCT_BRAND := Android +PRODUCT_MODEL := Full MIPS Android on Emulator diff --git a/target/product/generic_mips.mk b/target/product/generic_mips.mk new file mode 100644 index 0000000..7b53d04 --- /dev/null +++ b/target/product/generic_mips.mk @@ -0,0 +1,26 @@ +# +# Copyright (C) 2007 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +# This is a generic phone product that isn't specialized for a specific device. +# It includes the base Android platform. + +$(call inherit-product, $(SRC_TARGET_DIR)/product/generic_no_telephony.mk) +$(call inherit-product, $(SRC_TARGET_DIR)/product/telephony.mk) + +# Overrides +PRODUCT_BRAND := generic_mips +PRODUCT_DEVICE := generic_mips +PRODUCT_NAME := generic_mips diff --git a/target/product/sdk_mips.mk b/target/product/sdk_mips.mk new file mode 100644 index 0000000..2072400 --- /dev/null +++ b/target/product/sdk_mips.mk @@ -0,0 +1,28 @@ +# +# Copyright (C) 2012 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +# 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 +# entirely appropriate to inherit from for on-device configurations. + +$(call inherit-product, $(SRC_TARGET_DIR)/product/sdk.mk) + +# Overrides +PRODUCT_BRAND := generic_mips +PRODUCT_NAME := sdk_mips +PRODUCT_DEVICE := generic_mips +PRODUCT_MODEL := Android SDK for Mips |