All of lore.kernel.org
 help / color / mirror / Atom feed
From: Michel Thebeau <michel.thebeau@windriver.com>
To: <richard.purdie@linuxfoundation.org>
Cc: Bruce.Ashfield@windriver.com, openembedded-core@lists.openembedded.org
Subject: Re: [PATCH 2/2] kernel.bbclass: do_strip: allow recipes to strip the kernel
Date: Mon, 8 Apr 2013 17:28:34 -0400	[thread overview]
Message-ID: <51633682.2030305@windriver.com> (raw)
In-Reply-To: <1365456279-30162-1-git-send-email-michel.thebeau@windriver.com>



On 13-04-08 05:24 PM, michel.thebeau@windriver.com wrote:
> From: Michel Thebeau <michel.thebeau@windriver.com>
> 
> Allow recipes to specify sections to be stripped from the kernel output
> using KERNEL_IMAGE_STRIP.  For example:
> 
> KERNEL_IMAGE_STRIP = ".comment .unwanted"

s/KERNEL_IMAGE_STRIP/KERNEL_IMAGE_STRIP_EXTRA_SECTIONS

Throughout

> 
> The kernel output is stripped in place.

The subject was supposed to say "v2"


> 
> Since the toolchain does not give indication when the specified sections
> are absent, we read the sections first and make this report by issuing a
> warning to the developer.
> 
> The toolchain by default strips the image with the -s option (even
> when -s is not specified):
> -s --strip-all       Remove all symbol and relocation information
> 
> For example, these sections are always removed:
> .debug_aranges
> .debug_info
> .debug_abbrev
> .debug_line
> .debug_frame
> .debug_str
> .debug_loc
> .debug_ranges
> .symtab
> .strtab
> 
> In addition to these, the sections listed in KERNEL_IMAGE_STRIP will
> also be removed.
> 
> Only stripping of vmlinux (elf) is supported at this time.  A warning
> will be given if the image type is not vmlinux.
> 
> Stripping the image could also be done in the kernel, but that would
> only work for linux-yocto based kernels, so it's not the route we
> decided to go.
> 
> [YOCTO 3515]
> 
> Signed-off-by: Michel Thebeau <michel.thebeau@windriver.com>
> ---
>  meta/classes/kernel.bbclass |   30 ++++++++++++++++++++++++++++--
>  1 file changed, 28 insertions(+), 2 deletions(-)
> 
> diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
> index af58887..4c2c9b9 100644
> --- a/meta/classes/kernel.bbclass
> +++ b/meta/classes/kernel.bbclass
> @@ -88,7 +88,7 @@ do_compile_kernelmodules() {
>  		bbnote "no modules to compile"
>  	fi
>  }
> -addtask compile_kernelmodules after do_compile before do_install
> +addtask compile_kernelmodules after do_compile before do_strip
>  
>  kernel_do_install() {
>  	#
> @@ -289,6 +289,32 @@ python split_kernel_packages () {
>      do_split_packages(d, root='/lib/firmware', file_regex='^(.*)\.cis$', output_pattern='kernel-firmware-%s', description='Firmware for %s', recursive=True, extra_depends='')
>  }
>  
> +do_strip() {
> +	if [ -n "${KERNEL_IMAGE_STRIP}" ]; then
> +		if [[ "${KERNEL_IMAGETYPE}" != "vmlinux" ]]; then
> +			bbwarn "image type will not be stripped (not supported): ${KERNEL_IMAGETYPE}"
> +			return
> +		fi
> +
> +		cd ${B}
> +		headers=`"$CROSS_COMPILE"readelf -S ${KERNEL_OUTPUT} | \
> +			  grep "^ \{1,\}\[[0-9 ]\{1,\}\] [^ ]" | \
> +			  sed "s/^ \{1,\}\[[0-9 ]\{1,\}\] //" | \
> +			  gawk '{print $1}'`
> +
> +		for str in ${KERNEL_IMAGE_STRIP}; do {
> +			if [[ "$headers" != *"$str"* ]]; then
> +				bbwarn "Section not found: $str";
> +			fi
> +
> +			"$CROSS_COMPILE"strip -s -R $str ${KERNEL_OUTPUT}
> +		}; done

And I'll add a comment here

bbnote "KERNEL_IMAGE_STRIP_EXTRA_SECTIONS is set, stripping sections:" \
         "${KERNEL_IMAGE_STRIP_EXTRA_SECTIONS}"

Michel

> +	fi;
> +}
> +do_strip[dirs] = "${B}"
> +
> +addtask do_strip before do_sizecheck after do_kernel_link_vmlinux
> +
>  # Support checking the kernel size since some kernels need to reside in partitions
>  # with a fixed length or there is a limit in transferring the kernel to memory
>  do_sizecheck() {
> @@ -302,7 +328,7 @@ do_sizecheck() {
>  }
>  do_sizecheck[dirs] = "${B}"
>  
> -addtask sizecheck before do_install after do_kernel_link_vmlinux
> +addtask sizecheck before do_install after do_strip
>  
>  KERNEL_IMAGE_BASE_NAME ?= "${KERNEL_IMAGETYPE}-${PE}-${PV}-${PR}-${MACHINE}-${DATETIME}"
>  # Don't include the DATETIME variable in the sstate package signatures
> 



  reply	other threads:[~2013-04-08 21:45 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-08 20:15 [RFC] [PATCH 0/2] Routerstation Pro: kernel.bbclass: do_sizecheck, do_strip michel.thebeau
2013-04-08 20:15 ` [PATCH 1/2] kernel.bbclass: do_sizecheck: update path to build image and do not delete michel.thebeau
2013-04-08 20:15 ` [PATCH 2/2] kernel.bbclass: do_strip: allow recipes to strip the kernel michel.thebeau
2013-04-08 20:54   ` Richard Purdie
2013-04-08 21:24     ` Michel Thebeau
2013-04-08 21:24     ` michel.thebeau
2013-04-08 21:28       ` Michel Thebeau [this message]
2013-04-08 21:48         ` Richard Purdie
2013-04-09 12:44           ` Michel Thebeau
2013-04-08 20:15 ` [poky] [PATCH 1/1] routerstationpro: strip the output kernel of .comment section michel.thebeau

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=51633682.2030305@windriver.com \
    --to=michel.thebeau@windriver.com \
    --cc=Bruce.Ashfield@windriver.com \
    --cc=openembedded-core@lists.openembedded.org \
    --cc=richard.purdie@linuxfoundation.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.