[oe-commits] [Bug 5396] New: u-boot_git recipe fails for akita/spitz

bugzilla-daemon at git.openembedded.org bugzilla-daemon at git.openembedded.org
Thu Feb 4 20:44:57 UTC 2010


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

           Summary: u-boot_git recipe fails for akita/spitz
           Product: Openembedded
           Version: org.openembedded.dev
          Platform: ARM
        OS/Version: All
            Status: UNCONFIRMED
          Severity: minor
          Priority: P3
         Component: Devices
        AssignedTo: openembedded-commits at lists.openembedded.org
        ReportedBy: eric at eric-weiss.de


The build of u-boot_git  fails with setting 
MACHINE="akita"/"spitz"
the u-boot.inc forces 
do_compile () {
    unset LDFLAGS
    unset CFLAGS
    unset CPPFLAGS
    oe_runmake ${UBOOT_MACHINE}
    oe_runmake all
    oe_runmake tools env
                         ^^^
       }

build fails on building env.
maybe the "env" taget is gone

adding 
-------------
# do_compile_akita () {  < for MACINE="akita "
do_compile_spitz () {
    unset LDFLAGS
    unset CFLAGS
    unset CPPFLAGS
    oe_runmake ${UBOOT_MACHINE}
    oe_runmake all
    oe_runmake tools 
}
------------------
to u-boot_git.bb solved my build problem
further testing for a bootable  u-boot.bin are in work

-- 
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