From: Nikolai Merinov <n.merinov@inango-systems.com>
To: Glenn Szejna <glenn.szejna@singlewire.com>
Cc: poky@yoctoproject.org
Subject: Re: For do_rootfs - basehash changed from 17... to 94... Variable TIME changed
Date: Thu, 21 Mar 2019 14:55:39 +0200 (IST) [thread overview]
Message-ID: <944673105.770602.1553172939741.JavaMail.zimbra@inango-systems.com> (raw)
In-Reply-To: <CAEhK1XZaZ5veHutrrvnYx_90WabxTvzs=7jmQor8zHUQSKbuUg@mail.gmail.com>
Hi Glenn,
> In our recipe has the exclude line:
> do_rootfs[vardepsexclude] = "TIME DATE DATETIME"
>
>
> Why is bitbake depending on TIME when we have told it not to?
Did you use the TIME variable directly in the "do_rootfs" function code? The "vardepsexclude" flag excludes only direct dependencies:
B = "test"
A = "${B}"
# Code on the following line will not work: There is no direct dependency from do_install to B.
# do_install[vardepsexclude] = "B"
# Code on the following line effectively remove value of B variable from do_install stamps:
A[vardepsexclude] = "B"
do_install () {
echo ${A}
}
Regards,
Nikolai
next prev parent reply other threads:[~2019-03-21 13:00 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-18 15:48 For do_rootfs - basehash changed from 17... to 94... Variable TIME changed Glenn Szejna
2019-03-21 12:55 ` Nikolai Merinov [this message]
2019-03-22 12:33 ` Glenn Szejna
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=944673105.770602.1553172939741.JavaMail.zimbra@inango-systems.com \
--to=n.merinov@inango-systems.com \
--cc=glenn.szejna@singlewire.com \
--cc=poky@yoctoproject.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.