[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] hurd: Find proper ld.so on 64bit systems
From: |
Daniel Kiper |
Subject: |
Re: [PATCH] hurd: Find proper ld.so on 64bit systems |
Date: |
Tue, 23 Jan 2024 15:48:13 +0100 |
User-agent: |
NeoMutt/20170113 (1.7.2) |
On Sat, Jan 20, 2024 at 09:11:50PM +0100, Samuel Thibault wrote:
> Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
May I ask you to repost this patch with proper commit message and added
Signed-off-by?
Daniel
> Samuel Thibault, le sam. 20 janv. 2024 21:10:14 +0100, a ecrit:
> > ---
> > util/grub.d/10_hurd.in | 11 +++++++++--
> > 1 file changed, 9 insertions(+), 2 deletions(-)
> >
> > diff --git a/util/grub.d/10_hurd.in b/util/grub.d/10_hurd.in
> > index 7d1e46391..f9c394ecb 100644
> > --- a/util/grub.d/10_hurd.in
> > +++ b/util/grub.d/10_hurd.in
> > @@ -91,7 +91,14 @@ if ${at_least_one} ; then : ; else
> > exit 0
> > fi
> >
> > -if ${all_of_them} && test -e /lib/ld.so.1 ; then : ; else
> > +if test -e '/lib/ld.so.1' ; then
> > + LD_SO=/lib/ld.so.1
> > +fi
> > +if test -e '/lib/ld-x86-64.so.1' ; then
> > + LD_SO=/lib/ld-x86-64.so.1
> > +fi
> > +
> > +if ${all_of_them} && test -n "$LD_SO" ; then : ; else
> > gettext "Some Hurd stuff found, but not enough to boot." >&2
> > echo >&2
> > exit 1
> > @@ -210,7 +217,7 @@ EOF
> > $host_ports \\
> > --exec-server-task='\${exec-task}' -T typed '\${root}'
> > \\
> > '\$(fs-task=task-create)' $resume_task
> > - module /lib/ld.so.1 exec /hurd/exec '\$(exec-task=task-create)'
> > + module $LD_SO exec /hurd/exec '\$(exec-task=task-create)'
> > }
> > EOF