Hi,
I'm trying to run an old armel image on 12.04 on Snowball. It doesn't run because there's no armel support; starting with a missing /lib/ld-linux.so.3
How can I add armel support? I tried this:
# dpkg --add-architecture armel dpkg: error: unknown option --add-architecture
# apt-get update ; apt-get install dpkg [...] dpkg is already the newest version.
# dpkg-query --show dpkg dpkg 1.16.1.2ubuntu7
Thanks for any pointers you can give me.
-- IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.
Scott,
The Ubuntu-desktop evaluation builds for 12.04 are based upon Ubuntu Precise, which is officially armhf, so there is no armel support. If you need armel, I think you'll have to use something older, but it would be better to rebuild your binary if that's possible.
cheers, Jesse
On Tue, May 22, 2012 at 1:08 PM, Scott Douglass Scott.Douglass@arm.com wrote:
Hi,
I’m trying to run an old armel image on 12.04 on Snowball. It doesn’t run because there’s no armel support; starting with a missing /lib/ld-linux.so.3
How can I add armel support? I tried this:
# dpkg --add-architecture armel
dpkg: error: unknown option --add-architecture
# apt-get update ; apt-get install dpkg
[...]
dpkg is already the newest version.
# dpkg-query --show dpkg
dpkg 1.16.1.2ubuntu7
Thanks for any pointers you can give me.
-- IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.
linaro-dev mailing list linaro-dev@lists.linaro.org http://lists.linaro.org/mailman/listinfo/linaro-dev
Hi,
On 22 May 2012 15:08, Scott Douglass Scott.Douglass@arm.com wrote:
Hi,
I’m trying to run an old armel image on 12.04 on Snowball. It doesn’t run because there’s no armel support; starting with a missing /lib/ld-linux.so.3
latest Linaro ARMEL images are based on Ubuntu 11.10 (Oneiric) and can be found on http://releases.linaro.org/12.03/ubuntu/leb-snowball/ Officially, Ubuntu 12.04 (Precise) builds support ARMHF. You can try to build an ARMEL image of Ubuntu Precise but you'll be on your own.
How can I add armel support? I tried this:
# dpkg --add-architecture armel
dpkg: error: unknown option --add-architecture
# apt-get update ; apt-get install dpkg
[...]
dpkg is already the newest version.
# dpkg-query --show dpkg
dpkg 1.16.1.2ubuntu7
Thanks for any pointers you can give me.
+++ Scott Douglass [2012-05-22 13:08 +0100]:
Hi,
I’m trying to run an old armel image on 12.04 on Snowball. It doesn’t run because there’s no armel support; starting with a missing /lib/ld-linux.so.3
How can I add armel support? I tried this:
# dpkg --add-architecture armel
dpkg: error: unknown option --add-architecture
This is an unfortunate divergence between Debian and Ubuntu syntax.
On debian (dpkg 1.16.3 or later) it is: dpkg --add-architecture armel On Ubuntu (dpkg 1.16.1 to < 1.16.3) it is: echo "foreign-architecture armel" > /etc/dpkg.cfg.d/multiarch
That should allow $package:armel as well as $package:armhf packages to be installed, but I don't know if that will actually solve your problem.
Wookey