[oe-commits] [Bug 5330] New: Problem with building kernel image

bugzilla-daemon at git.openembedded.org bugzilla-daemon at git.openembedded.org
Tue Oct 27 12:18:28 UTC 2009


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

           Summary: Problem with building kernel image
           Product: Openembedded
           Version: unspecified
          Platform: ARM
        OS/Version: All
            Status: UNCONFIRMED
          Severity: minor
          Priority: P3
         Component: org.openembedded.stable
        AssignedTo: openembedded-commits at lists.openembedded.org
        ReportedBy: yeyo at poczta.onet.pl


Building my own kernel...
NOTE: Running task 388 of 532 (ID: 19,
/OE/openembedded/recipes/linux/linux-zybex_2.6.29.bb, do_package_write_ipk)
Packaged contents of kernel into
/OE/tmp/deploy/glibc/ipk/andrew-zybex/kernel_2.6.29-r1.1_andrew-zybex.ipk
kernel-2.6.29-rc3-Zybex-150
*** Error: Package name  contains illegal characters, (other than [a-z0-9.+-])

ipkg-build: Please fix the above errors and try again.
NOTE: Task failed: ipkg-build execution failed
ERROR: TaskFailed event exception, aborting
ERROR: Build of /OE/openembedded/recipes/linux/linux-zybex_2.6.29.bb
do_package_write_ipk failed
ERROR: Task 19 (/OE/openembedded/recipes/linux/linux-zybex_2.6.29.bb,
do_package_write_ipk) failed
NOTE: Tasks Summary: Attempted 387 tasks of which 387 didn't need to be rerun
and 1 failed.
ERROR: '/OE/openembedded/recipes/linux/linux-zybex_2.6.29.bb' failed

Fix for this:

--- recipes/stage-manager/files/stage-manager-ipkg-build.orig   2009-10-27
11:51:44.000000000 +0100
+++ recipes/stage-manager/files/stage-manager-ipkg-build        2009-10-27
11:52:00.000000000 +0100
@@ -120,7 +120,7 @@

        echo "PKG: $pkg"

-       if echo $pkg | grep '[^a-z0-9.+-]'; then
+       if echo $pkg | grep '[^a-zA-Z0-9.+-]'; then
                echo "*** Error: Package name: $name pkg: $pkg contains illegal
characters, (other than [a-z0-9.+-])" >&2
                PKG_ERROR=1;
        fi

Is that allright? Somehow BitBake changes first letter of "zybex" word to
uppercase, so rule '[^a-z0-9.+-]' doesn't meet "if ; then" needs.

-- 
Configure bugmail: http://bugs.openembedded.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.




More information about the Openembedded-commits mailing list