From: "Maxim Yu. Osipov" <mosipov@ilbers.de>
To: Claudius Heine <claudius.heine.ext@siemens.com>,
isar-users@googlegroups.com
Cc: Claudius Heine <ch@denx.de>
Subject: Re: [PATCH v5 0/5] UBI support
Date: Tue, 12 Feb 2019 15:06:08 +0100 [thread overview]
Message-ID: <28fefcc9-7446-c50a-bca0-f9c83f333b4c@ilbers.de> (raw)
In-Reply-To: <2c4c42dd-34f3-93b5-197d-72afae337752@ilbers.de>
Hi again, Claudius,
I've applied "[PATCH v2 1/1] meta: added do_transform_template task as
templating system and switch" before UBI support v5 series
and CI failed:
See for details
http://isar-build.org:8080/job/isar_mosipov_next/139/console
Regards,
Maxim.
On 2/12/19 2:36 PM, Maxim Yu. Osipov wrote:
> Hi Claudius,
>
>
> On 2/12/19 2:16 PM, Claudius Heine wrote:
>> Hi Maxim,
>>
>> On 12/02/2019 12.24, Maxim Yu. Osipov wrote:
>>> Hi Claudius,
>>>
>>> I've applied your series and ran CI build.
>>>
>>> It fails on:
>>> ERROR: mc:nand-ubi-demo-buster:isar-image-ubi-1.0-r0 do_fit_image:
>>> FIT_IMAGE_SOURCE does not contain fitimage source file
>>
>> Have you applied the templating system patch before this patchset?
>
> I'm sorry - I've missed it.
> I'll apply the latest version (v2 sent on Tue, 5 Feb 2019) and restart a
> CI test.
>
> Regards,
> Maxim.
>
>
>> regards,
>> Claudius
>>
>>>
>>> See for details:
>>> http://isar-build.org:8080/job/isar_mosipov_next/138/console
>>>
>>> Thanks,
>>> Maxim.
>>>
>>> On 2/11/19 10:09 AM, claudius.heine.ext@siemens.com wrote:
>>>> From: Claudius Heine <ch@denx.de>
>>>>
>>>> Hi,
>>>>
>>>> fifth version of the UBI support for isar.
>>>>
>>>> Claudius
>>>>
>>>> Chagnes form v4:
>>>> - Moved "doc/user: added targz-img to image type list" patch to own
>>>> submission
>>>> - Move path mounting into image.bbclass
>>>>
>>>> Changes from v3:
>>>>
>>>> - Moved dtb copy function into main `do_copy_boot_files` (feedback
>>>> from
>>>> Henning)
>>>> - some minor fixes
>>>>
>>>> Changes from v2:
>>>>
>>>> - added fit image support patch
>>>> - moved to new templating system
>>>> - refactored `copy_boot_files` of isar-image-ubi
>>>>
>>>> Changes from v1:
>>>> - fixed license header
>>>> - removed ubifs test since it is included in the ubi test
>>>> - merged ubifs and ubi patchset
>>>> - renamed qemusabrelite to nand-ubi-demo
>>>> - added nand-ubi-demo to ci build
>>>> - added some entries for ubi/ubifs support in manu
>>>>
>>>> Claudius Heine (5):
>>>> meta/image.bbclass: add image_do_mounts for image specific mounts
>>>> meta/classes: added ubifs-img class
>>>> meta/classes: added ubi-img class
>>>> meta/classes: added fit-img class for creation of fit images
>>>> meta-isar: added nand-ubi-demo example to demonstrate UBI use
>>>>
>>>> doc/user_manual.md | 3 +
>>>> meta-isar/classes/ubi-ubifs-img.bbclass | 10 ++++
>>>> meta-isar/conf/local.conf.sample | 1 +
>>>> meta-isar/conf/machine/nand-ubi-demo.conf | 13 +++++
>>>> .../multiconfig/nand-ubi-demo-buster.conf | 13 +++++
>>>> .../images/files/fitimage.its.tmpl | 58
>>>> +++++++++++++++++++
>>>> .../images/files/ubinize.cfg.tmpl | 17 ++++++
>>>> .../recipes-core/images/isar-image-ubi.bb | 26 +++++++++
>>>> meta/classes/fit-img.bbclass | 32 ++++++++++
>>>> meta/classes/image.bbclass | 35 ++++++++++-
>>>> meta/classes/ubi-img.bbclass | 35 +++++++++++
>>>> meta/classes/ubifs-img.bbclass | 30 ++++++++++
>>>> scripts/ci_build.sh | 1 +
>>>> 13 files changed, 273 insertions(+), 1 deletion(-)
>>>> create mode 100644 meta-isar/classes/ubi-ubifs-img.bbclass
>>>> create mode 100644 meta-isar/conf/machine/nand-ubi-demo.conf
>>>> create mode 100644
>>>> meta-isar/conf/multiconfig/nand-ubi-demo-buster.conf
>>>> create mode 100644
>>>> meta-isar/recipes-core/images/files/fitimage.its.tmpl
>>>> create mode 100644
>>>> meta-isar/recipes-core/images/files/ubinize.cfg.tmpl
>>>> create mode 100644 meta-isar/recipes-core/images/isar-image-ubi.bb
>>>> create mode 100644 meta/classes/fit-img.bbclass
>>>> create mode 100644 meta/classes/ubi-img.bbclass
>>>> create mode 100644 meta/classes/ubifs-img.bbclass
>>>>
>>>
>>>
>>
>
>
--
Maxim Osipov
ilbers GmbH
Maria-Merian-Str. 8
85521 Ottobrunn
Germany
+49 (151) 6517 6917
mosipov@ilbers.de
http://ilbers.de/
Commercial register Munich, HRB 214197
General Manager: Baurzhan Ismagulov
next prev parent reply other threads:[~2019-02-12 14:06 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-11 9:09 claudius.heine.ext
2019-02-11 9:09 ` [PATCH v5 1/5] meta/image.bbclass: add image_do_mounts for image specific mounts claudius.heine.ext
2019-02-11 10:49 ` chombourger
2019-02-11 11:33 ` Claudius Heine
2019-02-11 9:09 ` [PATCH v5 2/5] meta/classes: added ubifs-img class claudius.heine.ext
2019-02-11 9:09 ` [PATCH v5 3/5] meta/classes: added ubi-img class claudius.heine.ext
2019-02-11 9:09 ` [PATCH v5 4/5] meta/classes: added fit-img class for creation of fit images claudius.heine.ext
2019-02-11 9:09 ` [PATCH v5 5/5] meta-isar: added nand-ubi-demo example to demonstrate UBI use claudius.heine.ext
2019-02-11 9:45 ` [PATCH v5 0/5] UBI support Henning Schild
2019-02-12 11:24 ` Maxim Yu. Osipov
2019-02-12 13:16 ` Claudius Heine
2019-02-12 13:35 ` Claudius Heine
2019-02-12 13:36 ` Maxim Yu. Osipov
2019-02-12 14:06 ` Maxim Yu. Osipov [this message]
2019-02-12 14:09 ` Claudius Heine
2019-02-12 14:36 ` Baurzhan Ismagulov
2019-02-12 14:56 ` Claudius Heine
2019-02-12 15:51 ` Claudius Heine
2019-02-12 16:36 ` Claudius Heine
2019-02-13 8:36 ` Maxim Yu. Osipov
2019-02-13 9:53 ` Claudius Heine
2019-02-15 14:47 ` Maxim Yu. Osipov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=28fefcc9-7446-c50a-bca0-f9c83f333b4c@ilbers.de \
--to=mosipov@ilbers.de \
--cc=ch@denx.de \
--cc=claudius.heine.ext@siemens.com \
--cc=isar-users@googlegroups.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox