On 12/16/21 15:23, Kanagarajan, Vijaikumar via lists.cip-project.org wrote:
-----Original Message----- From: Jan Kiszka <jan.kiszka@siemens.com> Sent: 16 December 2021 19:09 To: Kanagarajan, Vijaikumar <Vijaikumar_Kanagarajan@mentor.com>; cip- dev@lists.cip-project.org Subject: Re: [isar-cip-core][PATCH v2 2/2] swupdate: Drop conditional includes for buster
On 16.12.21 14:36, Vijai Kumar K wrote:
Stretch in now dropped. The conditional includes for buster is now not needed. Those includes are applicable to buster as well as bullseye.
-# disable documentation due to missing packages in debian buster -# disable create filesystem due to missing symbols in debian buster -# disable webserver due to missing symbols in debian buster -SWUPDATE_BUILD_PROFILES_append_buster = " nodoc \ - pkg.swupdate.nocreatefs \ - pkg.swupdate.nowebserver " +# disable documentation due to missing packages # disable create +filesystem due to missing symbols # disable webserver due to missing +symbols SWUPDATE_BUILD_PROFILES_append = " nodoc \ + pkg.swupdate.nocreatefs \ + pkg.swupdate.nowebserver " # In debian buster the git-compression defaults to gz and does not detect other # compression formats. GBP_EXTRA_OPTIONS += "--git-compression=xz"
So these things were actually broken for bullseye so far?
Yes. Atleast, the nodoc is needed because of sphinx dependency issue in bullseye. Thanks, Vijai Kumar K The flags `pkg.swupdate.nocreatefs` and `pkg.swupdate.nowebserver` are
for Debian Buster.
A build for Debian Bullseye can use the webserver and createfs option as the are active in the Debian provided package on salsa.
Only `nodoc` needs to applied to buster and bullseye.