Bitbake.conf in isar and linting

34 views
Skip to first unread message

Simone Weiß

unread,
Aug 12, 2025, 2:44:54 AMAug 12
to isar-users
Hey,

I am wondering if a specific styleguide exists for isar? Normally for bitbake based projects I am using oelint-adv. 

When I played around with dpkg-raw and wanted to install some file under /etc, this caused the linker to complain about not using sysconfdir for etc.

Is there a specific reason why isars bitbake.conf would omit to also define variables got etc, bin and friends?


Best,
Simone

MOESSBAUER, Felix

unread,
Aug 12, 2025, 5:09:40 AMAug 12
to Schmidt, Adriaan, simone...@elektrobit.com, isar-...@googlegroups.com
On Mon, 2025-08-11 at 23:44 -0700, 'Simone Weiß' via isar-users wrote:
> Hey,
>
> I am wondering if a specific styleguide exists for isar? Normally for
> bitbake based projects I am using oelint-adv. 
>
> When I played around with dpkg-raw and wanted to install some file
> under /etc, this caused the linker to complain about not using
> sysconfdir for etc.

Hi,

let's loop Adriaan Schmidt in, as he already worked on an ISAR linter.

Felix

>
> Is there a specific reason why isars bitbake.conf would omit to also
> define variables got etc, bin and friends?
>
>
> Best,
> Simone

--
Siemens AG
Linux Expert Center
Friedrich-Ludwig-Bauer-Str. 3
85748 Garching, Germany

Simone Weiß

unread,
Aug 19, 2025, 9:49:45 AMAug 19
to isar-users
Hi, 

any feedback here?

Best,
Simone

Schmidt, Adriaan

unread,
Aug 20, 2025, 1:40:55 AMAug 20
to MOESSBAUER, Felix, simone...@elektrobit.com, isar-...@googlegroups.com
Moessbauer, Felix (FT RPD CED OES-DE), Dienstag, 12. August 2025 11:10:
> On Mon, 2025-08-11 at 23:44 -0700, 'Simone Weiß' via isar-users wrote:
> > Hey,
> >
> > I am wondering if a specific styleguide exists for isar? Normally for
> > bitbake based projects I am using oelint-adv.
> >
> > When I played around with dpkg-raw and wanted to install some file
> > under /etc, this caused the linker to complain about not using
> > sysconfdir for etc.
>
> Hi,
>
> let's loop Adriaan Schmidt in, as he already worked on an ISAR linter.

Well, yes and no...
Years ago I very briefly looked into technical solutions for bitbake linting (maybe it was oelint-adv, but I don't exactly remember), and how flexible/extensible those might be.
Even with that in place, it would be up to the Isar Community to actually define a style and rules, but as far as I'm aware nothing like this exists yet.

Adriaan

Simone Weiß

unread,
Aug 20, 2025, 8:41:53 AMAug 20
to isar-users
Hi I see thanks,

While oelint-adv is fairly configurable, I see another point here: Is it really advisable to hard code paths such as /etc, /usr/bin, bin and so on? 
I only noticed that those are hard-coded by running oelint-adv, If a distro (also in different versions I believe there was some switch with debian 12(merged usr))
however handles bin usr etc differently then other it would be nice to configure them in variables.

Simone

Baurzhan Ismagulov

unread,
Aug 20, 2025, 9:07:59 AMAug 20
to isar-...@googlegroups.com
On 2025-08-20 05:40, 'Schmidt, Adriaan' via isar-users wrote:
> > > I am wondering if a specific styleguide exists for isar? Normally for
> > > bitbake based projects I am using oelint-adv.
> > >
> > > When I played around with dpkg-raw and wanted to install some file
> > > under /etc, this caused the linker to complain about not using
> > > sysconfdir for etc.
>
> Well, yes and no...
> Years ago I very briefly looked into technical solutions for bitbake linting (maybe it was oelint-adv, but I don't exactly remember), and how flexible/extensible those might be.
> Even with that in place, it would be up to the Isar Community to actually define a style and rules, but as far as I'm aware nothing like this exists yet.
>
> > > Is there a specific reason why isars bitbake.conf would omit to also
> > > define variables got etc, bin and friends?

We've looked at pylint but not at oelint-adv.

Ideally, we imagined our recipes as three-liners (inherit dpkg, SRC_URI, SRCREV
or similar) which wouldn't require much of style. In the (very distant) future,
we'd need automatically created recipes or even not need recipes at all (all
necessary metadata is already inside the Debian-style source packages). This
not being the case today :) , I think oelint-adv could be evaluated whether
it's useful and configurable enough for Isar. Experiences welcome.

Regarding your specific questions -- sysconfdir, etc, bin and friends -- those
vars are very OE-specific and in are in case of Isar all managed by the Debian
package building infrastructure. So my wish would be exactly about it -- if the
tool turns to be useful for Isar, we shouldn't force people to deal with many
false positives.

Other than that, seems that the tool is not intended to provide pure formatting
guidance, but also real style guidance -- in that case, I think major effort
would be needed to make it useful to check for Isar development patterns.

With kind regards,
Baurzhan

Weiß, Simone

unread,
Aug 21, 2025, 5:16:39 AMAug 21
to isar-...@googlegroups.com, i...@radix50.net
On Wed, 2025-08-20 at 15:07 +0200, Baurzhan Ismagulov wrote:
> CAUTION: This email originated from outside of the Elektrobit
> organization. Do not click links or open attachments unless you
> recognize the sender and know the content is safe.
I was thinking about recipes that inherit dpkg-raw e.g. sdk-files.bb
> This
> not being the case today :) , I think oelint-adv could be evaluated
> whether
> it's useful and configurable enough for Isar. Experiences welcome.
>
we have ok experiences with the following config:


FILES="$(find . -name "*.conf" -o -name "*.bb*" -o -name "*.inc")"
oelint-adv \
--suppress oelint.var.mandatoryvar.HOMEPAGE \
--suppress oelint.var.mandatoryvar.DESCRIPTION \
--suppress oelint.task.docstrings \
--suppress oelint.task.heredocs \
--suppress oelint.vars.homepageping \
--suppress oelint.vars.mispell \
--suppress oelint.vars.pathhardcode \
--exit-zero --quiet --hide info --output result \
--messageformat "::error file={path},line={line}::{id}::{msg}" \
$FILES
> Regarding your specific questions -- sysconfdir, etc, bin and friends
> -- those
> vars are very OE-specific and in are in case of Isar all managed by
> the Debian
> package building infrastructure. So my wish would be exactly about it
> -- if the
> tool turns to be useful for Isar, we shouldn't force people to deal
> with many
> false positives.
>
> Other than that, seems that the tool is not intended to provide pure
> formatting
> guidance, but also real style guidance -- in that case, I think major
> effort
> would be needed to make it useful to check for Isar development
> patterns
> .
>
> With kind regards,
> Baurzhan
>
>
Kind Regards,
Simone Weiß

signature.asc
Reply all
Reply to author
Forward
0 new messages