diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2018-01-29 14:01:34 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-29 23:08:12 +0000 |
commit | 19f3f4c60060ff5ed3c1c9871e18fcd4d128c5a3 (patch) | |
tree | ec586ecdef82811c1e61e831b6f8ba96fa7033bf | |
parent | 3cd8a55d5298ce9cc176e402fdb727abb26a1a4c (diff) | |
download | openembedded-core-19f3f4c60060ff5ed3c1c9871e18fcd4d128c5a3.tar.gz openembedded-core-19f3f4c60060ff5ed3c1c9871e18fcd4d128c5a3.tar.bz2 openembedded-core-19f3f4c60060ff5ed3c1c9871e18fcd4d128c5a3.zip |
rootfs.py: change the notice about deferring scripts to first boot from warning to a note
Now that the first boot deferral needs to be requested explicitly,
it's not really something to be concerned about.
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/lib/oe/rootfs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py index 8bf77aea49..bf2aea2b25 100644 --- a/meta/lib/oe/rootfs.py +++ b/meta/lib/oe/rootfs.py @@ -303,7 +303,7 @@ class Rootfs(object, metaclass=ABCMeta): break if registered_pkgs is not None: - bb.warn("The postinstalls for the following packages " + bb.note("The postinstalls for the following packages " "will be postponed for first boot: %s" % registered_pkgs) |