From 08e225b8e66e25003108921c0b05688c7ea6892e Mon Sep 17 00:00:00 2001 From: Anton Gerasimov Date: Thu, 8 Jun 2017 17:54:32 +0200 Subject: Set default SOTA_CLIENT directly in sota.bbclass --- conf/distro/sota.conf.inc | 1 - 1 file changed, 1 deletion(-) (limited to 'conf') diff --git a/conf/distro/sota.conf.inc b/conf/distro/sota.conf.inc index 07844e3..7438424 100644 --- a/conf/distro/sota.conf.inc +++ b/conf/distro/sota.conf.inc @@ -6,6 +6,5 @@ DISTRO_FEATURES_append = " sota" INHERIT += " sota" -SOTA_CLIENT ?= "aktualizr" # Prelinking increases the size of downloads and causes build errors USER_CLASSES_remove = "image-prelink" -- cgit v1.2.3-54-g00ecf From ae8a5db4668b153baa1b4aaf814f2cdd685e6466 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Wed, 31 May 2017 10:21:56 +0300 Subject: sota: Support m3ulcb Support Renesas R Car Starter Kit Generation 3 (m3ulcb). Signed-off-by: Leon Anavi --- classes/sota.bbclass | 1 + classes/sota_m3ulcb.bbclass | 9 +++++++++ conf/include/bblayers/sota_m3ulcb.inc | 2 ++ 3 files changed, 12 insertions(+) create mode 100644 classes/sota_m3ulcb.bbclass create mode 100644 conf/include/bblayers/sota_m3ulcb.inc (limited to 'conf') diff --git a/classes/sota.bbclass b/classes/sota.bbclass index a96429c..5073e29 100644 --- a/classes/sota.bbclass +++ b/classes/sota.bbclass @@ -25,6 +25,7 @@ SOTA_MACHINE ??="none" SOTA_MACHINE_raspberrypi2 ?= "raspberrypi" SOTA_MACHINE_raspberrypi3 ?= "raspberrypi" SOTA_MACHINE_porter ?= "porter" +SOTA_MACHINE_m3ulcb = "m3ulcb" SOTA_MACHINE_intel-corei7-64 ?= "minnowboard" SOTA_MACHINE_qemux86-64 ?= "qemux86-64" SOTA_MACHINE_am335x-evm ?= "am335x-evm-wifi" diff --git a/classes/sota_m3ulcb.bbclass b/classes/sota_m3ulcb.bbclass new file mode 100644 index 0000000..21d04ba --- /dev/null +++ b/classes/sota_m3ulcb.bbclass @@ -0,0 +1,9 @@ +# Commit united image to OSTree, not just uImage +OSTREE_KERNEL = "Image" + +EXTRA_IMAGEDEPENDS_append_sota = " m3ulcb-ota-bootfiles" +IMAGE_CLASSES_append_sota = " image_types_uboot " +IMAGE_BOOT_FILES_sota += "m3ulcb-ota-bootfiles/*" + +OSTREE_BOOTLOADER ?= "u-boot" +UBOOT_MACHINE_sota = "m3ulcb_defconfig" diff --git a/conf/include/bblayers/sota_m3ulcb.inc b/conf/include/bblayers/sota_m3ulcb.inc new file mode 100644 index 0000000..04f78e4 --- /dev/null +++ b/conf/include/bblayers/sota_m3ulcb.inc @@ -0,0 +1,2 @@ + +BBLAYERS += " ${METADIR}/meta-renesas ${METADIR}/meta-renesas-rcar-gen3 ${METADIR}/meta-openembedded/meta-multimedia" -- cgit v1.2.3-54-g00ecf