public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH edk2-platforms 0/3] Platform/Qemu/SbsaQemu: Update Readme.md
@ 2022-03-19 20:32 Rebecca Cran
  2022-03-19 20:32 ` [PATCH edk2-platforms 1/3] Platform/Qemu: Update SbsaQemu Readme.md to change 'ATF' to 'TF-A' Rebecca Cran
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Rebecca Cran @ 2022-03-19 20:32 UTC (permalink / raw)
  To: devel, Ard Biesheuvel, Leif Lindholm, Graeme Gregory,
	Radoslaw Biernacki
  Cc: Rebecca Cran

Fix some issues with the SbsaQemu Readme.md file.

Rebecca Cran (3):
  Platform/Qemu: Update SbsaQemu Readme.md to change 'ATF' to 'TF-A'
  Platform/Qemu: Update SbsaQemu Readme.md with current QEMU git URL
  Platform/Qemu: Update SbsaQemu Readme.md with current TF-A build PLAT

 Platform/Qemu/SbsaQemu/Readme.md | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

-- 
2.25.1


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH edk2-platforms 1/3] Platform/Qemu: Update SbsaQemu Readme.md to change 'ATF' to 'TF-A'
  2022-03-19 20:32 [PATCH edk2-platforms 0/3] Platform/Qemu/SbsaQemu: Update Readme.md Rebecca Cran
@ 2022-03-19 20:32 ` Rebecca Cran
  2022-03-24 13:43   ` Leif Lindholm
  2022-03-19 20:32 ` [PATCH edk2-platforms 2/3] Platform/Qemu: Update SbsaQemu Readme.md with current QEMU git URL Rebecca Cran
  2022-03-19 20:32 ` [PATCH edk2-platforms 3/3] Platform/Qemu: Update SbsaQemu Readme.md with current TF-A build PLAT Rebecca Cran
  2 siblings, 1 reply; 5+ messages in thread
From: Rebecca Cran @ 2022-03-19 20:32 UTC (permalink / raw)
  To: devel, Ard Biesheuvel, Leif Lindholm, Graeme Gregory,
	Radoslaw Biernacki
  Cc: Rebecca Cran

Trusted Firmware is no longer called ATF (ARM Trusted Firmware) but is
now TF-A (Trusted Firmware for A-profile architecture). Update
Readme.md to match.

Signed-off-by: Rebecca Cran <rebecca@bsdio.com>
---
 Platform/Qemu/SbsaQemu/Readme.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Platform/Qemu/SbsaQemu/Readme.md b/Platform/Qemu/SbsaQemu/Readme.md
index 63786d9d0fd3..c514c33b7c2f 100644
--- a/Platform/Qemu/SbsaQemu/Readme.md
+++ b/Platform/Qemu/SbsaQemu/Readme.md
@@ -56,7 +56,7 @@ Create a directory $WORKSPACE that would hold source code of the components.
 
 2. Compile TF-A
 
-  This step is only needed if users want to compile a custom ATF binary.
+  This step is only needed if users want to compile a custom TF-A binary.
   Else, the edk2-non-osi directory contains prebuilt bl1.bin and fip.bin
   binaries which will be automatically used in the build process.
 
@@ -65,7 +65,7 @@ Create a directory $WORKSPACE that would hold source code of the components.
   `bl1.bin` and `fip.bin`. Follow the instructions below to get those artifacts.
 
   ```
-  cd $WORKSPACE/atf
+  cd $WORKSPACE/trusted-firmware-a
   make PLAT=sbsa all fip
   ```
   Then copy `bl1.bin` and `fip.bin` to the the edk2-non-osi directory:
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH edk2-platforms 2/3] Platform/Qemu: Update SbsaQemu Readme.md with current QEMU git URL
  2022-03-19 20:32 [PATCH edk2-platforms 0/3] Platform/Qemu/SbsaQemu: Update Readme.md Rebecca Cran
  2022-03-19 20:32 ` [PATCH edk2-platforms 1/3] Platform/Qemu: Update SbsaQemu Readme.md to change 'ATF' to 'TF-A' Rebecca Cran
@ 2022-03-19 20:32 ` Rebecca Cran
  2022-03-19 20:32 ` [PATCH edk2-platforms 3/3] Platform/Qemu: Update SbsaQemu Readme.md with current TF-A build PLAT Rebecca Cran
  2 siblings, 0 replies; 5+ messages in thread
From: Rebecca Cran @ 2022-03-19 20:32 UTC (permalink / raw)
  To: devel, Ard Biesheuvel, Leif Lindholm, Graeme Gregory,
	Radoslaw Biernacki
  Cc: Rebecca Cran

The canonical QEMU Git URL isn't GitHub, but GitLab.

Signed-off-by: Rebecca Cran <rebecca@bsdio.com>
---
 Platform/Qemu/SbsaQemu/Readme.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Platform/Qemu/SbsaQemu/Readme.md b/Platform/Qemu/SbsaQemu/Readme.md
index c514c33b7c2f..692f9702de56 100644
--- a/Platform/Qemu/SbsaQemu/Readme.md
+++ b/Platform/Qemu/SbsaQemu/Readme.md
@@ -27,7 +27,7 @@ Flash1 contains EFI code and EFI variables.
 
 Create a directory $WORKSPACE that would hold source code of the components.
 
