]> git.sur5r.net Git - u-boot/blobdiff - tools/genboardscfg.py
tools/genboardscfg.py: Do not output SPLCPU field
[u-boot] / tools / genboardscfg.py
index 99e4e872fc483d3f4ffcad994b4eb2a97cf5b23c..ffef2381a505b3a0220f57835878cac1f122afa8 100755 (executable)
@@ -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, \