diff options
author | Radoslaw Biernacki <radoslaw.biernacki@linaro.org> | 2018-05-17 22:19:11 +0200 |
---|---|---|
committer | Sandrine Bailleux <sandrine.bailleux@arm.com> | 2019-09-18 15:57:17 +0200 |
commit | 301d27d998892c054dec925264f81b11dcd64822 (patch) | |
tree | ba08727d1b3977a95da34a41b2fe89d12b578ff0 /plat/qemu/qemu_rotpk.S | |
parent | ed01e0c407a1794faf8ff8173183a50419bbd2ae (diff) | |
download | platform_external_arm-trusted-firmware-301d27d998892c054dec925264f81b11dcd64822.tar.gz platform_external_arm-trusted-firmware-301d27d998892c054dec925264f81b11dcd64822.tar.bz2 platform_external_arm-trusted-firmware-301d27d998892c054dec925264f81b11dcd64822.zip |
qemu: introducing sub-platforms to qemu platform
This commit change the plat/qemu directory structure into:
`-- plat
`-- qemu
|-- common (files shared with all qemu subplatforms)
|-- qemu (original qemu platform)
|-- qemu_sbsa (new sqemu_sbsa platform)
|-- subplat1
`-- subplat2
This opens the possibility of adding new qemu sub-platforms which reuse
existing common platform code. The first platform which will leverage new
structure will be SBSA platform.
Signed-off-by: Radoslaw Biernacki <radoslaw.biernacki@linaro.org>
Signed-off-by: Sandrine Bailleux <sandrine.bailleux@arm.com>
Change-Id: Id0d8133e1fffc1b574b69aa2770ebc02bb837a9b
Diffstat (limited to 'plat/qemu/qemu_rotpk.S')
-rw-r--r-- | plat/qemu/qemu_rotpk.S | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/plat/qemu/qemu_rotpk.S b/plat/qemu/qemu_rotpk.S deleted file mode 100644 index 5d1b83f40..000000000 --- a/plat/qemu/qemu_rotpk.S +++ /dev/null @@ -1,15 +0,0 @@ -/* - * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved. - * - * SPDX-License-Identifier: BSD-3-Clause - */ - - .global qemu_rotpk_hash - .global qemu_rotpk_hash_end -qemu_rotpk_hash: - /* DER header */ - .byte 0x30, 0x31, 0x30, 0x0D, 0x06, 0x09, 0x60, 0x86, 0x48 - .byte 0x01, 0x65, 0x03, 0x04, 0x02, 0x01, 0x05, 0x00, 0x04, 0x20 - /* SHA256 */ - .incbin ROTPK_HASH -qemu_rotpk_hash_end: |