summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2018-01-29 14:01:34 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-01-30 11:50:12 +0000
commitff4835470bc450dd9b8ec9cdf7f9af3af5c6b464 (patch)
treea97852bd1205289d4f0b0c93a7b5ba9c0c42aec4
parenta2b7260f791e4b1ce79aa58a366fd0e5b505c8aa (diff)
downloadpoky-ff4835470bc450dd9b8ec9cdf7f9af3af5c6b464.tar.gz
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. (From OE-Core rev: 19f3f4c60060ff5ed3c1c9871e18fcd4d128c5a3) 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.py2
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):
303 break 303 break
304 304
305 if registered_pkgs is not None: 305 if registered_pkgs is not None:
306 bb.warn("The postinstalls for the following packages " 306 bb.note("The postinstalls for the following packages "
307 "will be postponed for first boot: %s" % 307 "will be postponed for first boot: %s" %
308 registered_pkgs) 308 registered_pkgs)
309 309