From 40fce1392a8c6125aa3cecec5f1c9863356cf540 Mon Sep 17 00:00:00 2001 From: Sergei Trofimov Date: Tue, 2 Feb 2016 12:36:56 +0000 Subject: [PATCH] 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. --- devlib/platform/arm.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/devlib/platform/arm.py b/devlib/platform/arm.py index 2f60c56..238acf0 100644 --- a/devlib/platform/arm.py +++ b/devlib/platform/arm.py @@ -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)