http://bugs.openembedded.org/show_bug.cgi?id=1013


[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[EMAIL PROTECTED]




------- Comment #1 from [EMAIL PROTECTED]  2006-05-19 02:32 -------
ok, the problem was, that the rootfs_ipk.bbclass has a function log_check(),
which greps over some error-keywords with case-ignore... this obviously finds
the package-text "libgpg-error" and thinks this is an error....

another problem with the gpe-image is the following:
ERROR: Cannot satisfy the following dependencies for task-bootstrap:
         kernel-module-g-ether-2.4 kernel-module-pxa2xx-udc-2.4

what's that about?

after commenting out the keyword ERR completely (no, it's not nice...)
it finished fine!

FIX is here:
--- rootfs_ipk.bbclass.orig     2006-05-19 11:16:35.000000000 +0200
+++ rootfs_ipk.bbclass  2006-05-19 11:21:35.000000000 +0200
@@ -90,14 +90,14 @@
                then
                        lf_txt="`cat $lf_path`"

-                       for keyword_die in "Cannot find package" "exit 1" ERR
Fail
+                       for keyword_die in "Cannot find package" "exit 1" Fail
                        do

                                if (echo "$lf_txt" | grep -v log_check | grep
"$keyword_die") &>/dev/null
                                then
                                        echo "log_check: There were error
messages in the logfile"
                                        echo -e "log_check: Matched keyword:
[$keyword_die]\n"
-                                       echo "$lf_txt" | grep -v log_check |
grep -i "$keyword_die"
+                                       echo "$lf_txt" | grep -v log_check |
grep "$keyword_die"
                                        echo ""
                                        do_exit=1
                                fi


-- 
Configure bugmail: http://bugs.openembedded.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
_______________________________________________
Oe mailing list
[email protected]
https://www.handhelds.org/mailman/listinfo/oe

Reply via email to