From mboxrd@z Thu Jan 1 00:00:00 1970 X-GM-THRID: 6897486936825397248 X-Received: by 2002:ac2:5544:: with SMTP id l4mr1914918lfk.580.1606411259067; Thu, 26 Nov 2020 09:20:59 -0800 (PST) X-BeenThere: isar-users@googlegroups.com Received: by 2002:a2e:9059:: with SMTP id n25ls456491ljg.3.gmail; Thu, 26 Nov 2020 09:20:58 -0800 (PST) X-Google-Smtp-Source: ABdhPJzH34fR/rFbDUUis/zHrjVjZBXajWVL8il3CSmuuc2KMWd6SodZHGe0Dz34RE1sq8qKywyI X-Received: by 2002:a2e:985a:: with SMTP id e26mr1667382ljj.157.1606411257993; Thu, 26 Nov 2020 09:20:57 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1606411257; cv=none; d=google.com; s=arc-20160816; b=Zp30HtQkm917Z5GqElz5LW6MRqOpOFKanh2g2gQctdgjDG+zlQ7sd3kLg7Zf9VRiOf fdxwoYthXxCYyexa01GNBA7TI4DZrvdGF6AisYoelXwYek8t2aifV0CeEsPWH3w4B3Xi j3+bH3WxgCW3YANbhMqYAVx448jR9iLuO3+s2Dszrd6BlPQcdYdyxr/RNM0VPtbsnUsR aRljWTpFk2memRQxdp5lfpbmIQLoybZXfqwqY3R1fkbabPBC0dlEF76nUBG9lKY8XFL4 nzsvWS3K46r5adYvkx4k9IjgXJeTYblaLT3DNozdW1O3csLDzBu/Pd1JclRzwEWL3Etp bViw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=content-language:content-transfer-encoding:in-reply-to:mime-version :user-agent:date:message-id:from:references:to:subject; bh=2UcYYBDFOlD1h6KL5ctlDAIvPLdhrertcKPInfBHouc=; b=dsxb20XSwjDsQjrtbnyNnqGOqWwdRVpSQWUPRLx6mrrV08w+xq8MzkhaROAugrwl8s kBicp1dfinCsU5M2GZ/lFzGgbsgkqljN43IlpJslLqeJmgVGPh2sXSfb3I1uOm4nI53h oMfTV67y4RgIRt1VAwmbWN8v59+WVN7AqejtUCmfHgiFsc5RQcAewSxkoueA/OgLX6Be DIbPA8DzKh80SMUuJLzZ1plesI9iNvq/sfvaAaZTI1TAZ0Bq1JiSVrjHT6MtNUt6KTqo G0ObBqr5UkDj3Ah3uF6EvK8TtkVoLe0WU5ZzeirBcRHse1l66PlP65pq/hZ8oX22+LzD 6CHA== ARC-Authentication-Results: i=1; gmr-mx.google.com; spf=pass (google.com: domain of amikan@ilbers.de designates 85.214.156.166 as permitted sender) smtp.mailfrom=amikan@ilbers.de Return-Path: Received: from shymkent.ilbers.de (shymkent.ilbers.de. [85.214.156.166]) by gmr-mx.google.com with ESMTPS id b26si81549lfc.12.2020.11.26.09.20.57 for (version=TLS1_2 cipher=ECDHE-ECDSA-CHACHA20-POLY1305 bits=256/256); Thu, 26 Nov 2020 09:20:57 -0800 (PST) Received-SPF: pass (google.com: domain of amikan@ilbers.de designates 85.214.156.166 as permitted sender) client-ip=85.214.156.166; Authentication-Results: gmr-mx.google.com; spf=pass (google.com: domain of amikan@ilbers.de designates 85.214.156.166 as permitted sender) smtp.mailfrom=amikan@ilbers.de Received: from [192.168.67.164] (mm-201-79-121-178.mgts.dynamic.pppoe.byfly.by [178.121.79.201] (may be forged)) (authenticated bits=0) by shymkent.ilbers.de (8.15.2/8.15.2/Debian-8) with ESMTPSA id 0AQHKtE6030886 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for ; Thu, 26 Nov 2020 18:20:56 +0100 Subject: Re: [PATCH v4] u-boot: add libubootenv To: isar-users@googlegroups.com References: <5e8156b9-e90a-b035-a538-b387865e9b44@siemens.com> From: Anton Mikanovich Message-ID: <02d21716-fd60-8ced-69ed-7c301737ba59@ilbers.de> Date: Thu, 26 Nov 2020 20:20:50 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 In-Reply-To: <5e8156b9-e90a-b035-a538-b387865e9b44@siemens.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US X-Spam-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on shymkent.ilbers.de X-TUID: 9aYIivcA1AE2 21.11.2020 16:33, Jan Kiszka wrote: > From: Quirin Gylstorff > > Add the new library libubootenv and remove fw_printenv and fw_setenv > form u-boot-tools as the are now part of the new library. > > libubootenv is a library that provides a hardware independent > way to access to U-Boot environment. U-Boot has its default environment > compiled board-dependently and this means that tools to access the environment > are also board specific, too. > > libubootenv conflicts with u-boot-tools from Debian 10 > as both try to install fw_printenv and fw_sentenv. This conflict is not > part of the control file as it breaks the installation of custom u-boot-tools > from the u-boot-sources. > > This patch uses dpkg-gdb to build the package from salsa.debian.org and adds > a fix for https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=967487. > > Signed-off-by: Quirin Gylstorff > [Jan: add PROVIDES, fix indention, fix de0-nano-soc example] > Signed-off-by: Jan Kiszka Applied to next, thanks. -- Anton Mikanovich Promwad Ltd. External service provider of ilbers GmbH Maria-Merian-Str. 8 85521 Ottobrunn, Germany +49 (89) 122 67 24-0 Commercial register Munich, HRB 214197 General Manager: Baurzhan Ismagulov