mirror of
https://github.com/ARM-software/devlib.git
synced 2025-09-01 17:41:54 +01: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:
@@ -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)
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user