diff options
author | Thuy Tran <thuy.tran.xh@renesas.com> | 2018-12-05 14:54:28 +0700 |
---|---|---|
committer | Thuy Tran <thuy.tran.xh@renesas.com> | 2019-02-28 09:43:53 +0700 |
commit | 0311c6b1a02611971c9ed5a18fb5ce0fe21c5e22 (patch) | |
tree | cf95d3f079e0f9571afd8f05412ff8148e019e77 /meta-rcar-gen3/recipes-kernel/linux/linux-renesas_4.14.bb | |
parent | ee2c656b3eb98bc426ffb27e4d3d1479de7028d9 (diff) |
rcar-gen3: Change base_conditional to oe.utils.conditional
This commit changes to use oe.utils.conditional because these base_*
functions were removed in meta/lib/oe from YP2.5.
(From Poky rev: 58449f0e9cc4a05c88204cf8ba887b55467d886e)
Signed-off-by: Thuy Tran <thuy.tran.xh@renesas.com>
Signed-off-by: Takamitsu Honda <takamitsu.honda.pv@renesas.com>
Diffstat (limited to 'meta-rcar-gen3/recipes-kernel/linux/linux-renesas_4.14.bb')
-rw-r--r-- | meta-rcar-gen3/recipes-kernel/linux/linux-renesas_4.14.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta-rcar-gen3/recipes-kernel/linux/linux-renesas_4.14.bb b/meta-rcar-gen3/recipes-kernel/linux/linux-renesas_4.14.bb index 2f7e14f..e42a371 100644 --- a/meta-rcar-gen3/recipes-kernel/linux/linux-renesas_4.14.bb +++ b/meta-rcar-gen3/recipes-kernel/linux/linux-renesas_4.14.bb @@ -25,7 +25,7 @@ PR = "r1" SRC_URI_append = " \ file://defconfig \ file://touch.cfg \ - ${@base_conditional("USE_AVB", "1", " file://usb-video-class.cfg", "", d)} \ + ${@oe.utils.conditional("USE_AVB", "1", " file://usb-video-class.cfg", "", d)} \ " # Enable RPMSG_VIRTIO depend on ICCOM @@ -35,12 +35,12 @@ SUPPORT_ICCOM = " \ " SRC_URI_append = " \ - ${@base_conditional("USE_ICCOM", "1", "${SUPPORT_ICCOM}", "", d)} \ + ${@oe.utils.conditional("USE_ICCOM", "1", "${SUPPORT_ICCOM}", "", d)} \ " # Add SCHED_DEBUG config fragment to support CAS SRC_URI_append = " \ - ${@base_conditional("USE_CAS", "1", " file://capacity_aware_migration_strategy.cfg", "",d)} \ + ${@oe.utils.conditional("USE_CAS", "1", " file://capacity_aware_migration_strategy.cfg", "",d)} \ " # Add ADSP ALSA driver @@ -55,7 +55,7 @@ SUPPORT_ADSP_ASOC = " \ " SRC_URI_append = " \ - ${@base_conditional("USE_ADSP", "1", "${SUPPORT_ADSP_ASOC}", "", d)} \ + ${@oe.utils.conditional("USE_ADSP", "1", "${SUPPORT_ADSP_ASOC}", "", d)} \ " # Install USB3.0 firmware to rootfs |