From e164f931c8b3046a8b6736166f8dd6d92f727d1c Mon Sep 17 00:00:00 2001 From: Robert Yang Date: Wed, 13 Dec 2017 11:24:05 +0800 Subject: image-live.bbclass: print warn when initramfs is invalid It's a problem when initramfs is invalid, so print warn rather than note. Signed-off-by: Robert Yang Signed-off-by: Ross Burton --- meta/classes/image-live.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/classes/image-live.bbclass') diff --git a/meta/classes/image-live.bbclass b/meta/classes/image-live.bbclass index 7a388d5c60..8ec6af0f6b 100644 --- a/meta/classes/image-live.bbclass +++ b/meta/classes/image-live.bbclass @@ -92,7 +92,7 @@ build_iso() { for fs in ${INITRD} do if [ ! -s "$fs" ]; then - bbnote "ISO image will not be created. $fs is invalid." + bbwarn "ISO image will not be created. $fs is invalid." return fi done -- cgit 1.2.3-korg