Update secure binaries

pull/9666/head
Oren Cohen 2019-02-22 02:04:00 +02:00
parent 84f0e7be5b
commit 49aae7b43e
No known key found for this signature in database
GPG Key ID: 6F54A3184C6F8FF9
10 changed files with 67001 additions and 85819 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -7,17 +7,7 @@ These images were compiled by the following command:
```
mbed compile -m FUTURE_SEQUANA_M0_PSA -t GCC_ARM --profile release -N psa_release_1.0
mbed compile -m FUTURE_SEQUANA_M0_PSA -t GCC_ARM --profile debug -N psa_debug_1.0
mbed test --compile -m FUTURE_SEQUANA_M0_PSA -t GCC_ARM --profile debug -n *psa-spm*
```
There are also prebuilt images for PSA tests.
Those images can be found in the test folder under a `TARGET_FUTURE_SEQUANA_PSA` directory
These images were compiled by the following command:
```
mbed test --compile -m FUTURE_SEQUANA_M0_PSA -t GCC_ARM --profile debug -n *psa-*
```
To update the prebuilt binaries run the previous commands and then run ```python export_binaries.py```
To update the prebuilt binaries run the previous commands.

View File

@ -1,36 +0,0 @@
# Copyright (c) 2017-2018 ARM Limited
#
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import fnmatch
import shutil
import os
SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))
ROOT_DIR = os.path.realpath(os.path.join(SCRIPT_DIR, '..', '..', '..', '..', '..'))
DELIVERY_DIR = os.path.join(ROOT_DIR, 'DELIVERY', 'TARGET_FUTURE_SEQUANA_PSA')
for f in fnmatch.filter(os.listdir(DELIVERY_DIR), '*.hex'):
test_suite_name = os.path.splitext(f)[0]
test_directory = os.path.join(ROOT_DIR, 'TESTS', 'psa', test_suite_name)
if os.path.exists(test_directory):
target_dir = os.path.join(test_directory, 'TARGET_FUTURE_SEQUANA_PSA', f)
if not os.path.exists(os.path.join(test_directory, 'TARGET_FUTURE_SEQUANA_PSA')):
continue
else:
target_dir = os.path.join(SCRIPT_DIR, f)
shutil.copyfile(os.path.join(DELIVERY_DIR, f), target_dir)