From ff16df0e21182203372d05e38bb295775745bf7f Mon Sep 17 00:00:00 2001 From: Robert Yang Date: Tue, 12 Dec 2017 16:41:07 +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 --- meta/classes/image-live.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta') diff --git a/meta/classes/image-live.bbclass b/meta/classes/image-live.bbclass index 9f8ff792df..1623c15988 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