[PATCH v2 1/3] x86: tools: shell-ify calc_run_size perl-ism

2014-12-31 Thread Sylvain BERTRAND
Add the shell script. Signed-off-by: Sylvain BERTRAND --- --- arch/x86/tools/calc_run_size.sh +++ arch/x86/tools/calc_run_size.sh @@ -0,0 +1,46 @@ +#!/bin/sh +# +# Calculate the amount of space needed to run the kernel, including room for +# the .bss and .brk sections. +# +# Usage: +# objdump

[PATCH v2 1/3] x86: tools: shell-ify calc_run_size perl-ism

2014-12-31 Thread Sylvain BERTRAND
Add the shell script. Signed-off-by: Sylvain BERTRAND sylvain.bertr...@gmail.com --- --- arch/x86/tools/calc_run_size.sh +++ arch/x86/tools/calc_run_size.sh @@ -0,0 +1,46 @@ +#!/bin/sh +# +# Calculate the amount of space needed to run the kernel, including room for +# the .bss and .brk sections.