|
From: Arnaud Gomes-do-V. <Arn...@ir...> - 2013-04-24 08:47:16
|
Hello,
/bin/vconfig in the 64-bit version of DL 1.6.3 is built as a 32-bit
binary, which doesn't work without 32-bit libraries.
root@gw2:~ # cat /etc/issue
Welcome to Devil-Linux v1.6.3-x86_64 - Kernel \r (\l).
root@gw2:~ # file /bin/vconfig
/bin/vconfig: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.2.5, stripped
root@gw2:~ # ldd /bin/vconfig
not a dynamic executable
I have not found any other 32-bit binaries, only /bin/vconfig.
--
A
|
|
From: Heiko Z. <he...@zu...> - 2013-04-25 12:20:53
|
Arnaud, Thanks for pointing this out. I added it to the todo list. It may be quite a while until I get to it.... Heiko Quoting Arnaud Gomes-do-Vale <Arn...@ir...>: > Hello, > > /bin/vconfig in the 64-bit version of DL 1.6.3 is built as a 32-bit > binary, which doesn't work without 32-bit libraries. > > root@gw2:~ # cat /etc/issue > > Welcome to Devil-Linux v1.6.3-x86_64 - Kernel \r (\l). > > root@gw2:~ # file /bin/vconfig > /bin/vconfig: ELF 32-bit LSB executable, Intel 80386, version 1 > (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.2.5, > stripped > root@gw2:~ # ldd /bin/vconfig > not a dynamic executable > > I have not found any other 32-bit binaries, only /bin/vconfig. > > -- > A > > ------------------------------------------------------------------------------ > Try New Relic Now & We'll Send You this Cool Shirt > New Relic is the only SaaS-based application performance monitoring service > that delivers powerful full stack analytics. Optimize and monitor your > browser, app, & servers with just a few lines of code. Try New Relic > and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_apr > _______________________________________________ > Devil-linux-discuss mailing list > Dev...@li... > https://lists.sourceforge.net/lists/listinfo/devil-linux-discuss -- Regards Heiko Zuerker http://www.devil-linux.org |
|
From: Arnaud Gomes-do-V. <Arn...@ir...> - 2013-04-25 15:03:54
|
Heiko Zuerker <he...@zu...> writes:
> Thanks for pointing this out. I added it to the todo list.
> It may be quite a while until I get to it....
I think I have found the cause: the vlan source tarball includes an old
32-bit binary. The following patch to scripts/vlan should fix the issue:
--- vlan.orig 2013-04-25 17:00:30.801291551 +0200
+++ vlan 2013-04-25 17:01:22.121923713 +0200
@@ -18,7 +18,7 @@
case $1 in
build )
if [ "$CONFIG_VLAN" = "y" ]; then
- make $PMAKE all || exit 1
+ make $PMAKE purge vconfig || exit 1
fi
;;
@@ -28,7 +28,7 @@
rm -rf $TMPDIR || exit 1
copy_man
mkdir -p $TMPDIR || exit 1
- make all DESTDIR=$TMPDIR || exit 1
+ make purge vconfig DESTDIR=$TMPDIR || exit 1
mkdir -p $CDDIR/bin
cp vconfig $CDDIR/bin || exit 1
rm -rf $TMPDIR || exit 1
--
A
|
|
From: Heiko Z. <he...@zu...> - 2013-05-04 13:31:09
|
A,
Applied to CVS, thanks for sending it in.
Best Regards
Heiko Zuerker
-----Original Message-----
From: Arnaud Gomes-do-Vale [mailto:Arn...@ir...]
Sent: Thursday, April 25, 2013 10:04 AM
To: dev...@li...
Subject: Re: [Devil-Linux-discuss] 32-bit binary in 64-bit DL
Heiko Zuerker <he...@zu...> writes:
> Thanks for pointing this out. I added it to the todo list.
> It may be quite a while until I get to it....
I think I have found the cause: the vlan source tarball includes an old
32-bit binary. The following patch to scripts/vlan should fix the issue:
--- vlan.orig 2013-04-25 17:00:30.801291551 +0200
+++ vlan 2013-04-25 17:01:22.121923713 +0200
@@ -18,7 +18,7 @@
case $1 in
build )
if [ "$CONFIG_VLAN" = "y" ]; then
- make $PMAKE all || exit 1
+ make $PMAKE purge vconfig || exit 1
fi
;;
@@ -28,7 +28,7 @@
rm -rf $TMPDIR || exit 1
copy_man
mkdir -p $TMPDIR || exit 1
- make all DESTDIR=$TMPDIR || exit 1
+ make purge vconfig DESTDIR=$TMPDIR || exit 1
mkdir -p $CDDIR/bin
cp vconfig $CDDIR/bin || exit 1
rm -rf $TMPDIR || exit 1
--
A
----------------------------------------------------------------------------
--
Try New Relic Now & We'll Send You this Cool Shirt New Relic is the only
SaaS-based application performance monitoring service that delivers powerful
full stack analytics. Optimize and monitor your browser, app, & servers with
just a few lines of code. Try New Relic and get this awesome Nerd Life
shirt! http://p.sf.net/sfu/newrelic_d2d_apr
_______________________________________________
Devil-linux-discuss mailing list
Dev...@li...
https://lists.sourceforge.net/lists/listinfo/devil-linux-discuss
|