Advertisement
Guest User

bitbake -c menuconfig linux-fslc

a guest
Jul 9th, 2014
427
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 17.45 KB | None | 0 0
  1. hamma@soface ~/projects/imx233/fsl-community-bsp/build $ bitbake -c menuconfig linux-fslc
  2. WARNING: Host distribution "Gentoo-2.2" has not been validated with this version of the build system; you may possibly experience unexpected failures. It is recommended that you use a tested distribution.                                                                                                                                  
  3. Loading cache: 100% |##################################################################################################################################| ETA:  00:00:00
  4. Loaded 1821 entries from dependency cache.
  5. NOTE: Resolving any missing task queue dependencies
  6.  
  7. Build Configuration:
  8. BB_VERSION        = "1.22.0"
  9. BUILD_SYS         = "x86_64-linux"
  10. NATIVELSBSTRING   = "Gentoo-2.2"
  11. TARGET_SYS        = "arm-poky-linux-gnueabi"
  12. MACHINE           = "imx233-olinuxino-maxi"
  13. DISTRO            = "poky"
  14. DISTRO_VERSION    = "1.6.1"
  15. TUNE_FEATURES     = "armv5 thumb dsp"
  16. TARGET_FPU        = "soft"
  17. meta              
  18. meta-yocto        = "(detachedfrom8e05d5e):8e05d5e3fe04face623c4f9fb08b12f13c22edab"
  19. meta-oe           = "(detachedfromee24939):ee24939c4c70b63a9fb7e93a58889a3231d3d367"
  20. meta-fsl-arm      = "(detachedfromd918714):d91871446d6baee8397522c4fa10d45985aa8645"
  21. meta-fsl-arm-extra = "(detachedfrom456c270):456c27085a70bb1385a4c2e28ba80ac74d6f533e"
  22. meta-fsl-demos    = "(nobranch):27fdb2f2642ecd55d5633bde880dd4c37acd0d42"
  23.  
  24. NOTE: Preparing runqueue
  25. NOTE: Executing SetScene Tasks
  26. NOTE: Executing RunQueue Tasks
  27. ERROR: Error executing a python function in /home/hamma/projects/imx233/fsl-community-bsp/sources/meta-fsl-arm/recipes-kernel/linux/linux-fslc_3.14.bb:
  28.  
  29. The stack trace of python calls that resulted in this exception/failure was:
  30. File: 'do_menuconfig', lineno: 25, function: <module>                                                                                                                  
  31.      0021:            bb.note("Configuration changed, recompile will be forced")                                                                                      
  32.      0022:            bb.build.write_taint('do_compile', d)                                                                                                            
  33.      0023:                                                                                                                                                            
  34.      0024:                                                                                                                                                            
  35.  *** 0025:do_menuconfig(d)                                                                                                                                            
  36.      0026:                                                                                                                                                            
  37. File: 'do_menuconfig', lineno: 11, function: do_menuconfig                                                                                                            
  38.      0007:        shutil.copy(".config", ".config.orig")                                                                                                              
  39.      0008:    except OSError:                                                                                                                                          
  40.      0009:        mtime = 0                                                                                                                                            
  41.      0010:                                                                                                                                                            
  42.  *** 0011:    oe_terminal("/bin/bash -c \"make menuconfig; if [ \$? -ne 0 ]; then echo 'Command failed.'; printf 'Press any key to continue... '; read r; fi\"", 'linux-fslc Configuration', d)                                                                                                                                              
  43.      0012:                                                                                                                                                            
  44.      0013:    # FIXME this check can be removed when the minimum bitbake version has been bumped                                                                      
  45.      0014:    if hasattr(bb.build, 'write_taint'):                                                                                                                    
  46.      0015:        try:                                                                                                                                                
  47. File: 'terminal.bbclass', lineno: 55, function: oe_terminal                                                                                                            
  48.      0051:        except oe.terminal.ExecutionError as exc:                                                                                                            
  49.      0052:            bb.fatal('Unable to spawn terminal %s: %s' % (terminal, exc))                                                                                    
  50.      0053:                                                                                                                                                            
  51.      0054:    try:                                                                                                                                                    
  52.  *** 0055:        oe.terminal.spawn_preferred(command, title, None, d)                                                                                                
  53.      0056:    except oe.terminal.NoSupportedTerminals:                                                                                                                
  54.      0057:        bb.fatal('No valid terminal found, unable to open devshell')                                                                                        
  55.      0058:    except oe.terminal.ExecutionError as exc:                                                                                                                
  56.      0059:        bb.fatal('Unable to spawn terminal %s: %s' % (terminal, exc))                                                                                        
  57. File: '/home/hamma/projects/imx233/fsl-community-bsp/sources/poky/meta/lib/oe/terminal.py', lineno: 163, function: spawn_preferred                                    
  58.      0159:def spawn_preferred(sh_cmd, title=None, env=None, d=None):                                                                                                  
  59.      0160:    """Spawn the first supported terminal, by priority"""                                                                                                    
  60.      0161:    for terminal in prioritized():                                                                                                                          
  61.      0162:        try:                                                                                                                                                
  62.  *** 0163:            spawn(terminal.name, sh_cmd, title, env, d)                                                                                                      
  63.      0164:            break                                                                                                                                            
  64.      0165:        except UnsupportedTerminal:                                                                                                                          
  65.      0166:            continue                                                                                                                                        
  66.      0167:    else:                                                                                                                                                    
  67. File: '/home/hamma/projects/imx233/fsl-community-bsp/sources/poky/meta/lib/oe/terminal.py', lineno: 178, function: spawn                                              
  68.      0174:        terminal = Registry.registry[name]                                                                                                                  
  69.      0175:    except KeyError:                                                                                                                                        
  70.      0176:        raise UnsupportedTerminal(name)                                                                                                                      
  71.      0177:                                                                                                                                                            
  72.  *** 0178:    pipe = terminal(sh_cmd, title, env, d)                                                                                                                  
  73.      0179:    output = pipe.communicate()[0]                                                                                                                          
  74.      0180:    if pipe.returncode != 0:                                                                                                                                
  75.      0181:        raise ExecutionError(sh_cmd, pipe.returncode, output)                                                                                                
  76.      0182:                                                                                                                                                            
  77. File: '/home/hamma/projects/imx233/fsl-community-bsp/sources/poky/meta/lib/oe/terminal.py', lineno: 50, function: __init__                                            
  78.      0046:            return [element.format(**fmt) for element in self.command]                                                                                      
  79.      0047:                                                                                                                                                            
  80.      0048:class XTerminal(Terminal):                                                                                                                                  
  81.      0049:    def __init__(self, sh_cmd, title=None, env=None, d=None):                                                                                                
  82.  *** 0050:        Terminal.__init__(self, sh_cmd, title, env, d)                                                                                                      
  83.      0051:        if not os.environ.get('DISPLAY'):                                                                                                                    
  84.      0052:            raise UnsupportedTerminal(self.name)                                                                                                            
  85.      0053:                                                                                                                                                            
  86.      0054:class Gnome(XTerminal):                                                                                                                                      
  87. File: '/home/hamma/projects/imx233/fsl-community-bsp/sources/poky/meta/lib/oe/terminal.py', lineno: 33, function: __init__                                            
  88.      0029:                                                                                                                                                            
  89.      0030:    def __init__(self, sh_cmd, title=None, env=None, d=None):                                                                                                
  90.      0031:        fmt_sh_cmd = self.format_command(sh_cmd, title)                                                                                                      
  91.      0032:        try:                                                                                                                                                
  92.  *** 0033:            Popen.__init__(self, fmt_sh_cmd, env=env)                                                                                                        
  93.      0034:        except OSError as exc:                                                                                                                              
  94.      0035:            import errno                                                                                                                                    
  95.      0036:            if exc.errno == errno.ENOENT:                                                                                                                    
  96.      0037:                raise UnsupportedTerminal(self.name)                                                                                                        
  97. File: '/home/hamma/projects/imx233/fsl-community-bsp/sources/poky/bitbake/lib/bb/process.py', lineno: 65, function: __init__                                          
  98.      0061:                                                                                                                                                            
  99.      0062:    def __init__(self, *args, **kwargs):                                                                                                                    
  100.      0063:        options = dict(self.defaults)                                                                                                                        
  101.      0064:        options.update(kwargs)                                                                                                                              
  102.  *** 0065:        subprocess.Popen.__init__(self, *args, **options)                                                                                                    
  103.      0066:                                                                                                                                                            
  104.      0067:def _logged_communicate(pipe, log, input):                                                                                                                  
  105.      0068:    if pipe.stdin:                                                                                                                                          
  106.      0069:        if input is not None:                                                                                                                                
  107. File: '/usr/lib64/python2.7/subprocess.py', lineno: 709, function: __init__                                                                                            
  108.      0705:                                cwd, env, universal_newlines,                                                                                                
  109.      0706:                                startupinfo, creationflags, shell, to_close,                                                                                
  110.      0707:                                p2cread, p2cwrite,                                                                                                          
  111.      0708:                                c2pread, c2pwrite,                                                                                                          
  112.  *** 0709:                                errread, errwrite)                                                                                                          
  113.      0710:        except Exception:                                                                                                                                    
  114.      0711:            # Preserve original exception in case os.close raises.                                                                                          
  115.      0712:            exc_type, exc_value, exc_trace = sys.exc_info()                                                                                                  
  116.      0713:
  117. File: '/usr/lib64/python2.7/subprocess.py', lineno: 1326, function: _execute_child
  118.      1322:                except OSError as e:
  119.      1323:                    if e.errno != errno.ECHILD:
  120.      1324:                        raise
  121.      1325:                child_exception = pickle.loads(data)
  122.  *** 1326:                raise child_exception
  123.      1327:
  124.      1328:
  125.      1329:        def _handle_exitstatus(self, sts, _WIFSIGNALED=os.WIFSIGNALED,
  126.      1330:                _WTERMSIG=os.WTERMSIG, _WIFEXITED=os.WIFEXITED,
  127. Exception: OSError: [Errno 13] Permission denied
  128.  
  129. ERROR: Function failed: do_menuconfig
  130. ERROR: Logfile of failure stored in: /home/hamma/projects/imx233/fsl-community-bsp/build/tmp/work/imx233_olinuxino_maxi-poky-linux-gnueabi/linux-fslc/3.14+gitAUTOINC+c34636a557-r0/temp/log.do_menuconfig.30247
  131. ERROR: Task 4 (/home/hamma/projects/imx233/fsl-community-bsp/sources/meta-fsl-arm/recipes-kernel/linux/linux-fslc_3.14.bb, do_menuconfig) failed with exit code '1'
  132. NOTE: Tasks Summary: Attempted 247 tasks of which 246 didn't need to be rerun and 1 failed.
  133.  
  134. Summary: 1 task failed:
  135.  /home/hamma/projects/imx233/fsl-community-bsp/sources/meta-fsl-arm/recipes-kernel/linux/linux-fslc_3.14.bb, do_menuconfig
  136. Summary: There was 1 WARNING message shown.
  137. Summary: There were 2 ERROR messages shown, returning a non-zero exit code.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement