1
0
mirror of https://github.com/ARM-software/devlib.git synced 2025-01-31 02:00:45 +00:00

ARM platforms: fixing big_core setting.

Juno and TC2 platfroms where ignorring big_core parameter passed in,
always setting it to their corresponding defaults. This removes that
problem, and removes the setting of the big core defaults entirely, as
they would be adentified through the regular Platform mechanism.
This commit is contained in:
Sergei Trofimov 2016-02-02 12:36:56 +00:00
parent 10a80d2335
commit 40fce1392a

View File

@ -177,7 +177,6 @@ class Juno(VersatileExpressPlatform):
baudrate=115200,
bootloader='u-boot',
hard_reset_method='dtr',
big_core='a57',
**kwargs
):
super(Juno, self).__init__('juno',
@ -185,7 +184,6 @@ class Juno(VersatileExpressPlatform):
baudrate=baudrate,
bootloader=bootloader,
hard_reset_method=hard_reset_method,
big_core='a57',
**kwargs)
@ -196,7 +194,6 @@ class TC2(VersatileExpressPlatform):
baudrate=38400,
bootloader='bootmon',
hard_reset_method='reboottxt',
big_core='a15',
**kwargs
):
super(TC2, self).__init__('tc2',
@ -204,7 +201,6 @@ class TC2(VersatileExpressPlatform):
baudrate=baudrate,
bootloader=bootloader,
hard_reset_method=hard_reset_method,
big_core='a15',
**kwargs)