All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kexec-tools: fix for "Unhandled rela relocation: R_X86_64_PLT32" error
@ 2018-08-30  8:36 mingli.yu
  2018-08-31  6:32 ` Yu, Mingli
  0 siblings, 1 reply; 5+ messages in thread
From: mingli.yu @ 2018-08-30  8:36 UTC (permalink / raw)
  To: openembedded-core

From: Mingli Yu <Mingli.Yu@windriver.com>

In response to a change in binutils, commit b21ebf2fb4c
(x86: Treat R_X86_64_PLT32 as R_X86_64_PC32) was applied to
the linux kernel during the 4.16 development cycle and has
since been backported to earlier stable kernel series. The
change results in the failure message as below when rebooting
via kexec.
 # kexec -l /boot/bzImage --append="console=ttyS0,115200 root=/dev/sda1"
 Unhandled rela relocation: R_X86_64_PLT32

Fix this by replicating the change in kexec.

Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com>
---
 ...or-Unhandled-rela-relocation-R_X86_64_PLT.patch | 41 ++++++++++++++++++++++
 meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb    |  1 +
 2 files changed, 42 insertions(+)
 create mode 100644 meta/recipes-kernel/kexec/kexec-tools/0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch

diff --git a/meta/recipes-kernel/kexec/kexec-tools/0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch b/meta/recipes-kernel/kexec/kexec-tools/0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch
new file mode 100644
index 0000000..e0cced5
--- /dev/null
+++ b/meta/recipes-kernel/kexec/kexec-tools/0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch
@@ -0,0 +1,41 @@
+From b9de21ef51a7ceab7122a707c188602eae22c4ee Mon Sep 17 00:00:00 2001
+From: Chris Clayton <chris2553@googlemail.com>
+Date: Mon, 20 Aug 2018 12:00:31 +0100
+Subject: [PATCH] kexec: fix for "Unhandled rela relocation: R_X86_64_PLT32" error
+
+In response to a change in binutils, commit b21ebf2fb4c
+(x86: Treat R_X86_64_PLT32 as R_X86_64_PC32) was applied to
+the linux kernel during the 4.16 development cycle and has
+since been backported to earlier stable kernel series. The
+change results in the failure message in $SUBJECT when
+rebooting via kexec.
+
+Fix this by replicating the change in kexec.
+
+Upstream-Status: Backport[https://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git/commit/?id=b9de21ef51a7ceab7122a707c188602eae22c4ee]
+
+Signed-off-by: Chris Clayton <chris2553@googlemail.com>
+Acked-by: Baoquan He <bhe@redhat.com>
+Tested-by: Bhupesh Sharma <bhsharma@redhat.com>
+Acked-by: Bhupesh Sharma <bhsharma@redhat.com>
+Signed-off-by: Simon Horman <horms@verge.net.au>
+Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com>
+---
+ kexec/arch/x86_64/kexec-elf-rel-x86_64.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/kexec/arch/x86_64/kexec-elf-rel-x86_64.c b/kexec/arch/x86_64/kexec-elf-rel-x86_64.c
+index 7fdde73..db85b44 100644
+--- a/kexec/arch/x86_64/kexec-elf-rel-x86_64.c
++++ b/kexec/arch/x86_64/kexec-elf-rel-x86_64.c
+@@ -79,6 +79,7 @@ void machine_apply_elf_rel(struct mem_ehdr *UNUSED(ehdr),
+ 			goto overflow;
+ 		break;
+ 	case R_X86_64_PC32: 
++	case R_X86_64_PLT32:
+ 		*(uint32_t *)location = value - address;
+ 		break;
+ 	default:
+-- 
+2.7.4
+
diff --git a/meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb b/meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb
index f4ec586..dd46901 100644
--- a/meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb
+++ b/meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb
@@ -18,6 +18,7 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/utils/kernel/kexec/kexec-tools-${PV}.tar.gz
            file://0010-kexec-ARM-Fix-add_buffer_phys_virt-align-issue.patch \
            file://kexec-x32.patch \
            file://0001-Disable-PIE-during-link.patch \
+           file://0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch \
            "
 
 SRC_URI[md5sum] = "8e071ca473694a71e4ae60ed7ef6f377"
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] kexec-tools: fix for "Unhandled rela relocation: R_X86_64_PLT32" error
  2018-08-30  8:36 [PATCH] kexec-tools: fix for "Unhandled rela relocation: R_X86_64_PLT32" error mingli.yu
@ 2018-08-31  6:32 ` Yu, Mingli
  2018-08-31 14:07   ` Andrea Adami
  0 siblings, 1 reply; 5+ messages in thread
From: Yu, Mingli @ 2018-08-31  6:32 UTC (permalink / raw)
  To: openembedded-core, Richard Purdie

Ping.

On 2018年08月30日 16:36, mingli.yu@windriver.com wrote:
> From: Mingli Yu <Mingli.Yu@windriver.com>
>
> In response to a change in binutils, commit b21ebf2fb4c
> (x86: Treat R_X86_64_PLT32 as R_X86_64_PC32) was applied to
> the linux kernel during the 4.16 development cycle and has
> since been backported to earlier stable kernel series. The
> change results in the failure message as below when rebooting
> via kexec.
>   # kexec -l /boot/bzImage --append="console=ttyS0,115200 root=/dev/sda1"
>   Unhandled rela relocation: R_X86_64_PLT32
>
> Fix this by replicating the change in kexec.
>
> Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com>
> ---
>   ...or-Unhandled-rela-relocation-R_X86_64_PLT.patch | 41 ++++++++++++++++++++++
>   meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb    |  1 +
>   2 files changed, 42 insertions(+)
>   create mode 100644 meta/recipes-kernel/kexec/kexec-tools/0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch
>
> diff --git a/meta/recipes-kernel/kexec/kexec-tools/0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch b/meta/recipes-kernel/kexec/kexec-tools/0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch
> new file mode 100644
> index 0000000..e0cced5
> --- /dev/null
> +++ b/meta/recipes-kernel/kexec/kexec-tools/0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch
> @@ -0,0 +1,41 @@
> +From b9de21ef51a7ceab7122a707c188602eae22c4ee Mon Sep 17 00:00:00 2001
> +From: Chris Clayton <chris2553@googlemail.com>
> +Date: Mon, 20 Aug 2018 12:00:31 +0100
> +Subject: [PATCH] kexec: fix for "Unhandled rela relocation: R_X86_64_PLT32" error
> +
> +In response to a change in binutils, commit b21ebf2fb4c
> +(x86: Treat R_X86_64_PLT32 as R_X86_64_PC32) was applied to
> +the linux kernel during the 4.16 development cycle and has
> +since been backported to earlier stable kernel series. The
> +change results in the failure message in $SUBJECT when
> +rebooting via kexec.
> +
> +Fix this by replicating the change in kexec.
> +
> +Upstream-Status: Backport[https://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git/commit/?id=b9de21ef51a7ceab7122a707c188602eae22c4ee]
> +
> +Signed-off-by: Chris Clayton <chris2553@googlemail.com>
> +Acked-by: Baoquan He <bhe@redhat.com>
> +Tested-by: Bhupesh Sharma <bhsharma@redhat.com>
> +Acked-by: Bhupesh Sharma <bhsharma@redhat.com>
> +Signed-off-by: Simon Horman <horms@verge.net.au>
> +Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com>
> +---
> + kexec/arch/x86_64/kexec-elf-rel-x86_64.c | 1 +
> + 1 file changed, 1 insertion(+)
> +
> +diff --git a/kexec/arch/x86_64/kexec-elf-rel-x86_64.c b/kexec/arch/x86_64/kexec-elf-rel-x86_64.c
> +index 7fdde73..db85b44 100644
> +--- a/kexec/arch/x86_64/kexec-elf-rel-x86_64.c
> ++++ b/kexec/arch/x86_64/kexec-elf-rel-x86_64.c
> +@@ -79,6 +79,7 @@ void machine_apply_elf_rel(struct mem_ehdr *UNUSED(ehdr),
> + 			goto overflow;
> + 		break;
> + 	case R_X86_64_PC32:
> ++	case R_X86_64_PLT32:
> + 		*(uint32_t *)location = value - address;
> + 		break;
> + 	default:
> +--
> +2.7.4
> +
> diff --git a/meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb b/meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb
> index f4ec586..dd46901 100644
> --- a/meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb
> +++ b/meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb
> @@ -18,6 +18,7 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/utils/kernel/kexec/kexec-tools-${PV}.tar.gz
>              file://0010-kexec-ARM-Fix-add_buffer_phys_virt-align-issue.patch \
>              file://kexec-x32.patch \
>              file://0001-Disable-PIE-during-link.patch \
> +           file://0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch \
>              "
>
>   SRC_URI[md5sum] = "8e071ca473694a71e4ae60ed7ef6f377"
>


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] kexec-tools: fix for "Unhandled rela relocation: R_X86_64_PLT32" error
  2018-08-31  6:32 ` Yu, Mingli
@ 2018-08-31 14:07   ` Andrea Adami
  2018-09-03  1:26     ` Yu, Mingli
  0 siblings, 1 reply; 5+ messages in thread
From: Andrea Adami @ 2018-08-31 14:07 UTC (permalink / raw)
  To: mingli.yu; +Cc: Patches and discussions about the oe-core layer

On Fri, Aug 31, 2018 at 8:34 AM Yu, Mingli <mingli.yu@windriver.com> wrote:
>
> Ping.
>
Hi,
FYI it is in master upstream as of  b9de21ef51a7 so you could just
upgrade the recipe.
Cheers
Andrea



> On 2018年08月30日 16:36, mingli.yu@windriver.com wrote:
> > From: Mingli Yu <Mingli.Yu@windriver.com>
> >
> > In response to a change in binutils, commit b21ebf2fb4c
> > (x86: Treat R_X86_64_PLT32 as R_X86_64_PC32) was applied to
> > the linux kernel during the 4.16 development cycle and has
> > since been backported to earlier stable kernel series. The
> > change results in the failure message as below when rebooting
> > via kexec.
> >   # kexec -l /boot/bzImage --append="console=ttyS0,115200 root=/dev/sda1"
> >   Unhandled rela relocation: R_X86_64_PLT32
> >
> > Fix this by replicating the change in kexec.
> >
> > Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com>
> > ---
> >   ...or-Unhandled-rela-relocation-R_X86_64_PLT.patch | 41 ++++++++++++++++++++++
> >   meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb    |  1 +
> >   2 files changed, 42 insertions(+)
> >   create mode 100644 meta/recipes-kernel/kexec/kexec-tools/0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch
> >
> > diff --git a/meta/recipes-kernel/kexec/kexec-tools/0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch b/meta/recipes-kernel/kexec/kexec-tools/0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch
> > new file mode 100644
> > index 0000000..e0cced5
> > --- /dev/null
> > +++ b/meta/recipes-kernel/kexec/kexec-tools/0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch
> > @@ -0,0 +1,41 @@
> > +From b9de21ef51a7ceab7122a707c188602eae22c4ee Mon Sep 17 00:00:00 2001
> > +From: Chris Clayton <chris2553@googlemail.com>
> > +Date: Mon, 20 Aug 2018 12:00:31 +0100
> > +Subject: [PATCH] kexec: fix for "Unhandled rela relocation: R_X86_64_PLT32" error
> > +
> > +In response to a change in binutils, commit b21ebf2fb4c
> > +(x86: Treat R_X86_64_PLT32 as R_X86_64_PC32) was applied to
> > +the linux kernel during the 4.16 development cycle and has
> > +since been backported to earlier stable kernel series. The
> > +change results in the failure message in $SUBJECT when
> > +rebooting via kexec.
> > +
> > +Fix this by replicating the change in kexec.
> > +
> > +Upstream-Status: Backport[https://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git/commit/?id=b9de21ef51a7ceab7122a707c188602eae22c4ee]
> > +
> > +Signed-off-by: Chris Clayton <chris2553@googlemail.com>
> > +Acked-by: Baoquan He <bhe@redhat.com>
> > +Tested-by: Bhupesh Sharma <bhsharma@redhat.com>
> > +Acked-by: Bhupesh Sharma <bhsharma@redhat.com>
> > +Signed-off-by: Simon Horman <horms@verge.net.au>
> > +Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com>
> > +---
> > + kexec/arch/x86_64/kexec-elf-rel-x86_64.c | 1 +
> > + 1 file changed, 1 insertion(+)
> > +
> > +diff --git a/kexec/arch/x86_64/kexec-elf-rel-x86_64.c b/kexec/arch/x86_64/kexec-elf-rel-x86_64.c
> > +index 7fdde73..db85b44 100644
> > +--- a/kexec/arch/x86_64/kexec-elf-rel-x86_64.c
> > ++++ b/kexec/arch/x86_64/kexec-elf-rel-x86_64.c
> > +@@ -79,6 +79,7 @@ void machine_apply_elf_rel(struct mem_ehdr *UNUSED(ehdr),
> > +                     goto overflow;
> > +             break;
> > +     case R_X86_64_PC32:
> > ++    case R_X86_64_PLT32:
> > +             *(uint32_t *)location = value - address;
> > +             break;
> > +     default:
> > +--
> > +2.7.4
> > +
> > diff --git a/meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb b/meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb
> > index f4ec586..dd46901 100644
> > --- a/meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb
> > +++ b/meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb
> > @@ -18,6 +18,7 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/utils/kernel/kexec/kexec-tools-${PV}.tar.gz
> >              file://0010-kexec-ARM-Fix-add_buffer_phys_virt-align-issue.patch \
> >              file://kexec-x32.patch \
> >              file://0001-Disable-PIE-during-link.patch \
> > +           file://0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch \
> >              "
> >
> >   SRC_URI[md5sum] = "8e071ca473694a71e4ae60ed7ef6f377"
> >
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] kexec-tools: fix for "Unhandled rela relocation: R_X86_64_PLT32" error
  2018-08-31 14:07   ` Andrea Adami
@ 2018-09-03  1:26     ` Yu, Mingli
  2018-09-06  1:21       ` Yu, Mingli
  0 siblings, 1 reply; 5+ messages in thread
From: Yu, Mingli @ 2018-09-03  1:26 UTC (permalink / raw)
  To: Andrea Adami; +Cc: Patches and discussions about the oe-core layer



On 2018年08月31日 22:07, Andrea Adami wrote:
> On Fri, Aug 31, 2018 at 8:34 AM Yu, Mingli <mingli.yu@windriver.com> wrote:
>>
>> Ping.
>>
> Hi,
> FYI it is in master upstream as of  b9de21ef51a7 so you could just
> upgrade the recipe.
> Cheers
> Andrea

Thanks Andrea! But the current kexec-tools version is already 2.0.17 
which is the latest version.

Thanks,

>
>
>
>> On 2018年08月30日 16:36, mingli.yu@windriver.com wrote:
>>> From: Mingli Yu <Mingli.Yu@windriver.com>
>>>
>>> In response to a change in binutils, commit b21ebf2fb4c
>>> (x86: Treat R_X86_64_PLT32 as R_X86_64_PC32) was applied to
>>> the linux kernel during the 4.16 development cycle and has
>>> since been backported to earlier stable kernel series. The
>>> change results in the failure message as below when rebooting
>>> via kexec.
>>>    # kexec -l /boot/bzImage --append="console=ttyS0,115200 root=/dev/sda1"
>>>    Unhandled rela relocation: R_X86_64_PLT32
>>>
>>> Fix this by replicating the change in kexec.
>>>
>>> Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com>
>>> ---
>>>    ...or-Unhandled-rela-relocation-R_X86_64_PLT.patch | 41 ++++++++++++++++++++++
>>>    meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb    |  1 +
>>>    2 files changed, 42 insertions(+)
>>>    create mode 100644 meta/recipes-kernel/kexec/kexec-tools/0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch
>>>
>>> diff --git a/meta/recipes-kernel/kexec/kexec-tools/0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch b/meta/recipes-kernel/kexec/kexec-tools/0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch
>>> new file mode 100644
>>> index 0000000..e0cced5
>>> --- /dev/null
>>> +++ b/meta/recipes-kernel/kexec/kexec-tools/0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch
>>> @@ -0,0 +1,41 @@
>>> +From b9de21ef51a7ceab7122a707c188602eae22c4ee Mon Sep 17 00:00:00 2001
>>> +From: Chris Clayton <chris2553@googlemail.com>
>>> +Date: Mon, 20 Aug 2018 12:00:31 +0100
>>> +Subject: [PATCH] kexec: fix for "Unhandled rela relocation: R_X86_64_PLT32" error
>>> +
>>> +In response to a change in binutils, commit b21ebf2fb4c
>>> +(x86: Treat R_X86_64_PLT32 as R_X86_64_PC32) was applied to
>>> +the linux kernel during the 4.16 development cycle and has
>>> +since been backported to earlier stable kernel series. The
>>> +change results in the failure message in $SUBJECT when
>>> +rebooting via kexec.
>>> +
>>> +Fix this by replicating the change in kexec.
>>> +
>>> +Upstream-Status: Backport[https://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git/commit/?id=b9de21ef51a7ceab7122a707c188602eae22c4ee]
>>> +
>>> +Signed-off-by: Chris Clayton <chris2553@googlemail.com>
>>> +Acked-by: Baoquan He <bhe@redhat.com>
>>> +Tested-by: Bhupesh Sharma <bhsharma@redhat.com>
>>> +Acked-by: Bhupesh Sharma <bhsharma@redhat.com>
>>> +Signed-off-by: Simon Horman <horms@verge.net.au>
>>> +Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com>
>>> +---
>>> + kexec/arch/x86_64/kexec-elf-rel-x86_64.c | 1 +
>>> + 1 file changed, 1 insertion(+)
>>> +
>>> +diff --git a/kexec/arch/x86_64/kexec-elf-rel-x86_64.c b/kexec/arch/x86_64/kexec-elf-rel-x86_64.c
>>> +index 7fdde73..db85b44 100644
>>> +--- a/kexec/arch/x86_64/kexec-elf-rel-x86_64.c
>>> ++++ b/kexec/arch/x86_64/kexec-elf-rel-x86_64.c
>>> +@@ -79,6 +79,7 @@ void machine_apply_elf_rel(struct mem_ehdr *UNUSED(ehdr),
>>> +                     goto overflow;
>>> +             break;
>>> +     case R_X86_64_PC32:
>>> ++    case R_X86_64_PLT32:
>>> +             *(uint32_t *)location = value - address;
>>> +             break;
>>> +     default:
>>> +--
>>> +2.7.4
>>> +
>>> diff --git a/meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb b/meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb
>>> index f4ec586..dd46901 100644
>>> --- a/meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb
>>> +++ b/meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb
>>> @@ -18,6 +18,7 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/utils/kernel/kexec/kexec-tools-${PV}.tar.gz
>>>               file://0010-kexec-ARM-Fix-add_buffer_phys_virt-align-issue.patch \
>>>               file://kexec-x32.patch \
>>>               file://0001-Disable-PIE-during-link.patch \
>>> +           file://0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch \
>>>               "
>>>
>>>    SRC_URI[md5sum] = "8e071ca473694a71e4ae60ed7ef6f377"
>>>
>> --
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] kexec-tools: fix for "Unhandled rela relocation: R_X86_64_PLT32" error
  2018-09-03  1:26     ` Yu, Mingli
@ 2018-09-06  1:21       ` Yu, Mingli
  0 siblings, 0 replies; 5+ messages in thread
From: Yu, Mingli @ 2018-09-06  1:21 UTC (permalink / raw)
  To: Andrea Adami; +Cc: Patches and discussions about the oe-core layer

Ping.

Thanks,

On 2018年09月03日 09:26, Yu, Mingli wrote:
>
>
> On 2018年08月31日 22:07, Andrea Adami wrote:
>> On Fri, Aug 31, 2018 at 8:34 AM Yu, Mingli <mingli.yu@windriver.com>
>> wrote:
>>>
>>> Ping.
>>>
>> Hi,
>> FYI it is in master upstream as of  b9de21ef51a7 so you could just
>> upgrade the recipe.
>> Cheers
>> Andrea
>
> Thanks Andrea! But the current kexec-tools version is already 2.0.17
> which is the latest version.
>
> Thanks,
>
>>
>>
>>
>>> On 2018年08月30日 16:36, mingli.yu@windriver.com wrote:
>>>> From: Mingli Yu <Mingli.Yu@windriver.com>
>>>>
>>>> In response to a change in binutils, commit b21ebf2fb4c
>>>> (x86: Treat R_X86_64_PLT32 as R_X86_64_PC32) was applied to
>>>> the linux kernel during the 4.16 development cycle and has
>>>> since been backported to earlier stable kernel series. The
>>>> change results in the failure message as below when rebooting
>>>> via kexec.
>>>>    # kexec -l /boot/bzImage --append="console=ttyS0,115200
>>>> root=/dev/sda1"
>>>>    Unhandled rela relocation: R_X86_64_PLT32
>>>>
>>>> Fix this by replicating the change in kexec.
>>>>
>>>> Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com>
>>>> ---
>>>>    ...or-Unhandled-rela-relocation-R_X86_64_PLT.patch | 41
>>>> ++++++++++++++++++++++
>>>>    meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb    |  1 +
>>>>    2 files changed, 42 insertions(+)
>>>>    create mode 100644
>>>> meta/recipes-kernel/kexec/kexec-tools/0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch
>>>>
>>>>
>>>> diff --git
>>>> a/meta/recipes-kernel/kexec/kexec-tools/0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch
>>>> b/meta/recipes-kernel/kexec/kexec-tools/0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch
>>>>
>>>> new file mode 100644
>>>> index 0000000..e0cced5
>>>> --- /dev/null
>>>> +++
>>>> b/meta/recipes-kernel/kexec/kexec-tools/0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch
>>>>
>>>> @@ -0,0 +1,41 @@
>>>> +From b9de21ef51a7ceab7122a707c188602eae22c4ee Mon Sep 17 00:00:00 2001
>>>> +From: Chris Clayton <chris2553@googlemail.com>
>>>> +Date: Mon, 20 Aug 2018 12:00:31 +0100
>>>> +Subject: [PATCH] kexec: fix for "Unhandled rela relocation:
>>>> R_X86_64_PLT32" error
>>>> +
>>>> +In response to a change in binutils, commit b21ebf2fb4c
>>>> +(x86: Treat R_X86_64_PLT32 as R_X86_64_PC32) was applied to
>>>> +the linux kernel during the 4.16 development cycle and has
>>>> +since been backported to earlier stable kernel series. The
>>>> +change results in the failure message in $SUBJECT when
>>>> +rebooting via kexec.
>>>> +
>>>> +Fix this by replicating the change in kexec.
>>>> +
>>>> +Upstream-Status:
>>>> Backport[https://git.kernel.org/pub/scm/utils/kernel/kexec/kexec-tools.git/commit/?id=b9de21ef51a7ceab7122a707c188602eae22c4ee]
>>>>
>>>> +
>>>> +Signed-off-by: Chris Clayton <chris2553@googlemail.com>
>>>> +Acked-by: Baoquan He <bhe@redhat.com>
>>>> +Tested-by: Bhupesh Sharma <bhsharma@redhat.com>
>>>> +Acked-by: Bhupesh Sharma <bhsharma@redhat.com>
>>>> +Signed-off-by: Simon Horman <horms@verge.net.au>
>>>> +Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com>
>>>> +---
>>>> + kexec/arch/x86_64/kexec-elf-rel-x86_64.c | 1 +
>>>> + 1 file changed, 1 insertion(+)
>>>> +
>>>> +diff --git a/kexec/arch/x86_64/kexec-elf-rel-x86_64.c
>>>> b/kexec/arch/x86_64/kexec-elf-rel-x86_64.c
>>>> +index 7fdde73..db85b44 100644
>>>> +--- a/kexec/arch/x86_64/kexec-elf-rel-x86_64.c
>>>> ++++ b/kexec/arch/x86_64/kexec-elf-rel-x86_64.c
>>>> +@@ -79,6 +79,7 @@ void machine_apply_elf_rel(struct mem_ehdr
>>>> *UNUSED(ehdr),
>>>> +                     goto overflow;
>>>> +             break;
>>>> +     case R_X86_64_PC32:
>>>> ++    case R_X86_64_PLT32:
>>>> +             *(uint32_t *)location = value - address;
>>>> +             break;
>>>> +     default:
>>>> +--
>>>> +2.7.4
>>>> +
>>>> diff --git a/meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb
>>>> b/meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb
>>>> index f4ec586..dd46901 100644
>>>> --- a/meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb
>>>> +++ b/meta/recipes-kernel/kexec/kexec-tools_2.0.17.bb
>>>> @@ -18,6 +18,7 @@ SRC_URI =
>>>> "${KERNELORG_MIRROR}/linux/utils/kernel/kexec/kexec-tools-${PV}.tar.gz
>>>>
>>>> file://0010-kexec-ARM-Fix-add_buffer_phys_virt-align-issue.patch \
>>>>               file://kexec-x32.patch \
>>>>               file://0001-Disable-PIE-during-link.patch \
>>>> +
>>>> file://0001-kexec-fix-for-Unhandled-rela-relocation-R_X86_64_PLT.patch
>>>> \
>>>>               "
>>>>
>>>>    SRC_URI[md5sum] = "8e071ca473694a71e4ae60ed7ef6f377"
>>>>
>>> --
>>> _______________________________________________
>>> Openembedded-core mailing list
>>> Openembedded-core@lists.openembedded.org
>>> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>>


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-09-06  1:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-30  8:36 [PATCH] kexec-tools: fix for "Unhandled rela relocation: R_X86_64_PLT32" error mingli.yu
2018-08-31  6:32 ` Yu, Mingli
2018-08-31 14:07   ` Andrea Adami
2018-09-03  1:26     ` Yu, Mingli
2018-09-06  1:21       ` Yu, Mingli

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.