使用configure识别Raspberry Pi主机

时间:2013-12-02 19:50:05

标签: linux raspberry-pi configure host autotools

我从事跨平台项目,最近又添加了对Raspberry Pi的支持。该项目确保在尽可能广泛的受众中提供,具有预制,cmake和autotools构建系统。我为RPi设置了交叉编译,一切都很好。

最近,我还尝试构建一个Raspberry Pi VM(直到我得到一个真正的RPi)。从Linux,我运行'./configure --host = arm-raspberry-linux-gnueabihf',并从那里配置它。但是在RPi上(Rasbian 7),config.guess找到的默认主机是'armv61-unknown-linux-gnueabihf'。出于这个原因,即使是本地的Pi,我也必须运行'./configure --host = arm-raspberry-linux-gnueabihf'。所以,我的问题归结为:

目前,我目前在配置脚本中有类似的内容:

case "$host" in
    armv61-unknown-linux-gnueabihf)
        if [[ -f /usr/bin/rpi-update ]]; then
            on_raspberry=yes
        fi
    ;;
    ## other hosts here
esac

所以,我的问题归结为:

  1. 'armv61-unknown-linux-gnueabihf'是否仅在Raspberry Pi上报道?如果没有,如何配置以确保它确实在RPi上?检查rpi-update是否足够?不同的发行版(Arch Linux,Pidora,...)也有rpi-update吗?
  2. 是否有其他可能的主机三元组,由不同版本的Pi报告?
  3. 提前致谢

2 个答案:

答案 0 :(得分:2)

  

'armv61-unknown-linux-gnueabihf'是否仅在Raspberry Pi上报道了?

其他平台也可以使用它。

  

如果没有,如何配置以确保它确实在RPi上?

它不能真正(例如在RPi VM上运行它)。 configure只是一个shell脚本。

  

检查rpi-update是否足够?

见上文。

  

不同的发行版(Arch Linux,Pidora,...)是否也有rpi-update?

目前的Pidora和Arch图像没有/usr/bin/rpi-update。至少早在2012年8月10日,旧的Rasbpian图像也都没有。

  

是否有其他可能的主机三元组,这些由不同版本的Pi报告?

There are 3 triplets for the RPi cross compilers,所以如果有其他人就不会感到惊讶。

编辑:所以基本上需要的是configure检测它何时在Raspberry Pi上构建的方法。馅饼很简单:

<强> configure.ac

# need to detect build...
AC_CANONICAL_BUILD

...

AC_MSG_CHECKING([if build is on Raspberry Pi])
# The test for 'BCM2708' might be sufficient,
# but the presence of Serial is definitely part of
# the Pi firmware for codec licensing.
# See this thread
# <http://www.raspberrypi.org/phpBB3/viewtopic.phpf=29&t=28304&p=252357#p251536>.
AS_CASE("$build",
     [arm*-*-linux*],
     [on_rpi=`awk -v r=0 '/^Hardware@<:@ \t@:>@+:@<:@ \t@:>@+BCM2708/ { ++r;} /^Serial@<:@ \t@:>@+:/ { ++r; } END { print ((r > 1) ? "yes" : "no");}' /proc/cpuinfo`],
     [on_rpi="no"])
AC_MSG_RESULT($on_rpi)

检测Raspbian,Pidora,应该在Arch上工作。 Arch似乎没有在其当前安装映像中包含编译器,因此{I}尝试时失败了configure。运行armv6l-unknown-linux-gnueabihf时,所有检测到的构建都为./configure。我没有在任何类型的RPi模拟器或VM上试过这个。

答案 1 :(得分:0)

/ proc / cpuinfo中的BCM2708对于RPi可能是唯一的。

From File /proc/cpuinfo

Processor       : ARMv6-compatible processor rev 7 (v6l)
BogoMIPS        : 697.95
Features        : swp half thumb fastmult vfp edsp java tls 
CPU implementer : 0x41
CPU architecture: 7
CPU variant     : 0x0
CPU part        : 0xb76
CPU revision    : 7

Hardware        : BCM2708
Revision        : 000d
Serial          : 00000000db690cb4