David Ferguson | 7273312 | 2012-10-09 17:14:39 -0400 | [diff] [blame] | 1 | # Copyright (C) 2012 The CyanogenMod Project |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | # |
| 16 | # This file sets variables that control the way modules are built |
| 17 | # thorughout the system. It should not be used to conditionally |
| 18 | # disable makefiles (the proper mechanism to control what gets |
| 19 | # included in a build is to use PRODUCT_PACKAGES in a product |
| 20 | # definition file). |
| 21 | # |
| 22 | |
| 23 | # WARNING: This line must come *before* including the proprietary |
| 24 | # variant, so that it gets overwritten by the parent (which goes |
| 25 | # against the traditional rules of inheritance). |
| 26 | USE_CAMERA_STUB := true |
| 27 | |
Steve Kondik | 7a56559 | 2013-02-06 22:39:21 -0800 | [diff] [blame] | 28 | BOARD_FAMILY := celox |
| 29 | |
David Ferguson | 7273312 | 2012-10-09 17:14:39 -0400 | [diff] [blame] | 30 | # inherit from common msm8660 |
| 31 | -include device/samsung/msm8660-common/BoardConfigCommon.mk |
| 32 | |
| 33 | # Kernel |
| 34 | BOARD_KERNEL_CMDLINE := androidboot.hardware=qcom usb_id_pin_rework=true no_console_suspend=true zcache |
| 35 | BOARD_KERNEL_BASE := 0x40400000 |
| 36 | BOARD_KERNEL_PAGESIZE := 2048 |
Will Keaney | b5888d9 | 2012-11-24 15:04:04 -0500 | [diff] [blame] | 37 | BOARD_MKBOOTIMG_ARGS := --ramdisk_offset 0x01400000 |
David Ferguson | 7273312 | 2012-10-09 17:14:39 -0400 | [diff] [blame] | 38 | |
| 39 | BOARD_HAS_NO_SELECT_BUTTON := true |
| 40 | |
| 41 | # Suppress the WIPE command since it can brick our EMMC |
| 42 | BOARD_SUPPRESS_EMMC_WIPE := true |
| 43 | |
| 44 | # Disable initlogo, Samsungs framebuffer is weird |
| 45 | TARGET_NO_INITLOGO := true |
| 46 | |
| 47 | # Preload the boot animation to avoid jerkiness |
| 48 | TARGET_BOOTANIMATION_PRELOAD := true |
| 49 | |