Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging/mei: add mei to staging Kbuild

Add mei to Kconfig and Makefile in drivers/staging

Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Itzhak Tzeel-Krupp <itzhak.tzeel-krupp@intel.com>
Signed-off-by: Oren Weil <oren.jer.weil@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

authored by

Oren Weil and committed by
Greg Kroah-Hartman
6b8aae5a 3ceb3e66

+42
+2
drivers/staging/Kconfig
··· 173 173 174 174 source "drivers/staging/altera-stapl/Kconfig" 175 175 176 + source "drivers/staging/mei/Kconfig" 177 + 176 178 endif # !STAGING_EXCLUDE_BUILD 177 179 endif # STAGING
+1
drivers/staging/Makefile
··· 69 69 obj-$(CONFIG_TOUCHSCREEN_CLEARPAD_TM1217) += cptm1217/ 70 70 obj-$(CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4) += ste_rmi4/ 71 71 obj-$(CONFIG_DRM_PSB) += gma500/ 72 + obj-$(CONFIG_INTEL_MEI) += mei/
+28
drivers/staging/mei/Kconfig
··· 1 + config INTEL_MEI 2 + tristate "Intel Management Engine Interface (Intel MEI)" 3 + depends on X86 && PCI && EXPERIMENTAL 4 + help 5 + The Intel Management Engine (Intel ME) provides Manageability, 6 + Security and Media services for system containing Intel chipsets. 7 + if selected /dev/mei misc device will be created. 8 + 9 + Supported Chipsets are: 10 + 7 Series Chipset Family 11 + 6 Series Chipset Family 12 + 5 Series Chipset Family 13 + 4 Series Chipset Family 14 + Mobile 4 Series Chipset Family 15 + ICH9 16 + 82946GZ/GL 17 + 82G35 Express 18 + 82Q963/Q965 19 + 82P965/G965 20 + Mobile PM965/GM965 21 + Mobile GME965/GLE960 22 + 82Q35 Express 23 + 82G33/G31/P35/P31 Express 24 + 82Q33 Express 25 + 82X38/X48 Express 26 + 27 + For more information see 28 + <http://software.intel.com/en-us/manageability/>
+11
drivers/staging/mei/Makefile
··· 1 + # 2 + # Makefile - Intel Management Engine Interface (Intel MEI) Linux driver 3 + # Copyright (c) 2010-2011, Intel Corporation. 4 + # 5 + obj-$(CONFIG_INTEL_MEI) += mei.o 6 + mei-objs := init.o 7 + mei-objs += interrupt.o 8 + mei-objs += interface.o 9 + mei-objs += iorw.o 10 + mei-objs += main.o 11 + mei-objs += wd.o