diff mbox series

[Linaro-uefi,v2] opteed-build.sh: Copy images to UEFI dir

Message ID 20180329022616.21218-1-victor.chong@linaro.org
State New
Headers show
Series [Linaro-uefi,v2] opteed-build.sh: Copy images to UEFI dir | expand

Commit Message

Victor Chong March 29, 2018, 2:26 a.m. UTC
atf-build.sh expects TOS binaries to be available in the UEFI image
dir so copy them there.

Fixes: 0c485dab ("opteed-build.sh: Remove copy of images to UEFI dir")
Signed-off-by: Victor Chong <victor.chong@linaro.org>
---
 opteed-build.sh | 13 +++++++++++++
 1 file changed, 13 insertions(+)

--
2.16.2

Comments

Leif Lindholm March 29, 2018, 10:46 p.m. UTC | #1
Series pushed as 632d0c3..b373918.

On Thu, Mar 29, 2018 at 03:26:16AM +0100, Victor Chong wrote:
> atf-build.sh expects TOS binaries to be available in the UEFI image
> dir so copy them there.
> 
> Fixes: 0c485dab ("opteed-build.sh: Remove copy of images to UEFI dir")
> Signed-off-by: Victor Chong <victor.chong@linaro.org>
> ---
>  opteed-build.sh | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
> 
> diff --git a/opteed-build.sh b/opteed-build.sh
> index 40fb844..6840484 100755
> --- a/opteed-build.sh
> +++ b/opteed-build.sh
> @@ -105,6 +105,19 @@ function build_platform
>  		TOS_BIN="`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $1 get -o tos_bin`"
>  		TOS_BIN_EXTRA1="`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $1 get -o tos_bin_extra1`"
>  		TOS_BIN_EXTRA2="`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $1 get -o tos_bin_extra2`"
> +		DESTDIR="$EDK2_DIR/Build/$PLATFORM_IMAGE_DIR/$BUILD_PROFILE/FV/"
> +		COREDIR="out/$TOS_ARCH-plat-$TOS_PLATFORM/core"
> +		if [ $VERBOSE -eq 1 ]; then
> +			echo "Copying TOS binaries to '$DESTDIR'"
> +			CPFLAGS="-v"
> +		else
> +			CPFLAGS=""
> +		fi
> +		for file in $COREDIR/{"$TOS_BIN","$TOS_BIN_EXTRA1","$TOS_BIN_EXTRA2"}; do
> +			if [ -f "$file" ]; then
> +				cp -a $CPFLAGS $file "$DESTDIR"
> +			fi
> +		done
>  	else
>  		return 1
>  	fi
> --
> 2.16.2
>
Victor Chong March 30, 2018, 1:32 a.m. UTC | #2
Thanks!

On Fri, Mar 30, 2018 at 7:46 AM, Leif Lindholm <leif.lindholm@linaro.org> wrote:
> Series pushed as 632d0c3..b373918.
>
> On Thu, Mar 29, 2018 at 03:26:16AM +0100, Victor Chong wrote:
>> atf-build.sh expects TOS binaries to be available in the UEFI image
>> dir so copy them there.
>>
>> Fixes: 0c485dab ("opteed-build.sh: Remove copy of images to UEFI dir")
>> Signed-off-by: Victor Chong <victor.chong@linaro.org>
>> ---
>>  opteed-build.sh | 13 +++++++++++++
>>  1 file changed, 13 insertions(+)
>>
>> diff --git a/opteed-build.sh b/opteed-build.sh
>> index 40fb844..6840484 100755
>> --- a/opteed-build.sh
>> +++ b/opteed-build.sh
>> @@ -105,6 +105,19 @@ function build_platform
>>               TOS_BIN="`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $1 get -o tos_bin`"
>>               TOS_BIN_EXTRA1="`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $1 get -o tos_bin_extra1`"
>>               TOS_BIN_EXTRA2="`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $1 get -o tos_bin_extra2`"
>> +             DESTDIR="$EDK2_DIR/Build/$PLATFORM_IMAGE_DIR/$BUILD_PROFILE/FV/"
>> +             COREDIR="out/$TOS_ARCH-plat-$TOS_PLATFORM/core"
>> +             if [ $VERBOSE -eq 1 ]; then
>> +                     echo "Copying TOS binaries to '$DESTDIR'"
>> +                     CPFLAGS="-v"
>> +             else
>> +                     CPFLAGS=""
>> +             fi
>> +             for file in $COREDIR/{"$TOS_BIN","$TOS_BIN_EXTRA1","$TOS_BIN_EXTRA2"}; do
>> +                     if [ -f "$file" ]; then
>> +                             cp -a $CPFLAGS $file "$DESTDIR"
>> +                     fi
>> +             done
>>       else
>>               return 1
>>       fi
>> --
>> 2.16.2
>>
diff mbox series

Patch

diff --git a/opteed-build.sh b/opteed-build.sh
index 40fb844..6840484 100755
--- a/opteed-build.sh
+++ b/opteed-build.sh
@@ -105,6 +105,19 @@  function build_platform
 		TOS_BIN="`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $1 get -o tos_bin`"
 		TOS_BIN_EXTRA1="`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $1 get -o tos_bin_extra1`"
 		TOS_BIN_EXTRA2="`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $1 get -o tos_bin_extra2`"
+		DESTDIR="$EDK2_DIR/Build/$PLATFORM_IMAGE_DIR/$BUILD_PROFILE/FV/"
+		COREDIR="out/$TOS_ARCH-plat-$TOS_PLATFORM/core"
+		if [ $VERBOSE -eq 1 ]; then
+			echo "Copying TOS binaries to '$DESTDIR'"
+			CPFLAGS="-v"
+		else
+			CPFLAGS=""
+		fi
+		for file in $COREDIR/{"$TOS_BIN","$TOS_BIN_EXTRA1","$TOS_BIN_EXTRA2"}; do
+			if [ -f "$file" ]; then
+				cp -a $CPFLAGS $file "$DESTDIR"
+			fi
+		done
 	else
 		return 1
 	fi