1 #!/bin/sh 2 3 # Copyright (C) 2010 The Android Open Source Project 4 # 5 # Licensed under the Apache License, Version 2.0 (the "License"); 6 # you may not use this file except in compliance with the License. 7 # You may obtain a copy of the License at 8 # 9 # http://www.apache.org/licenses/LICENSE-2.0 10 # 11 # Unless required by applicable law or agreed to in writing, software 12 # distributed under the License is distributed on an "AS IS" BASIS, 13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 # See the License for the specific language governing permissions and 15 # limitations under the License. 16 17 DEVICE=maguro 18 MANUFACTURER=samsung 19 20 mkdir -p ../../../vendor/$MANUFACTURER/$DEVICE 21 22 (cat << EOF) | sed s/__DEVICE__/$DEVICE/g | sed s/__MANUFACTURER__/$MANUFACTURER/g > ../../../vendor/$MANUFACTURER/$DEVICE/device-vendor.mk 23 # Copyright (C) 2010 The Android Open Source Project 24 # 25 # Licensed under the Apache License, Version 2.0 (the "License"); 26 # you may not use this file except in compliance with the License. 27 # You may obtain a copy of the License at 28 # 29 # http://www.apache.org/licenses/LICENSE-2.0 30 # 31 # Unless required by applicable law or agreed to in writing, software 32 # distributed under the License is distributed on an "AS IS" BASIS, 33 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 34 # See the License for the specific language governing permissions and 35 # limitations under the License. 36 37 # This file is generated by device/__MANUFACTURER__/__DEVICE__/setup-makefiles.sh 38 39 \$(call inherit-product, vendor/__MANUFACTURER__/__DEVICE__/device-vendor-blobs.mk) 40 EOF 41 42 (cat << EOF) | sed s/__DEVICE__/$DEVICE/g | sed s/__MANUFACTURER__/$MANUFACTURER/g > ../../../vendor/$MANUFACTURER/$DEVICE/BoardConfigVendor.mk 43 # Copyright (C) 2010 The Android Open Source Project 44 # 45 # Licensed under the Apache License, Version 2.0 (the "License"); 46 # you may not use this file except in compliance with the License. 47 # You may obtain a copy of the License at 48 # 49 # http://www.apache.org/licenses/LICENSE-2.0 50 # 51 # Unless required by applicable law or agreed to in writing, software 52 # distributed under the License is distributed on an "AS IS" BASIS, 53 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 54 # See the License for the specific language governing permissions and 55 # limitations under the License. 56 57 # This file is generated by device/__MANUFACTURER__/__DEVICE__/setup-makefiles.sh 58 EOF 59