mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-10 17:41:54 +00:00
This is part one of a series to merge the keyboard scan interface to be common across all platforms. This change just moves and renames files and APIs and removes some read code, and sets up protocol-specific CONFIG options. It makes the next CL which actually merges keyboard scanning easier to parse. BUG=chrome-os-partner:18360 BRANCH=none TEST=compile all boards; test keyboard on spring and link Change-Id: I815a40aae4e5d5f333b8501aff9656080533d913 Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/46549 Reviewed-by: Bill Richardson <wfrichar@chromium.org>
45 lines
1.9 KiB
Makefile
45 lines
1.9 KiB
Makefile
# -*- makefile -*-
|
|
# Copyright (c) 2013 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_output.o uart_buffering.o
|
|
common-y+=memory_commands.o shared_mem.o system_common.o hooks.o
|
|
common-y+=gpio_commands.o version.o printf.o queue.o
|
|
common-$(CONFIG_BATTERY_BQ20Z453)+=battery_bq20z453.o
|
|
common-$(CONFIG_BATTERY_LINK)+=battery_link.o
|
|
common-$(CONFIG_CHARGER_BQ24725)+=charger_bq24725.o
|
|
common-$(CONFIG_CHIPSET_GAIA)+=gaia_power.o
|
|
common-$(CONFIG_CHIPSET_X86)+=x86_power.o
|
|
common-$(CONFIG_PMU_TPS65090)+=pmu_tps65090.o pmu_tps65090_charger.o
|
|
common-$(CONFIG_EOPTION)+=eoption.o
|
|
common-$(CONFIG_EXTPOWER_GPIO)+=extpower_gpio.o
|
|
common-$(CONFIG_FLASH)+=flash_common.o fmap.o
|
|
common-$(CONFIG_I2C)+=i2c_commands.o
|
|
common-$(CONFIG_I2C_ARBITRATION)+=i2c_arbitration.o
|
|
common-$(CONFIG_IR357x)+=ir357x.o
|
|
# TODO: combine common bits of keyboard_scan into one file
|
|
# (coming in a follow-up CL)
|
|
common-$(CONFIG_KEYBOARD_PROTOCOL_MKBP)+=keyboard_mkbp.o
|
|
common-$(CONFIG_KEYBOARD_PROTOCOL_8042)+=keyboard_scan.o
|
|
common-$(CONFIG_KEYBOARD_TEST)+=keyboard_test.o
|
|
common-$(CONFIG_LP5562)+=lp5562.o lp5562_battery_led.o
|
|
common-$(CONFIG_LPC)+=port80.o
|
|
common-$(CONFIG_ONEWIRE_LED)+=onewire_led.o
|
|
common-$(CONFIG_PSTORE)+=pstore_commands.o
|
|
common-$(CONFIG_SMART_BATTERY)+=smart_battery.o smart_battery_stub.o
|
|
common-$(CONFIG_TASK_CHARGER)+=charge_state.o battery_precharge.o
|
|
common-$(CONFIG_TASK_CONSOLE)+=console.o
|
|
common-$(CONFIG_TASK_HOSTCMD)+=host_command.o host_event_commands.o
|
|
common-$(CONFIG_TASK_I8042CMD)+=i8042.o keyboard_8042.o
|
|
common-$(CONFIG_TASK_LIGHTBAR)+=lightbar.o
|
|
common-$(CONFIG_TASK_THERMAL)+=thermal.o
|
|
common-$(CONFIG_TASK_VBOOTHASH)+=sha256.o vboot_hash.o
|
|
common-$(CONFIG_TEMP_SENSOR)+=temp_sensor.o
|
|
common-$(CONFIG_TMP006)+=tmp006.o
|
|
common-$(CONFIG_TSU6721)+=tsu6721.o
|
|
common-$(CONFIG_USB_CHARGE)+=usb_charge.o
|