-  1. [qemu](https://github.com/qemu/qemu.git)
+  1. [qemu](https://gitlab.com/qemu-project/qemu.git)
   2. [edk2](https://github.com/tianocore/edk2)
   3. [edk2-platforms](https://github.com/tianocore/edk2-platforms)
   4. [edk2-non-osi](https://github.com/tianocore/edk2-non-osi)
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH edk2-platforms 3/3] Platform/Qemu: Update SbsaQemu Readme.md with current TF-A build PLAT
  2022-03-19 20:32 [PATCH edk2-platforms 0/3] Platform/Qemu/SbsaQemu: Update Readme.md Rebecca Cran
  2022-03-19 20:32 ` [PATCH edk2-platforms 1/3] Platform/Qemu: Update SbsaQemu Readme.md to change 'ATF' to 'TF-A' Rebecca Cran
  2022-03-19 20:32 ` [PATCH edk2-platforms 2/3] Platform/Qemu: Update SbsaQemu Readme.md with current QEMU git URL Rebecca Cran
@ 2022-03-19 20:32 ` Rebecca Cran
  2 siblings, 0 replies; 5+ messages in thread
From: Rebecca Cran @ 2022-03-19 20:32 UTC (permalink / raw)
  To: devel, Ard Biesheuvel, Leif Lindholm, Graeme Gregory,
	Radoslaw Biernacki
  Cc: Rebecca Cran

To build TF-A for QEMU Sbsa PLAT=qemu_sbsa should now be specified.

Signed-off-by: Rebecca Cran <rebecca@bsdio.com>
---
 Platform/Qemu/SbsaQemu/Readme.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Platform/Qemu/SbsaQemu/Readme.md b/Platform/Qemu/SbsaQemu/Readme.md
index 692f9702de56..b63bcfe4413b 100644
--- a/Platform/Qemu/SbsaQemu/Readme.md
+++ b/Platform/Qemu/SbsaQemu/Readme.md
@@ -66,13 +66,13 @@ Create a directory $WORKSPACE that would hold source code of the components.
 
   ```
   cd $WORKSPACE/trusted-firmware-a
-  make PLAT=sbsa all fip
+  make PLAT=qemu_sbsa all fip
   ```
   Then copy `bl1.bin` and `fip.bin` to the the edk2-non-osi directory:
 
   ```
-  cp build/sbsa/release/bl1.bin $WORKSPACE/edk2-non-osi/Platform/Qemu/Sbsa/
-  cp build/sbsa/release/fip.bin $WORKSPACE/edk2-non-osi/Platform/Qemu/Sbsa/
+  cp build/qemu_sbsa/release/bl1.bin $WORKSPACE/edk2-non-osi/Platform/Qemu/Sbsa/
+  cp build/qemu_sbsa/release/fip.bin $WORKSPACE/edk2-non-osi/Platform/Qemu/Sbsa/
   ```
 
 3. Compile UEFI for QEMU Sbsa platform
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH edk2-platforms 1/3] Platform/Qemu: Update SbsaQemu Readme.md to change 'ATF' to 'TF-A'
  2022-03-19 20:32 ` [PATCH edk2-platforms 1/3] Platform/Qemu: Update SbsaQemu Readme.md to change 'ATF' to 'TF-A' Rebecca Cran
@ 2022-03-24 13:43   ` Leif Lindholm
  0 siblings, 0 replies; 5+ messages in thread
From: Leif Lindholm @ 2022-03-24 13:43 UTC (permalink / raw)
  To: Rebecca Cran; +Cc: devel, Ard Biesheuvel, Graeme Gregory, Radoslaw Biernacki

For the series:

Reviewed-by: Leif Lindholm <quic_llindhol@quicinc.com>
Pushed as 1b548f8e16a9..41628dcf3332.
Thanks!

On Sat, Mar 19, 2022 at 14:32:50 -0600, Rebecca Cran wrote:
> Trusted Firmware is no longer called ATF (ARM Trusted Firmware) but is
> now TF-A (Trusted Firmware for A-profile architecture). Update
> Readme.md to match.
> 
> Signed-off-by: Rebecca Cran <rebecca@bsdio.com>
> ---
>  Platform/Qemu/SbsaQemu/Readme.md | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/Platform/Qemu/SbsaQemu/Readme.md b/Platform/Qemu/SbsaQemu/Readme.md
> index 63786d9d0fd3..c514c33b7c2f 100644
> --- a/Platform/Qemu/SbsaQemu/Readme.md
> +++ b/Platform/Qemu/SbsaQemu/Readme.md
> @@ -56,7 +56,7 @@ Create a directory $WORKSPACE that would hold source code of the components.
>  
>  2. Compile TF-A
>  
> -  This step is only needed if users want to compile a custom ATF binary.
> +  This step is only needed if users want to compile a custom TF-A binary.
>    Else, the edk2-non-osi directory contains prebuilt bl1.bin and fip.bin
>    binaries which will be automatically used in the build process.
>  
> @@ -65,7 +65,7 @@ Create a directory $WORKSPACE that would hold source code of the components.
>    `bl1.bin` and `fip.bin`. Follow the instructions below to get those artifacts.
>  
>    ```
> -  cd $WORKSPACE/atf
> +  cd $WORKSPACE/trusted-firmware-a
>    make PLAT=sbsa all fip
>    ```
>    Then copy `bl1.bin` and `fip.bin` to the the edk2-non-osi directory:
> -- 
> 2.25.1
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-03-24 13:43 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-19 20:32 [PATCH edk2-platforms 0/3] Platform/Qemu/SbsaQemu: Update Readme.md Rebecca Cran
2022-03-19 20:32 ` [PATCH edk2-platforms 1/3] Platform/Qemu: Update SbsaQemu Readme.md to change 'ATF' to 'TF-A' Rebecca Cran
2022-03-24 13:43   ` Leif Lindholm
2022-03-19 20:32 ` [PATCH edk2-platforms 2/3] Platform/Qemu: Update SbsaQemu Readme.md with current QEMU git URL Rebecca Cran
2022-03-19 20:32 ` [PATCH edk2-platforms 3/3] Platform/Qemu: Update SbsaQemu Readme.md with current TF-A build PLAT Rebecca Cran

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox