diff options
author | Nick Clifton <nickc@redhat.com> | 2013-02-15 09:32:31 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2013-02-15 09:32:31 +0000 |
commit | 2e62b7218b7147ee409b1b0551d6ca9576b37746 (patch) | |
tree | 6cd660777d358e74c5ab1a69aaa9b89dfae1b76b /binutils/ChangeLog | |
parent | 796cb314e792023f954f66150c2cc78bd048f142 (diff) | |
download | binutils-2e62b7218b7147ee409b1b0551d6ca9576b37746.zip binutils-2e62b7218b7147ee409b1b0551d6ca9576b37746.tar.gz binutils-2e62b7218b7147ee409b1b0551d6ca9576b37746.tar.bz2 |
PR binutils/15033
* objcopy.c (enum change_action): Delete.
(struct section_list): Delete remove, copy, change_vma, change_lma
and set_flags fields. Add context field.
(find_section_list): Add a context parameter. Add support for
wildcard characters in section names.
(is_strip_section): Check for sections being both copied and
removed.
(copy_object): Pass context to find_section_list.
(setup_section): Likewise.
(copy_section): Likewise.
(copy_main): Likewise.
* doc/binutils: Document the new behaviour.
* NEWS: Mention the new feature
Diffstat (limited to 'binutils/ChangeLog')
-rw-r--r-- | binutils/ChangeLog | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index e9d030e..54d4dab 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,20 @@ +2013-02-15 Nick Clifton <nickc@redhat.com> + + PR binutils/15033 + * objcopy.c (enum change_action): Delete. + (struct section_list): Delete remove, copy, change_vma, change_lma + and set_flags fields. Add context field. + (find_section_list): Add a context parameter. Add support for + wildcard characters in section names. + (is_strip_section): Check for sections being both copied and + removed. + (copy_object): Pass context to find_section_list. + (setup_section): Likewise. + (copy_section): Likewise. + (copy_main): Likewise. + * doc/binutils: Document the new behaviour. + * NEWS: Mention the new feature + 2013-02-14 Nick Clifton <nickc@redhat.com> PR binutils/15125 |