Commit 80a7cac033082ec3e106cfcc736a126ec6547d85

Authored by Tom Rini

Merge branch 'tom' of git://git.denx.de/u-boot-x86

Showing 3 changed files Side-by-side Diff

doc/README.generic-board
... ... @@ -40,10 +40,11 @@
40 40 ------------------------
41 41  
42 42 If you are unlucky then your architecture may not support generic board.
43   -The following architectures are supported at the time of writing:
  43 +The following architectures are supported now:
44 44  
45 45 arc
46 46 arm
  47 + mips
47 48 powerpc
48 49 sandbox
49 50 x86
tools/buildman/toolchain.py
... ... @@ -66,7 +66,7 @@
66 66 Returns:
67 67 Priority of toolchain, 0=highest, 20=lowest.
68 68 """
69   - priority_list = ['-elf', '-unknown-linux-gnu', '-linux', '-elf',
  69 + priority_list = ['-elf', '-unknown-linux-gnu', '-linux',
70 70 '-none-linux-gnueabi', '-uclinux', '-none-eabi',
71 71 '-gentoo-linux-gnu', '-linux-gnueabi', '-le-linux', '-uclinux']
72 72 for prio in range(len(priority_list)):
... ... @@ -103,7 +103,7 @@
103 103 if not toolchains:
104 104 print ("Warning: No tool chains - please add a [toolchain] section"
105 105 " to your buildman config file %s. See README for details" %
106   - config_fname)
  106 + bsettings.config_fname)
107 107  
108 108 for name, value in toolchains:
109 109 if '*' in value:
tools/patman/gitutil.py
... ... @@ -232,6 +232,10 @@
232 232 print stdout
233 233 return False
234 234 old_head = stdout.splitlines()[0]
  235 + if old_head == 'undefined':
  236 + str = "Invalid HEAD '%s'" % stdout.strip()
  237 + print col.Color(col.RED, str)
  238 + return False
235 239  
236 240 # Checkout the required start point
237 241 cmd = ['git', 'checkout', 'HEAD~%d' % start_point]