summaryrefslogtreecommitdiffstats
path: root/tools/genboardscfg.py
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.m@jp.panasonic.com>2014-08-06 13:42:34 +0900
committerTom Rini <trini@ti.com>2014-08-21 12:01:13 -0400
commitca418dd74b8308012bd9a342339823c81de510a0 (patch)
treef7b120ceb71fc174c724c2adb15b48161effc7f8 /tools/genboardscfg.py
parentb1ba62d4ae970a2da00371670a2c909f139d0f80 (diff)
downloadtalos-obmc-uboot-ca418dd74b8308012bd9a342339823c81de510a0.tar.gz
talos-obmc-uboot-ca418dd74b8308012bd9a342339823c81de510a0.zip
tools/genboardscfg.py: Do not output SPLCPU field
Prior to Kconfig, the CPU field of boards.cfg could optionally have ":SPLCPU", like "armv7:arm720t". (Actually this syntax was only used for Tegra platform.) Now it is not necessary at all because CPU is defined by CONFIG_SYS_CPU in Kconfig. For Tegra platform, the Kconfig option is described as follows: config SYS_CPU string default "arm720t" if SPL_BUILD default "armv7" if !SPL_BUILD Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'tools/genboardscfg.py')
-rwxr-xr-xtools/genboardscfg.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/tools/genboardscfg.py b/tools/genboardscfg.py
index 99e4e872fc..ffef2381a5 100755
--- a/tools/genboardscfg.py
+++ b/tools/genboardscfg.py
@@ -36,7 +36,7 @@ COMMENT_BLOCK = '''#
# List of boards
# Automatically generated by %s: don't edit
#
-# Status, Arch, CPU(:SPLCPU), SoC, Vendor, Board, Target, Options, Maintainers
+# Status, Arch, CPU, SoC, Vendor, Board, Target, Options, Maintainers
''' % __file__
@@ -209,12 +209,10 @@ class DotConfigParser:
if not field in fields:
sys.exit('Error: %s is not defined in %s' % (field, defconfig))
- # fix-up for aarch64 and tegra
+ # fix-up for aarch64
if fields['arch'] == 'arm' and 'cpu' in fields:
if fields['cpu'] == 'armv8':
fields['arch'] = 'aarch64'
- if 'soc' in fields and re.match('tegra[0-9]*$', fields['soc']):
- fields['cpu'] += ':arm720t'
target, match, rear = defconfig.partition('_defconfig')
assert match and not rear, \
OpenPOWER on IntegriCloud