diff options
author | Max Krummenacher <max.krummenacher@toradex.com> | 2017-02-23 20:25:48 +0100 |
---|---|---|
committer | Marcel Ziswiler <marcel.ziswiler@toradex.com> | 2017-04-07 11:23:53 +0200 |
commit | e8ca6aaf8a9e1ba59a64b2e6df761c1686d72185 (patch) | |
tree | 284efa2e2606392f8384c9f50a3780d27f1efcd1 /conf | |
parent | 4675b2df8a82d7572ba421dbe9251829d5319ccb (diff) |
machine configs: don't deploy the kernel in /boot
In our images this has been done during do_rootfs and friends,
do it the oe-core way.
Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
Acked-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
Diffstat (limited to 'conf')
-rw-r--r-- | conf/machine/apalis-imx6.conf | 2 | ||||
-rw-r--r-- | conf/machine/colibri-imx6.conf | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/conf/machine/apalis-imx6.conf b/conf/machine/apalis-imx6.conf index 0b93a00..3cf0301 100644 --- a/conf/machine/apalis-imx6.conf +++ b/conf/machine/apalis-imx6.conf @@ -13,6 +13,8 @@ PREFERRED_PROVIDER_virtual/kernel ?= "linux-toradex" KERNEL_DEVICETREE += "imx6q-apalis-eval.dtb imx6q-apalis_v1_0-eval.dtb \ imx6q-apalis-ixora.dtb imx6q-apalis_v1_0-ixora.dtb" KERNEL_IMAGETYPE = "uImage" +# The kernel lives in a seperate FAT partition, don't deploy it in /boot/ +RDEPENDS_kernel-base = "" PREFERRED_PROVIDER_u-boot ?= "u-boot-toradex" PREFERRED_PROVIDER_virtual/bootloader ?= "u-boot-toradex" diff --git a/conf/machine/colibri-imx6.conf b/conf/machine/colibri-imx6.conf index f011b80..cccc6e0 100644 --- a/conf/machine/colibri-imx6.conf +++ b/conf/machine/colibri-imx6.conf @@ -12,6 +12,8 @@ include conf/machine/include/tune-cortexa9.inc PREFERRED_PROVIDER_virtual/kernel ?= "linux-toradex" KERNEL_DEVICETREE += "imx6dl-colibri-eval-v3.dtb imx6dl-colibri-cam-eval-v3.dtb" KERNEL_IMAGETYPE = "uImage" +# The kernel lives in a seperate FAT partition, don't deploy it in /boot/ +RDEPENDS_kernel-base = "" PREFERRED_PROVIDER_u-boot ?= "u-boot-toradex" PREFERRED_PROVIDER_virtual/bootloader ?= "u-boot-toradex" |