meta-intel: Enable RMC by default

This enables the Runtime Machine Configuration feature, which
allows use to support multiple machines that have different
kernel commandline option as well as different startup requirements
to work from the base MACHINE configuration.

Signed-off-by: Saul Wold <sgw@linux.intel.com>
This commit is contained in:
Saul Wold 2016-10-14 09:41:15 -07:00
parent e080f475b3
commit 3da6553f63

View File

@ -31,3 +31,7 @@ MACHINE_ESSENTIAL_EXTRA_RDEPENDS_append = "${@bb.utils.contains('MACHINE_FEATURE
# for the early boot time kernel microcode loading support, # for the early boot time kernel microcode loading support,
# merge the microcode data in the final initrd image. # merge the microcode data in the final initrd image.
INITRD_LIVE_prepend = "${@bb.utils.contains('MACHINE_FEATURES', 'intel-ucode', '${DEPLOY_DIR_IMAGE}/microcode.cpio ', '', d)}" INITRD_LIVE_prepend = "${@bb.utils.contains('MACHINE_FEATURES', 'intel-ucode', '${DEPLOY_DIR_IMAGE}/microcode.cpio ', '', d)}"
# Enable Runtime Machine Config by default
DISTRO_FEATURES_append = " rmc"
EFI_PROVIDER ?= "rmc-systemd-boot"