mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
Merge branch 'tom' of git://git.denx.de/u-boot-x86
This commit is contained in:
commit
80a7cac033
3 changed files with 8 additions and 3 deletions
|
@ -40,10 +40,11 @@ Supported Arcthitectures
|
|||
------------------------
|
||||
|
||||
If you are unlucky then your architecture may not support generic board.
|
||||
The following architectures are supported at the time of writing:
|
||||
The following architectures are supported now:
|
||||
|
||||
arc
|
||||
arm
|
||||
mips
|
||||
powerpc
|
||||
sandbox
|
||||
x86
|
||||
|
|
|
@ -66,7 +66,7 @@ class Toolchain:
|
|||
Returns:
|
||||
Priority of toolchain, 0=highest, 20=lowest.
|
||||
"""
|
||||
priority_list = ['-elf', '-unknown-linux-gnu', '-linux', '-elf',
|
||||
priority_list = ['-elf', '-unknown-linux-gnu', '-linux',
|
||||
'-none-linux-gnueabi', '-uclinux', '-none-eabi',
|
||||
'-gentoo-linux-gnu', '-linux-gnueabi', '-le-linux', '-uclinux']
|
||||
for prio in range(len(priority_list)):
|
||||
|
@ -103,7 +103,7 @@ class Toolchains:
|
|||
if not toolchains:
|
||||
print ("Warning: No tool chains - please add a [toolchain] section"
|
||||
" to your buildman config file %s. See README for details" %
|
||||
config_fname)
|
||||
bsettings.config_fname)
|
||||
|
||||
for name, value in toolchains:
|
||||
if '*' in value:
|
||||
|
|
|
@ -232,6 +232,10 @@ def ApplyPatches(verbose, args, start_point):
|
|||
print stdout
|
||||
return False
|
||||
old_head = stdout.splitlines()[0]
|
||||
if old_head == 'undefined':
|
||||
str = "Invalid HEAD '%s'" % stdout.strip()
|
||||
print col.Color(col.RED, str)
|
||||
return False
|
||||
|
||||
# Checkout the required start point
|
||||
cmd = ['git', 'checkout', 'HEAD~%d' % start_point]
|
||||
|
|
Loading…
Reference in a new issue