diff options
author | Rick Altherr <raltherr@google.com> | 2017-01-09 15:44:57 -0800 |
---|---|---|
committer | Rick Altherr <raltherr@google.com> | 2017-01-09 16:03:10 -0800 |
commit | 8ce17d10f00bc1a916ea15a31811372f395aa767 (patch) | |
tree | 350316993ce8d02a6d64c01562ac2f75363812fc /meta-phosphor/conf/machine | |
parent | 96d8e177116c63f35b5be578116f78860cf5fa00 (diff) | |
download | talos-openbmc-8ce17d10f00bc1a916ea15a31811372f395aa767.tar.gz talos-openbmc-8ce17d10f00bc1a916ea15a31811372f395aa767.zip |
Only build FIT kernel images
U-Boot has support for FIT images enabled. Yocto has been building both
cuImage and fitImage for a while now. Dropping cuImage gets us closer
to mainline Yocto. Using a FIT image clears the path for bundling the
initramfs into the kernel image.
Change-Id: I46f1e3d4196bab12b733c59efca40e9e50ca264d
Signed-off-by: Rick Altherr <raltherr@google.com>
Diffstat (limited to 'meta-phosphor/conf/machine')
-rw-r--r-- | meta-phosphor/conf/machine/include/obmc-bsp-common.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-phosphor/conf/machine/include/obmc-bsp-common.inc b/meta-phosphor/conf/machine/include/obmc-bsp-common.inc index 657e54fd4..99855cad6 100644 --- a/meta-phosphor/conf/machine/include/obmc-bsp-common.inc +++ b/meta-phosphor/conf/machine/include/obmc-bsp-common.inc @@ -5,8 +5,8 @@ MACHINE_EXTRA_RRECOMMENDS = " kernel-modules" EXTRA_IMAGEDEPENDS += "u-boot" -KERNEL_CLASSES ?= "kernel-uimage kernel-cuimage kernel-fitimage" -KERNEL_IMAGETYPES ?= "cuImage fitImage" +KERNEL_CLASSES ?= "kernel-fitimage" +KERNEL_IMAGETYPES ?= "fitImage" KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}" UBOOT_SUFFIX ?= "bin" |