public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: York Sun <yorksun@freescale.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] Removing the need for boards.cfg
Date: Thu, 7 Aug 2014 13:52:30 -0700	[thread overview]
Message-ID: <53E3E70E.5030407@freescale.com> (raw)
In-Reply-To: <20140805102217.D57A.AA925319@jp.panasonic.com>

On 08/04/2014 06:22 PM, Masahiro Yamada wrote:
> Hi York,
> 
> 
> 
> On Mon, 4 Aug 2014 11:58:56 -0700
> York Sun <yorksun@freescale.com> wrote:
> 
>> On 08/01/2014 06:53 AM, Masahiro Yamada wrote:
>>>
>>> If MAKEALL/buildman is invoked without any arguments
>>> (which means build all the board),
>>> boards.cfg is not necessary in the first place.
>>>
>>> It that case, can we skip generating boards.cfg ?
>>> (We can get the board list by 'ls configs' )
>>>
>>>
>>> We need a database only when we want to select boards by CPU, Vendor, SoC.
>>>
>>
>> Dear Masahiro,
>>
>> What is the best way to replace "./MAKEALL -a powerpc" or "./MAKEALL -a arm"?
>> You must have verified compiling for all targets. I am wondering if you can
>> share your setup. I still heavily rely on MAKEALL to build all targets I care.
>>
>> York
> 
> 
> I think "./MAKEALL -a powerpc" or "./MAKEALL -a arm"
> is still working as it was.

Dear Masahiro,

Generating boards.cfg gives me another trouble. I use Jenkins
(http://jenkins-ci.org/) for internal development. Even I can manually run
MAKEALL to generate boards.cfg, the same script under Jenkins cannot. I have
this error


./MAKEALL -c mpc83xx -c mpc85xx -c mpc86xx
Could not find boards.cfg
Generating boards.cfg ...  (jobs: 8)
Traceback (most recent call last):
  File "tools/genboardscfg.py", line 504, in <module>
    main()
  File "tools/genboardscfg.py", line 501, in main
    gen_boards_cfg(jobs)
  File "tools/genboardscfg.py", line 471, in gen_boards_cfg
    __gen_boards_cfg(jobs)
  File "tools/genboardscfg.py", line 437, in __gen_boards_cfg
    indicator = Indicator(len(defconfigs))
  File "tools/genboardscfg.py", line 384, in __init__
    width = get_terminal_columns()
  File "tools/genboardscfg.py", line 59, in get_terminal_columns
    ret = fcntl.ioctl(sys.stdout.fileno(), termios.TIOCGWINSZ, arg)
IOError: [Errno 22] Invalid argument
Failed to generate boards.cfg

Looks like the script is trying to get the terminal window size. There is no
terminal for my case. Checking variable TERM, it is "dumb". I can make it work
by removing the two lines but I don't think that's the solution.

--- a/tools/genboardscfg.py
+++ b/tools/genboardscfg.py
@@ -58,8 +58,6 @@ def get_terminal_columns():
         try:
             ret = fcntl.ioctl(sys.stdout.fileno(), termios.TIOCGWINSZ, arg)
         except IOError as exception:
-            if exception.errno != errno.ENOTTY:
-                raise

I am not an expert on python. Can you take a deep look? The host has ubuntu
12.04.3 with python 2.7.3.

York

  parent reply	other threads:[~2014-08-07 20:52 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-01 11:48 [U-Boot] Removing the need for boards.cfg Simon Glass
2014-08-01 12:22 ` Masahiro Yamada
2014-08-01 13:38   ` Tom Rini
2014-08-01 13:53     ` Masahiro Yamada
2014-08-01 18:31       ` Wolfgang Denk
2014-08-04 20:45         ` Simon Glass
2014-08-04 18:58       ` York Sun
2014-08-05  1:22         ` Masahiro Yamada
2014-08-05  1:30           ` York Sun
2014-08-07 20:52           ` York Sun [this message]
2014-08-07 20:57             ` Jeroen Hofstee
2014-08-07 21:04               ` York Sun
2014-08-08 11:06   ` Simon Glass
2014-08-08 11:59     ` Tom Rini
2014-08-11  2:15       ` Simon Glass
2014-08-11  2:16       ` Simon Glass
2014-08-11 13:37         ` Tom Rini
2014-08-11 18:17           ` Simon Glass
2014-08-08 13:04 ` Tom Rini
2014-08-11  2:22   ` Simon Glass
2014-08-11 13:40     ` Tom Rini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=53E3E70E.5030407@freescale.com \
    --to=yorksun@freescale.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox