This email list is read-only.  Emails sent to this list will be discarded
----------------------------------
 bitbake-dev/lib/bb/ui/knotty.py |    6 ++++--
 meta/classes/rootfs_deb.bbclass |    2 +-
 meta/classes/rootfs_rpm.bbclass |    2 +-
 3 files changed, 6 insertions(+), 4 deletions(-)

New commits:
commit 826cd19f049ea3ed175def8684f58f239360284b
Author: Richard Purdie <[EMAIL PROTECTED]>
Date:   Fri Nov 7 13:58:24 2008 +0000

    meta/classes/rootfs_*.bbclass: Fix unset variable

commit ab3b4576ceb691fad685b71bf3e3e957b1c12455
Author: Richard Purdie <[EMAIL PROTECTED]>
Date:   Fri Nov 7 13:55:00 2008 +0000

    bitbake-dev: Fix knotty fatal message handling and ignore configparsed 
events


Diff in this email is a maximum of 400 lines.
diff --git a/bitbake-dev/lib/bb/ui/knotty.py b/bitbake-dev/lib/bb/ui/knotty.py
index 7793a53..04c5e75 100644
--- a/bitbake-dev/lib/bb/ui/knotty.py
+++ b/bitbake-dev/lib/bb/ui/knotty.py
@@ -71,11 +71,11 @@ def init(server, eventHandler):
             if event[0].startswith('bb.msg.MsgError'):
                 return_value = 1
                 print 'ERROR: ' + event[1]['_message']
-                break
+                continue
             if event[0].startswith('bb.msg.MsgFatal'):
                 return_value = 1
                 print 'FATAL: ' + event[1]['_message']
-                continue
+                break
             if event[0].startswith('bb.build.TaskFailed'):
                 return_value = 1
                 logfile = event[1]['logfile']
@@ -141,6 +141,8 @@ def init(server, eventHandler):
                 continue
             if event[0].startswith('bb.event.StampUpdate'):
                 continue
+            if event[0].startswith('bb.event.ConfigParsed'):
+                continue
             print "Unknown Event: %s" % event
 
         except KeyboardInterrupt:
diff --git a/meta/classes/rootfs_deb.bbclass b/meta/classes/rootfs_deb.bbclass
index 411a6c4..705b363 100644
--- a/meta/classes/rootfs_deb.bbclass
+++ b/meta/classes/rootfs_deb.bbclass
@@ -87,7 +87,7 @@ fakeroot rootfs_deb_do_rootfs () {
        rm ${WORKDIR}/temp/log.do_$target-attemptonly.${PID}
        if [ ! -z "${PACKAGE_INSTALL_ATTEMPTONLY}" ]; then
                for i in ${PACKAGE_INSTALL_ATTEMPTONLY}; do
-                       apt-get install $i --force-yes --allow-unauthenticated 
>> ${WORKDIR}/temp/log.do_$target-attemptonly.${PID} || true
+                       apt-get install $i --force-yes --allow-unauthenticated 
>> ${WORKDIR}/temp/log.do_rootfs-attemptonly.${PID} || true
                done
        fi
 
diff --git a/meta/classes/rootfs_rpm.bbclass b/meta/classes/rootfs_rpm.bbclass
index dcdd37c..1e8ad6d 100644
--- a/meta/classes/rootfs_rpm.bbclass
+++ b/meta/classes/rootfs_rpm.bbclass
@@ -111,7 +111,7 @@ EOF
        fi
 
        if [ ! -z "${PACKAGE_INSTALL_ATTEMPTONLY}" ]; then
-               fakechroot yum ${YUMARGS} -y install 
${PACKAGE_INSTALL_ATTEMPTONLY} > 
${WORKDIR}/temp/log.do_$target-attemptonly.${PID} || true
+               fakechroot yum ${YUMARGS} -y install 
${PACKAGE_INSTALL_ATTEMPTONLY} > 
${WORKDIR}/temp/log.do_rootfs-attemptonly.${PID} || true
        fi
 
        # Add any recommended packages to the image
_______________________________________________
Commits mailing list
[email protected]
https://lists.moblin.org/mailman/listinfo/commits

Reply via email to