I have a Raspberry Pi 2 running Raspbian
My understating is that I should be able to run the ARM 32 bits compilation on it.
I follow those steps but at the end it will throw an Illegal Instruction error.
$ wget https://bitcoin.org/bin/bitcoin-core-0.13.0/SHA256SUMS.asc
$ wget https://bitcoin.org/bin/bitcoin-core-0.13.0/bitcoin-0.13.0-arm-linux-gnueabihf.tar.gz
$ sha256sum bitcoin-0.13.0-arm-linux-gnueabihf.tar.gz|grep -f SHA256SUMS.asc
7c657ec6f6a5dbb93b9394da510d5dff8dd461df8b80a9410f994bc53c876303 bitcoin-0.13.0-arm-linux-gnueabihf.tar.gz
$ tar -zxf bitcoin-0.13.0-arm-linux-gnueabihf.tar.gz
$ bitcoin-0.13.0/bin/bitcoind
Illegal instruction
$ lsb_release -a
No LSB modules are available.
Distributor ID: Raspbian
Description: Raspbian GNU/Linux 8.0 (jessie)
Release: 8.0
Codename: jessie
$ uname -a
Linux raspberrypi 4.1.7+ [#817](/bitcoin-bitcoin/817/) PREEMPT Sat Sep 19 15:25:36 BST 2015 armv6l GNU/Linux
Was it never intended to work on a Raspberry Pi 2 or is there something missing on my part or at the compilation options?