[OE-core] [PATCH] Added recipe for libconfig

2012-06-13 Thread Stefano Babic
libconfig can be used to parse a configuration file in a structured language, but still compact and more suitable for embedded devices compared to XML. Signed-off-by: Stefano Babic --- meta/recipes-support/libconfig/libconfig_1.4.8.bb | 15 +++ 1 file changed, 15 insertions

Re: [OE-core] [PATCH] Added recipe for libconfig

2012-06-13 Thread Stefano Babic
On 13/06/2012 16:02, Burton, Ross wrote: > On 13 June 2012 14:19, Stefano Babic wrote: >> libconfig can be used to parse a configuration file >> in a structured language, but still compact and more >> suitable for embedded devices compared to XML. > > Is there a packa

Re: [OE-core] [PATCH] Added recipe for libconfig

2012-06-14 Thread Stefano Babic
On 13/06/2012 16:24, Burton, Ross wrote: > On 13 June 2012 15:22, Stefano Babic wrote: >> no, there is not yet. I add the libconfig to my image and my apllication >> make use of it. However, I see it as a general purpose library, that one >> can decide to add or not to the

Re: [OE-core] [PATCH] Added recipe for libconfig

2012-06-14 Thread Stefano Babic
On 14/06/2012 14:58, Philip Balister wrote: >> meta-oe is the place for this tyoe of recipe. The Yocto Project is not a > distribution, rather a project to make embedded systems easier :) Ok, thanks for clarification - I will send V2 for meta-oe. Stefano --

Re: [OE-core][dunfell 17/25] libubootenv: uprev to v0.3

