76 lines
2.5 KiB
Bash
76 lines
2.5 KiB
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Copyright (C) 2010 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.
|
||
|
|
||
|
DEVICE=galaxys2
|
||
|
COMMON=c1-common
|
||
|
MANUFACTURER=samsung
|
||
|
|
||
|
mkdir -p ../../../vendor/$MANUFACTURER/$DEVICE/proprietary
|
||
|
mkdir -p ../../../vendor/$MANUFACTURER/$COMMON/proprietary
|
||
|
|
||
|
# galaxys2
|
||
|
|
||
|
|
||
|
# c1-common
|
||
|
|
||
|
|
||
|
|
||
|
(cat << EOF) | sed s/__DEVICE__/$DEVICE/g | sed s/__MANUFACTURER__/$MANUFACTURER/g > ../../../vendor/$MANUFACTURER/$DEVICE/$DEVICE-vendor-blobs.mk
|
||
|
# Copyright (C) 2010 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.
|
||
|
|
||
|
# Prebuilt libraries that are needed to build open-source libraries
|
||
|
PRODUCT_COPY_FILES := \\
|
||
|
|
||
|
# All the blobs necessary for galaxys2 devices
|
||
|
PRODUCT_COPY_FILES += \\
|
||
|
|
||
|
EOF
|
||
|
|
||
|
|
||
|
(cat << EOF) | sed s/__COMMON__/$COMMON/g | sed s/__MANUFACTURER__/$MANUFACTURER/g > ../../../vendor/$MANUFACTURER/$COMMON/c1-vendor-blobs.mk
|
||
|
# Copyright (C) 2010 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.
|
||
|
|
||
|
# All the blobs necessary for galaxys devices
|
||
|
PRODUCT_COPY_FILES += \\
|
||
|
|
||
|
EOF
|
||
|
|
||
|
./setup-makefiles.sh
|