169 lines
5.4 KiB
Bash
Executable File
169 lines
5.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Copyright 2014 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.
|
|
|
|
if test "$1" = "" -o "$2" = ""
|
|
then
|
|
echo "Need a manufacturer name and a device name"
|
|
exit 1
|
|
fi
|
|
|
|
mkdir -p device/$1/$2
|
|
mkdir -p device/$1/$2-kernel
|
|
mkdir -p vendor/$1/$2
|
|
|
|
cat > device/$1/$2/AndroidProducts.mk << EOF
|
|
#
|
|
# Copyright 2014 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.
|
|
#
|
|
|
|
PRODUCT_MAKEFILES := \$(LOCAL_DIR)/full_$2.mk
|
|
|
|
COMMON_LUNCH_CHOICES := full_$2-userdebug
|
|
EOF
|
|
|
|
cat > device/$1/$2/full_$2.mk << EOF
|
|
#
|
|
# Copyright 2014 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.
|
|
#
|
|
\$(call inherit-product, \$(SRC_TARGET_DIR)/product/full_base.mk)
|
|
\$(call inherit-product, device/$1/$2/device.mk)
|
|
|
|
PRODUCT_NAME := full_$2
|
|
PRODUCT_DEVICE := $2
|
|
PRODUCT_BRAND := Android
|
|
PRODUCT_MODEL := $2
|
|
PRODUCT_MANUFACTURER := $1
|
|
EOF
|
|
|
|
cat > device/$1/$2/device.mk << EOF
|
|
#
|
|
# Copyright 2014 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.
|
|
#
|
|
|
|
ifeq (\$(TARGET_PREBUILT_KERNEL),)
|
|
LOCAL_KERNEL := device/$1/$2-kernel/kernel
|
|
else
|
|
LOCAL_KERNEL := \$(TARGET_PREBUILT_KERNEL)
|
|
endif
|
|
|
|
PRODUCT_COPY_FILES := \\
|
|
\$(LOCAL_KERNEL):kernel
|
|
|
|
\$(call inherit-product-if-exists, vendor/$1/$2/device-vendor.mk)
|
|
EOF
|
|
|
|
cat > device/$1/$2/BoardConfig.mk << EOF
|
|
#
|
|
# Copyright 2014 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.
|
|
#
|
|
|
|
# Use the non-open-source parts, if they're present
|
|
-include vendor/$1/$2/BoardConfigVendor.mk
|
|
|
|
TARGET_ARCH := arm
|
|
TARGET_ARCH_VARIANT := armv7-a-neon
|
|
TARGET_CPU_ABI := armeabi-v7a
|
|
TARGET_CPU_ABI2 := armeabi
|
|
EOF
|
|
|
|
touch device/$1/$2-kernel/kernel
|
|
touch device/$1/$2-kernel/MODULE_LICENSE_GPL
|
|
|
|
cat > vendor/$1/$2/device-vendor.mk << EOF
|
|
#
|
|
# Copyright 2014 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.
|
|
#
|
|
EOF
|
|
|
|
cat > vendor/$1/$2/BoardConfigVendor.mk << EOF
|
|
#
|
|
# Copyright 2014 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.
|
|
#
|
|
EOF
|
|
|