2020-09-09 Thread Stefano Babic
nt is in EEPROM - Fix regression in UBI volume support Please update to this version, thanks ! Best regards, Stefano Babic > ``` > 1efed83 Increase max length for device name > 6f4fc1c uboot_env: Use canonicalized pathname when reading device > 23b3086 Fix bug introduced by commit 52

Re: [OE-core] [PATCH] libubootenv: upgrade 0.3 -> 0.3.1

2020-09-13 Thread Stefano Babic
492f2ee46a52fbc607ad0b96414" +SRCREV = "824551ac77bab1d0f7ae34d7a7c77b155240e754" S = "${WORKDIR}/git" Reviewed-by: Stefano Babic Best regards, Stefano Babic -- = DENX Software Engineering GmbH,

Re: [OE-core] [PATCHv3] cronie:upgrade 1.5.4 -> 1.5.5

2019-12-13 Thread Stefano Babic
Hi Zang, On 26/11/19 07:15, Zang Ruochen wrote: > From: Wang Mingyu > > -Added PACKAGECONFIG to solve compilation problems with musl. > > Signed-off-by: Wang Mingyu > --- > meta/recipes-extended/cronie/{cronie_1.5.4.bb => cronie_1.5.5.bb} | 5 +++-- > 1 file changed, 3 insertions(+), 2 deleti

[OE-core] [PATCH] cronie:fix SRC_URI path

2019-12-13 Thread Stefano Babic
Signed-off-by: Stefano Babic --- meta/recipes-extended/cronie/cronie_1.5.5.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-extended/cronie/cronie_1.5.5.bb b/meta/recipes-extended/cronie/cronie_1.5.5.bb index 82cd4285f6..0def4a187d 100644 --- a/meta/recipes

[OE-core] [PATCH] u-boot-fw-utils: Add support for libubootenv

2020-01-02 Thread Stefano Babic
the library to proprietary code. The user of the tools should install the configuration file "fw_env.config", as he is already used to with u-boot-fw-utils. The configuration file is compatible with u-boot-fw-utils. Signed-off-by: Stefano Babic --- meta/recipes-bsp/u-boot/libubootenv.i

Re: [OE-core] [PATCH] u-boot-fw-utils: Add support for libubootenv

2020-01-02 Thread Stefano Babic
Hi Martin, On 02/01/20 16:45, Martin Jansa wrote: > The summary says it's hardware independent and then the recipe sets: > PACKAGE_ARCH = "${MACHINE_ARCH}" > You're right, this is not needed, I remove it in V2. Regards, Stefano > why is that? > > On Thu

[OE-core] [PATCH V2] u-boot-fw-utils: Add support for libubootenv

2020-01-02 Thread Stefano Babic
the library to proprietary code. The user of the tools should install the configuration file "fw_env.config", as he is already used to with u-boot-fw-utils. The configuration file is compatible with u-boot-fw-utils. Signed-off-by: Stefano Babic --- Changes since V1: - drop PACKA

Re: [OE-core] [PATCH V2] u-boot-fw-utils: Add support for libubootenv

2020-01-02 Thread Stefano Babic
Hi Ross, On 02/01/20 19:22, Ross Burton wrote: > On 02/01/2020 17:52, Stefano Babic wrote: >> +++ b/meta/recipes-bsp/u-boot/libubootenv_0.2.bb >> @@ -0,0 +1,2 @@ >> +require libubootenv.inc >> +SRCREV = "bf6ff631c0e38cede67268ceb8bf1383b5f8848e" > > I *

Re: [OE-core] [PATCH V2] u-boot-fw-utils: Add support for libubootenv

2020-01-02 Thread Stefano Babic
Hi Adrian, On 02/01/20 19:30, Adrian Bunk wrote: > On Thu, Jan 02, 2020 at 06:52:06PM +0100, Stefano Babic wrote: >> libubootenv is a replacement for u-boot-fw-utils. It is >> hardware-independent and provides fw_printenv and fw_setenv tools that >> are full compatible with t

[OE-core] [PATCH V3] u-boot-fw-utils: Add support for libubootenv

2020-01-03 Thread Stefano Babic
the library to proprietary code. The user of the tools should install the configuration file "fw_env.config", as he is already used to with u-boot-fw-utils. The configuration file is compatible with u-boot-fw-utils. Signed-off-by: Stefano Babic --- Changes since V2: - drop .i

Re: [OE-core] [PATCH V3] u-boot-fw-utils: Add support for libubootenv

2020-01-03 Thread Stefano Babic
Hi Richard, On 03/01/20 11:40, Richard Purdie wrote: > On Fri, 2020-01-03 at 11:15 +0100, Stefano Babic wrote: >> libubootenv is a replacement for u-boot-fw-utils. It is >> hardware-independent and provides fw_printenv and fw_setenv tools >> that >> are full compatible

Re: [OE-core] [PATCH V3] u-boot-fw-utils: Add support for libubootenv

2020-01-03 Thread Stefano Babic
Hi Richard, On 03/01/20 12:18, Richard Purdie wrote: > On Fri, 2020-01-03 at 12:05 +0100, Stefano Babic wrote: >> On 03/01/20 11:40, Richard Purdie wrote: >>> On Fri, 2020-01-03 at 11:15 +0100, Stefano Babic wrote: >>>> libubootenv is a replacement for u-boot

[OE-core] [PATCH V4] u-boot-fw-utils: Add support for libubootenv

2020-01-03 Thread Stefano Babic
-Boot's ML at: http://u-boot.10912.n7.nabble.com/SWUpdate-U-Boot-environment-library-dependency-tt340530.html#none Signed-off-by: Stefano Babic --- Changes since V3: - Update maintainers.inc (R. Purdie) - Add link to U-Boot's ML in commit message (R. Purdie) Changes sinc

Re: [OE-core] [PATCH V4] u-boot-fw-utils: Add support for libubootenv

2020-01-09 Thread Stefano Babic
kage: >   /usr/lib/libubootenv.so >   /usr/lib/libubootenv.so.0.2 > Thanks for reporting this - I will take care of the error in next days. Regards, Stefano > Regards, > Chen Qi > > On 01/03/2020 08:33 PM, Stefano Babic wrote: >> libubootenv is a replacement for u-boo

[OE-core] [PATCH] libubootenv: upgrade 0.3.2 -> 0.3.3

2022-09-09 Thread Stefano Babic
le name to fw_setenv. 42f919e main: Check libuboot_set_env() result. 1bc91d1 CI: add gitlab config Signed-off-by: Stefano Babic --- .../u-boot/{libubootenv_0.3.2.bb => libubootenv_0.3.3.bb} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename meta/recipes-bsp/u-boot/{libuboo

Re: [OE-core] [PATCH v2] u-boot: Restore valid default environment for running system

2020-03-31 Thread Stefano Babic
for the > tool is a regression from the previous release and this mitigates it. > > Changes in v2: > - Fix wrong path on do_install > - Change virtual/bootloader-env to u-boot-default-env (RP) > - Add Tom Rini and Stefano Babic to Cc > > meta/recipe

Re: [OE-core] [PATCH v2] u-boot: Restore valid default environment for running system

2020-03-31 Thread Stefano Babic
Hi Otavio, On 31.03.20 18:44, Otavio Salvador wrote: > Hello Stefano, > > On Tue, Mar 31, 2020 at 12:32 PM Stefano Babic wrote: >> On 31.03.20 17:16, Otavio Salvador wrote: > ... >>> - u-boot-initial-env on deploy >>> - fw_env.config on deploy >> >

Re: [OE-core] [PATCH v3] u-boot: Restore valid default environment for running system

2020-04-02 Thread Stefano Babic
E} to the files following other binaries > - Change commit log > > Changes in v2: > - Fix wrong path on do_install > - Change virtual/bootloader-env to u-boot-default-env (RP) > - Add Tom Rini and Stefano Babic to Cc > > meta/recipes-bsp/u-boot/u-boot.inc | 62

Re: [OE-core] [PATCH] libubootenv: Depend on zlib

2020-05-19 Thread Stefano Babic
Hi Khem, On 19.05.20 17:56, Khem Raj wrote: > On Mon, May 18, 2020 at 1:28 AM Marek Vasut wrote: >> >> The libubootenv depends on zlib as it calls at least crc32() from >> there and links against it. Add the DEPENDS entry. >> >> Signed-off-by: Marek Vasut >

Re: [OE-core][dunfell 09/17] libubootenv: Depend on zlib

2020-05-26 Thread Stefano Babic
>> >>>> The libubootenv depends on zlib as it calls at least crc32() from >>>> there and links against it. Add the DEPENDS entry. >>>> >>>> Signed-off-by: Marek Vasut >>>> Cc: Stefano Babic >>>> Signed-off-by: Richard

Re: [OE-core][PATCH] libubootenv: Remove the DEPENDS on mtd-utils

2020-05-27 Thread Stefano Babic
TYPE=Release" > > +DEPENDS = "zlib" > PROVIDES += "u-boot-fw-utils" > RPROVIDES_${PN}-bin += "u-boot-fw-utils" > > Acked-by: Stefano Babic Best regards, Stefano Babic -- =

[OE-core] [PATCH] mtd-utils: export headers and libraries for MTD and UBI

2023-06-02 Thread Stefano Babic
Mtd-utils has internal libraries (libmtd and libubi) that simplify the usage and access, and they can be used by applications to access MTD devices without reinventing the code. Signed-off-by: Stefano Babic --- meta/recipes-devtools/mtd/mtd-utils_git.bb | 8 1 file changed, 8

[OE-core] [PATCH] libubootenv: upgrade 0.3.3 -> 0.3.4

2023-06-02 Thread Stefano Babic
Signed-off-by: Stefano Babic --- .../u-boot/{libubootenv_0.3.3.bb => libubootenv_0.3.4.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-bsp/u-boot/{libubootenv_0.3.3.bb => libubootenv_0.3.4.bb} (93%) diff --git a/meta/recipes-bsp/u-boot/libubootenv_0.

Re: [OE-core] [PATCH] mtd-utils: export headers and libraries for MTD and UBI

2023-06-02 Thread Stefano Babic
Hi Richard, On 02.06.23 14:02, Richard Purdie wrote: On Fri, 2023-06-02 at 13:24 +0200, Stefano Babic wrote: Mtd-utils has internal libraries (libmtd and libubi) that simplify the usage and access, and they can be used by applications to access MTD devices without reinventing the code. Does

Re: [OE-core] [PATCH] libubootenv: upgrade 0.3.3 -> 0.3.4

2023-06-05 Thread Stefano Babic
Hi Alexandre, On 04.06.23 22:33, Alexandre Belloni via lists.openembedded.org wrote: Hello Stefano, This caused the following failure: https://autobuilder.yoctoproject.org/typhoon/#/builders/52/builds/7124/steps/12/logs/stdio Thanks and sorry, my fault, I send a V2 to fix it. Regards, Stef

[OE-core] [PATCH V2] libubootenv: upgrade 0.3.3 -> 0.3.4

2023-06-05 Thread Stefano Babic
Signed-off-by: Stefano Babic --- Changes since V1: - added missing dependency to libyaml .../u-boot/{libubootenv_0.3.3.bb => libubootenv_0.3.4.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-bsp/u-boot/{libubootenv_0.3.3.bb => libubootenv_0.3.4.bb

[OE-core] [PATCH] systat: systemd never enables the service

2019-06-18 Thread Stefano Babic
block restart sysstat.service fi fi Due to the exit statement, systemctl is never called and the service is never enabled in rootfs. Invert the logic for the check to let run the rest of postinst script. Signed-off-by: Stefano Babic --- meta/recipes-extended/sysstat/sysstat

[OE-core] [PATCH V2] systat: systemd never enables the service

2019-06-18 Thread Stefano Babic
block restart sysstat.service fi fi Due to the exit statement, systemctl is never called and the service is never enabled in rootfs. Invert the logic for the check to let run the rest of postinst script. Signed-off-by: Stefano Babic --- Changes since V1: - rebase on

Re: [OE-core] [PATCH v2] u-boot: Generate default U-Boot environment images

2019-07-26 Thread Stefano Babic
able SWUpdate (and libubootenv) to use it. Create specific image to be stored into a .wic seems overkilling, and it does not help if for some reason the board comes up without environment in the flash. Best regards, Stefano Babic > > The UBOOT_ENVS_SIZE must be defined in machine specific c

Re: [OE-core] [PATCH V4] u-boot-fw-utils: Add support for libubootenv

2020-01-14 Thread Stefano Babic
Hi Chen, On 14/01/20 06:57, ChenQi wrote: > On 01/09/2020 05:31 PM, Stefano Babic wrote: >> Hi Chen, >> >> On 09/01/20 02:29, ChenQi wrote: >>> Resend as previous email forgets to add Stefano. >>> >>> In case of multilib, the do_package fails with

Re: [OE-core] [PATCH V4] u-boot-fw-utils: Add support for libubootenv

2020-01-14 Thread Stefano Babic
On 14/01/20 11:24, Ross Burton wrote: > On 14/01/2020 10:00, Stefano Babic wrote: >> Thanks for this - I have fixed it, too, fast exactly in the same way you >> did, but directly into libubootenv. This avoids to track the patch >> into OE: >> >> http://p

[OE-core] [PATCH] libubootenv: fix multilib build

2020-01-15 Thread Stefano Babic
the commit with the fix. Signed-off-by: Stefano Babic Reported-by: ChenQi --- meta/recipes-bsp/u-boot/libubootenv_0.2.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-bsp/u-boot/libubootenv_0.2.bb b/meta/recipes-bsp/u-boot/libubootenv_0.2.bb index 23230d132e

Re: [OE-core] [PATCH] libubootenv: bump to revision ba952d0

2020-02-19 Thread Stefano Babic
gt; "file://Licenses/lgpl-2.1.txt;md5=4fbd65380cdd255951079008b36 > SECTION = "libs" > > SRC_URI = "git://github.com/sbabic/libubootenv;protocol=https" > -SRCREV = "879c0731fa0725785b9fa4499bbf6aacd04ee4c2" > +SRCREV = "ba952d05ec9

[OE-core] [PATCH] libubootenv: upgrade 0.3.1 -> 0.3.2

2021-05-03 Thread Stefano Babic
sations in libuboot_configure 20d1ec7 Force writing of environment if default is used 5ca11bd libuboot_env: correct length to usable env size length cd4a8f1 libuboot_env_store: fix env double-null termination 9510164 uboot_env: fix infinite loop on short read (EOF) Signed-off-by: Stefano Babic ---

Re: [OE-core] Build the "boot" partition image (just like the rootfs)

2021-03-15 Thread Stefano Babic
case of unexpected failure (power loss for example), the device remains bootable. This does not seem to be atomic. It remains the risk that partition table gets corrupted and then even the first bootloader cannot run. If you want to have a power-cut safe way to update is not enough.

Re: [OE-core] Build the "boot" partition image (just like the rootfs)

2021-03-15 Thread Stefano Babic
consider the environment before printing this e-mail On 15-03-2021 14:47, Stefano Babic wrote: Hi Mike, On 15.03.21 14:13, Mike Looijmans wrote: For software updates, I want to have what would have gone into the boot partition of the WIC image as a separate file. If I want to have the contents of

Re: [OE-core] Git and pseudo

2022-04-26 Thread Stefano Babic
Hi Mike, Richard, On 26.04.22 11:08, Mike Looijmans wrote: Met vriendelijke groet / kind regards, Mike Looijmans System Expert TOPIC Embedded Products B.V. Materiaalweg 4, 5681 RJ Best The Netherlands T: +31 (0) 499 33 69 69 E: mike.looijm...@topicproducts.com W: www.topic.nl Please consid

Re: [OE-core] Git and pseudo

2022-04-27 Thread Stefano Babic
On 27.04.22 12:22, Richard Purdie wrote: On Wed, 2022-04-27 at 08:47 +0200, Stefano Babic wrote: Hi Mike, Richard, On 26.04.22 11:08, Mike Looijmans wrote: Met vriendelijke groet / kind regards, Mike Looijmans System Expert TOPIC Embedded Products B.V. Materiaalweg 4, 5681 RJ Best The

[OE-core] [PATCH] mtd-utils: upgrade 2.1.2 -> 2.1.3

2021-07-26 Thread Stefano Babic
Signed-off-by: Stefano Babic --- meta/recipes-devtools/mtd/mtd-utils_git.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-devtools/mtd/mtd-utils_git.bb b/meta/recipes-devtools/mtd/mtd-utils_git.bb index 105a68dad8..66c27e0ce1 100644 --- a/meta/recipes

Re: [OE-core] [PATCH] mtd-utils: upgrade 2.1.2 -> 2.1.3

2021-07-27 Thread Stefano Babic
Hi Alexandre, On 27.07.21 01:02, Alexandre Belloni wrote: Hello Stefano, On 26/07/2021 09:44:40+0200, Stefano Babic wrote: Signed-off-by: Stefano Babic --- meta/recipes-devtools/mtd/mtd-utils_git.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes

[OE-core] [PATCH V2] mtd-utils: upgrade 2.1.2 -> 2.1.3

2021-07-27 Thread Stefano Babic
Drop also --enable-install-tests from configuration options because this was removed in 2.1.3. Signed-off-by: Stefano Babic CC: David Oberhollenzer CC: Alexandre Belloni --- Changes since V1: - remove obsolete option enable-install-tests meta/recipes-devtools/mtd/mtd-utils_git.bb

Re: [OE-core] [PATCH] mtd-utils: install libmtd and libubi static libraries

2017-01-02 Thread Stefano Babic
i-utils/include/libubi.h ${D}${includedir}/mtd/ > + oe_libinstall -a -C lib libmtd ${D}${libdir} > + oe_libinstall -a -C ubi-utils libubi ${D}${libdir} > } > > PACKAGES =+ "mtd-utils-jffs2 mtd-utils-ubif

Re: [OE-core] [PATCH 2/4] image_types.bbclass: fix ubi ubifs and multiubi

2016-04-08 Thread Stefano Babic
Hi Robert, On 08/04/2016 09:15, Robert Yang wrote: > Fixed when do_image_ubi: > | DEBUG: Executing shell function do_image_ubifs > | Error: min. I/O unit was not specified (use -h for help) > | WARNING: exit code 255 from a shell command. > > Signed-off-by: Robert Yang > --- > meta/classes/imag

[OE-core] ICU not working on powerpc (ppce500v2)

2015-06-03 Thread Stefano Babic
f5205c568cb0d29059c4d8c2dc200e435787f5d8 Author: Khem Raj Date: Sat Feb 15 22:04:05 2014 + icu: Disable the default LDFLAGSICUDT for target compile and, as it looks like ARM related, I have already tried to revert it, without any success. Does anyone have a hint ? Best regards, Stefano Babic

[OE-core] [PATCH] ICU: libicudata corrupt on big endian systems

2015-06-17 Thread Stefano Babic
Tools to generate libicudata are not able to write the library according to the endianess. Signed-off-by: Stefano Babic --- Issue was described in a previous: https://www.mail-archive.com/openembedded-core@lists.openembedded.org/msg65155.html meta/recipes-support/icu/icu/0001-target.patch

Re: [OE-core] [PATCH] ICU: libicudata corrupt on big endian systems

2015-06-17 Thread Stefano Babic
Hi Paul, On 17/06/2015 19:28, Paul Eggleton wrote: >> @@ -0,0 +1,35 @@ >> +From 1878e1bfcd116dd3ed9519dd891bf18f860072b7 Mon Sep 17 00:00:00 2001 >> +From: Stefano Babic >> +Date: Thu, 4 Jun 2015 17:53:30 +0200 >> +Subject: [PATCH] target > > > This

Re: [OE-core] [PATCH 5/5] file: 5.29 -> 5.30

2017-03-20 Thread Stefano Babic
On 22/02/2017 02:44, Robert Yang wrote: > Signed-off-by: Robert Yang > --- > meta/recipes-devtools/file/{file_5.29.bb => file_5.30.bb} | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > rename meta/recipes-devtools/file/{file_5.29.bb => file_5.30.bb} (96%) > > diff --git a/meta/recipes-d

Re: [OE-core] [PATCH 5/5] file: 5.29 -> 5.30

2017-03-20 Thread Stefano Babic
On 20/03/2017 12:29, Manjukumar Harthikote Matha wrote: > > >> -Original Message- >> From: openembedded-core-boun...@lists.openembedded.org >> [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of >> Robert Yang >> Sent: Monday, M

[OE-core] [PATCH] kernel-yocto: run make config for KBUILD_DEFCONFIG

2017-04-26 Thread Stefano Babic
g one. The file generated by "make savedefconfig" contains in most cases a subset of all options that are required for the kernel, and other options are inserted automatically when make is called. Signed-off-by: Stefano Babic --- meta/classes/kernel-yocto.bbclass | 3 ++- 1 file changed

Re: [OE-core] [PATCH] kernel-yocto: run make config for KBUILD_DEFCONFIG

2017-04-26 Thread Stefano Babic
On 26/04/2017 15:56, Bruce Ashfield wrote: > > > On Wed, Apr 26, 2017 at 9:19 AM, Stefano Babic <mailto:sba...@denx.de>> wrote: > > In case the defconfig was created with "make savedefconfig", it is not > enough to copy it to defconfig as

Re: [OE-core] [PATCH] u-boot: Add {gen|deploy}_default_envs tasks to generate environment images

2018-05-03 Thread Stefano Babic
Hi Lukasz, On 27/04/2018 16:51, Lukasz Majewski wrote: > This commit provides the ability to generate u-boot environment(s) as > images, which afterwards can be used to produce image (with wic) for > flashing (eMMC or SPI-NOR). > > This change removes the need to run "env default" during producti

Re: [OE-core] [PATCH] u-boot: Add {gen|deploy}_default_envs tasks to generate environment images

2018-05-03 Thread Stefano Babic
On 27/04/2018 17:07, Marek Vasut wrote: > On 04/27/2018 04:51 PM, Lukasz Majewski wrote: >> This commit provides the ability to generate u-boot environment(s) as >> images, which afterwards can be used to produce image (with wic) for >> flashing (eMMC or SPI-NOR). >> >> This change removes the need

Re: [OE-core] [PATCH] u-boot: Add {gen|deploy}_default_envs tasks to generate environment images

2018-05-03 Thread Stefano Babic
On 03/05/2018 18:36, Marek Vasut wrote: > On 05/03/2018 06:28 PM, Stefano Babic wrote: >> On 27/04/2018 17:07, Marek Vasut wrote: >>> On 04/27/2018 04:51 PM, Lukasz Majewski wrote: >>>> This commit provides the ability to generate u-boot environment(s) as >>>

Re: [OE-core] [PATCH] u-boot: Add {gen|deploy}_default_envs tasks to generate environment images

2018-05-03 Thread Stefano Babic
Hi Marek, On 03/05/2018 18:59, Marek Vasut wrote: > On 05/03/2018 06:50 PM, Stefano Babic wrote: >> On 03/05/2018 18:36, Marek Vasut wrote: >>> On 05/03/2018 06:28 PM, Stefano Babic wrote: >>>> On 27/04/2018 17:07, Marek Vasut wrote: >>>>>

Re: [OE-core] [PATCH] u-boot: Add mkenvimage tool

2018-11-15 Thread Stefano Babic
On 15/11/18 06:05, Alexey Brodkin wrote: > Hi Khem, > > On Wed, 2018-11-14 at 20:57 -0800, Khem Raj wrote: >> On Wed, Nov 14, 2018 at 8:00 PM Alexey Brodkin >> wrote: >>> This utility is used for creation of images containing >>> usable in run-time U-Boot environment. >>> >>> As of today this uti