Import cpuctl pseudo device from FreeBSD
authorJoris Giovannangeli <joris@giovannangeli.fr>
Tue, 18 Nov 2014 20:49:21 +0000 (21:49 +0100)
committerJoris Giovannangeli <joris@giovannangeli.fr>
Tue, 18 Nov 2014 20:51:35 +0000 (21:51 +0100)
commitd4ef66945aed8476e02f05a7261843a95e5f12bd
tree2d0a166c44ef5baa37f4cebba18c88eadd3f134b
parent8c71ced61c2d46b25602ae092ccf9fc9e6ae6695
Import cpuctl pseudo device from FreeBSD

The cpuctl pseudo device allows to perform cpu microcode updates.
24 files changed:
share/man/man4/Makefile
share/man/man4/cpuctl.4 [new file with mode: 0644]
sys/conf/files
sys/config/LINT
sys/config/LINT64
sys/cpu/i386/include/cpufunc.h
sys/cpu/x86_64/include/cpufunc.h
sys/dev/misc/Makefile
sys/dev/misc/cpuctl/Makefile [new file with mode: 0644]
sys/dev/misc/cpuctl/cpuctl.c [new file with mode: 0644]
sys/platform/pc32/i386/support.s
sys/platform/pc64/x86_64/support.s
sys/sys/cpuctl.h [new file with mode: 0644]
usr.sbin/Makefile
usr.sbin/cpucontrol/Makefile [new file with mode: 0644]
usr.sbin/cpucontrol/amd.c [new file with mode: 0644]
usr.sbin/cpucontrol/amd.h [new file with mode: 0644]
usr.sbin/cpucontrol/cpucontrol.8 [new file with mode: 0644]
usr.sbin/cpucontrol/cpucontrol.c [new file with mode: 0644]
usr.sbin/cpucontrol/cpucontrol.h [new file with mode: 0644]
usr.sbin/cpucontrol/intel.c [new file with mode: 0644]
usr.sbin/cpucontrol/intel.h [new file with mode: 0644]
usr.sbin/cpucontrol/via.c [new file with mode: 0644]
usr.sbin/cpucontrol/via.h [new file with mode: 0644]