[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [ImageBuilder PATCH v2] uboot-script-gen: use size from arm64 Image header


  • To: Michal Orzel <michal.orzel@xxxxxxx>, <xen-devel@xxxxxxxxxxxxxxxxxxxx>
  • From: Stewart Hildebrand <stewart.hildebrand@xxxxxxx>
  • Date: Wed, 13 Sep 2023 09:31:08 -0400
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass (sender ip is 165.204.84.17) smtp.rcpttodomain=lists.xenproject.org smtp.mailfrom=amd.com; dmarc=pass (p=quarantine sp=quarantine pct=100) action=none header.from=amd.com; dkim=none (message not signed); arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=HS7Tx0a0EzzAaYBcPzCz5djOD/Bqilx8H5ofIMYXJ/4=; b=ZpBPlWgLu824JL/mI9UBmQH4chmoj6K2g89VDjWL6MfE0bjXP+TpXmJhojH3APXEpTWPcVPTDENP6BJJaw4UohsHZNJhQYgQBj1Cfb4xZy2dwvSlESm89+lkAGRcv2wQ4G3ES6wqa9wWFqHtffTofOPJkqeAuq8FwXuOlfM57VaQWt4d4rRP7T3+gtQWXnhv+0iYoRqe2OXFEOr8CFPSubBsVDu4/bYqc8IFwYjM8VeSPvCkRZ1pKWZ6nAcIGu7AGifrrBayy6F+yoasQLFJ90jIFmTAdrJakaIHV91WQGSIRpyqb1dwneNvcf12QfkBYP+7noX5W5YHyUhtK0K7gQ==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=jWnVhJspG86GDz6ryQ1atlWLaUaCsjywyhwcOR+jxmWeO5FnXYzHeqpJzYKPaECJHjNgxFFzoAlIwFgjyEUcjlMqS5DE65NFePb5+q7y9gjL8hmZKRif4AwB9xiJ2YHPZxIAojfAyr+t5xQSUqwlpNssiZ5iq3mOmcGp773MnT+87oPQVU/fXJWqVqd4ohQATI+T0TVisdvzhy2iWS/q3GGlON8SLbByUGx3Gc4OoezA9iF1isiMn9beUfIYVPkt/uQHfnOOr/1xFemvqTrb/TsUFyw/00x8SwMRn5482rxSwVU4Vli3m7TAa5ntV+caXJobuKWQVB01VGHg4SldCA==
  • Cc: Stefano Stabellini <sstabellini@xxxxxxxxxx>
  • Delivery-date: Wed, 13 Sep 2023 13:31:22 +0000
  • List-id: Xen developer discussion <xen-devel.lists.xenproject.org>

On 9/13/23 03:27, Michal Orzel wrote:
> Hi Stewart,
> 
> On 12/09/2023 22:43, Stewart Hildebrand wrote:
>> There is a corner case where the filesizes of the xen and Linux kernel images
>> are not sufficient. These binaries likely contain NOLOAD sections (e.g. bss),
>> which are not accounted in the filesize.
>>
>> Check for the presence of an arm64 kernel image header, and get the effective
>> image size from the header. Use the effective image size for calculating the
>> next load address and for populating the size in the /chosen/dom*/reg 
>> property.
>>
>> Signed-off-by: Stewart Hildebrand <stewart.hildebrand@xxxxxxx>
> The patch works, thanks!
> Reviewed-by: Michal Orzel <michal.orzel@xxxxxxx>
> 
> with one little suggestion...
> 
>> ---
>> v1->v2:
>> * add in-code comments
>> * use variables more
>> ---
>>  scripts/uboot-script-gen | 17 ++++++++++++++++-
>>  1 file changed, 16 insertions(+), 1 deletion(-)
>>
>> diff --git a/scripts/uboot-script-gen b/scripts/uboot-script-gen
>> index 9656a458ac00..f0972d983017 100755
>> --- a/scripts/uboot-script-gen
>> +++ b/scripts/uboot-script-gen
>> @@ -2,7 +2,7 @@
>>  
>>  offset=$((2*1024*1024))
>>  filesize=0
>> -prog_req=(mkimage file fdtput mktemp awk)
>> +prog_req=(mkimage file fdtput mktemp awk od)
>>  
>>  function cleanup_and_return_err()
>>  {
>> @@ -435,6 +435,21 @@ function add_size()
>>  {
>>      local filename=$1
>>      local size=`stat -L --printf="%s" $filename`
>> +    # Read arm64 header magic 
>> (https://www.kernel.org/doc/Documentation/arm64/booting.txt)
>> +    local arm64_header_magic=$(od -j 56 -N 4 -t x4 ${filename} | head -n 1 
>> | awk -F' ' '{ print $2 }')
> can we simplify:
> head -n 1 | awk -F' ' '{ print $2 }'
> by just doing:
> awk 'NR==1 {print $2}'

Yes. I'll send v3.

Stew



 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.