public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Sylvain BERTRAND <sylvain.bertrand@gmail.com>
To: x86@kernel.org
Cc: linux-kernel@vger.kernel.org
Subject: [PATCH 1/3] x86: tools: shell-ify calc_run_size perl-ism
Date: Tue, 30 Dec 2014 16:36:47 +0100	[thread overview]
Message-ID: <20141230153647.GA5031@dhcppc1> (raw)

Add the shell script.

Signed-off-by: Sylvain BERTRAND <sylvain.bertrand@gmail.com>
---
--- a/arch/x86/tools/calc_run_size.sh
+++ b/arch/x86/tools/calc_run_size.sh
@@ -0,0 +1,42 @@
+#!/bin/sh
+#
+# Calculate the amount of space needed to run the kernel, including room for
+# the .bss and .brk sections.
+#
+# Usage:
+# objdump -h a.out | sh calc_run_size.sh
+
+set -e
+
+file_offset=0
+mem_size=0
+
+while read Idx Name Size VMA LMA File_off Algn
+do
+	if [ "$Name" = ".bss" -o "$Name" = ".brk" ]; then
+		mem_size=$(($mem_size + 0x$Size))
+		if [ $((0x$file_offset)) -eq 0 ]; then
+			file_offset=$File_off
+		elif [ $((0x$file_offset)) -ne $((0x$File_off)) ]; then
+			# BFD linker shows the same file offset in ELF.
+			# Gold linker shows them as consecutive.
+			if [ $((0x$file_offset + $mem_size)) -eq $((0x$File_off + 0x$Size)) ]; then
+				continue
+			fi
+			
+			printf "file_offset: 0x%x\n" $((0x$file_offset))
+			printf "mem_size: 0x%x\n" $mem_size
+			printf "offset: 0x%x\n" $((0x$File_off))
+			printf "size: 0x%x\n" $((0x$Size))
+
+			echo ".bss and .brk are non-contiguous"
+			exit 1
+		fi
+	fi
+done
+
+if [ $((0x$file_offset)) -eq 0 ]; then
+	echo "Never found .bss or .brk file offset"
+	exit 1
+fi
+printf "%d\n" $(($mem_size + 0x$file_offset))

                 reply	other threads:[~2014-12-30 15:36 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20141230153647.GA5031@dhcppc1 \
    --to=sylvain.bertrand@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=x86@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox