add cpu msr kernel module package
This adds a separate kernel package for x86 cpu msr support. MSR module is needed e.g. when updating coreboot bios on alix boards. Signed-off-by: Roman Yeryomin <roman@advem.lv> SVN-Revision: 22890
This commit is contained in:
parent
f7538b6864
commit
4331584485
1 changed files with 16 additions and 0 deletions
|
@ -55,6 +55,22 @@ endef
|
||||||
$(eval $(call KernelPackage,bluetooth))
|
$(eval $(call KernelPackage,bluetooth))
|
||||||
|
|
||||||
|
|
||||||
|
define KernelPackage/cpu-msr
|
||||||
|
SUBMENU:=$(OTHER_MENU)
|
||||||
|
TITLE:=x86 CPU MSR support
|
||||||
|
DEPENDS:=@TARGET_x86
|
||||||
|
KCONFIG:=CONFIG_X86_MSR
|
||||||
|
FILES:=$(LINUX_DIR)/arch/x86/kernel/msr.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,20,msr)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/cpu-msr/description
|
||||||
|
Kernel module for Model Specific Registers support in x86 CPUs
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,cpu-msr))
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/crc-ccitt
|
define KernelPackage/crc-ccitt
|
||||||
SUBMENU:=$(OTHER_MENU)
|
SUBMENU:=$(OTHER_MENU)
|
||||||
TITLE:=CRC-CCITT support
|
TITLE:=CRC-CCITT support
|
||||||
|
|
Loading…
Reference in a new issue