mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-09 00:51:29 +00:00
Refactor board/chip-specific code into corresponding directories. Add support of the four I2C temp sensor in Link. Use table lookup to handle different types of temperature sensors. BUG=chrome-os-partner:7527 TEST=Correctly read EC internal temperature on bds. Compile for link succeeded. Change-Id: I694cfa54e1545798d877fafdf18c5585ab5f03e2
18 lines
659 B
Makefile
18 lines
659 B
Makefile
# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
#
|
|
# Common files build
|
|
#
|
|
|
|
common-y=main.o util.o console.o vboot.o uart_buffering.o
|
|
common-y+=memory_commands.o shared_mem.o system.o usb_charge.o
|
|
common-y+=gpio_commands.o
|
|
common-$(CONFIG_LPC)+=port80.o
|
|
common-$(CONFIG_TASK_HOSTCMD)+=host_command.o
|
|
common-$(CONFIG_TASK_I8042CMD)+=i8042.o keyboard.o
|
|
common-$(CONFIG_TASK_X86POWER)+=x86_power.o
|
|
common-$(CONFIG_FLASH)+=flash_commands.o
|
|
common-$(CONFIG_PWM)+=pwm_commands.o
|
|
common-$(CONFIG_TEMP_SENSOR)+=temp_sensor.o temp_sensor_commands.o
|