gpt4 book ai didi

arm - 如何使用 crosstool-ng 为系统构建 OS/ABI

转载 作者:行者123 更新时间:2023-12-05 07:40:19 25 4
gpt4 key购买 nike

我正在尝试为我的 DNS-320L NAS 构建内核模块.

我在 Debian lenny chroot 环境中构建了 crosstool-ng,但是在我编译了我的内核模块并尝试安装它之后,我得到:

insmod: error inserting 'kernel/net/ip4/ipip.ko': -1 Invalid module format

当我用 readelf 检查一个工作的内核模块时,我得到:

~/ct-ng-build$ readelf -h ~/ct-ng-build/kernel/orig/ipip.ko 
ELF Header:
Magic: 7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00
Class: ELF32
Data: 2's complement, little endian
Version: 1 (current)
OS/ABI: UNIX - System V
ABI Version: 0
Type: REL (Relocatable file)
Machine: ARM
Version: 0x1
Entry point address: 0x0
Start of program headers: 0 (bytes into file)
Start of section headers: 6696 (bytes into file)
Flags: 0x5000000, Version5 EABI
Size of this header: 52 (bytes)
Size of program headers: 0 (bytes)
Number of program headers: 0
Size of section headers: 40 (bytes)
Number of section headers: 51

但是我的模块有一些不同:

~/ct-ng-build$ readelf -h ~/ct-ng-build/kernel/modules/lib/modules/2.6.31.8/kernel/net/ipv4/ipip.ko 
ELF Header:
Magic: 7f 45 4c 46 01 01 01 61 00 00 00 00 00 00 00 00
Class: ELF32
Data: 2's complement, little endian
Version: 1 (current)
OS/ABI: ARM
ABI Version: 0
Type: REL (Relocatable file)
Machine: ARM
Version: 0x1
Entry point address: 0x0
Start of program headers: 0 (bytes into file)
Start of section headers: 6280 (bytes into file)
Flags: 0x600, GNU EABI, software FP, VFP
Size of this header: 52 (bytes)
Size of program headers: 0 (bytes)
Number of program headers: 0
Size of section headers: 40 (bytes)
Number of section headers: 23
Section header string table index: 20

我的交叉编译环境是:

$ echo $CROSS_COMPILE 
arm-none-eabi-


make CROSS_COMPILE=${CROSS_COMPILE} INSTALL_PATH=~/ct-ng-build/kernel/install INSTALL_MOD_PATH=~/ct-ng-build/kernel/modules INSTALL_FW_PATH=~/ct-ng-build/kernel/firmware

我的gcc编译成功了:

$  ${CROSS_COMPILE}gcc -v
Using built-in specs.
Target: arm-none-eabi
Configured with: ~/ct-ng-build/targets/src/gcc-4.3.2/configure --build=x86_64-build_unknown-linux-gnu --host=x86_64-build_unknown-linux-gnu --target=arm-none-eabi --prefix=~/x-tools/arm-none-eabi --with-local-prefix=~/x-tools/arm-none-eabi/arm-none-eabi//sys-root --disable-multilib --disable-libmudflap --with-sysroot=~/x-tools/arm-none-eabi/arm-none-eabi//sys-root --with-newlib --enable-threads=no --disable-shared --with-pkgversion=crosstool-NG-1.9.0 --with-arch=armv5te --with-tune=arm926ej-s --disable-__cxa_atexit --with-gmp=~/ct-ng-build/targets/arm-none-eabi/build/static --with-mpfr=~/ct-ng-build/targets/arm-none-eabi/build/static --enable-target-optspace --disable-nls --enable-symvers=gnu --enable-languages=c,c++
Thread model: single
gcc version 4.3.2 (crosstool-NG-1.9.0)

关于如何将 OS/ABI 设置为“UNIX - System V”并将标志设置为“0x5000000,Version5 EABI”而不是“Arm”和“0x600,GNU EABI,软件 FP,VFP”有什么想法吗?

还是有其他问题?

谢谢!

--- 编辑 ----我专门尝试针对我现有的 NAS 操作系统:

Kernel  2.6.31.8 #1 armv5tel
C library gcc-4.3-mt-1.44.0

# /lib/libc-2.8.so
GNU C Library stable release version 2.8, by Roland McGrath et al.
Copyright (C) 2008 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.
Compiled by GNU CC version 4.3.2.

到目前为止,我只能使用 crosstool-ng-1.9.0 构建一个 crosstool-ng 环境,但它生成了上面的二进制文件。

我尝试根据 3.17.2 ARM Options 设置 -mabi=apcs-gnu但是 C 库不会编译出现奇怪的“缺少 header ”错误(我可能会再试一次 - 可能与我的 chroot 环境有关)。

最佳答案

使用 crosstool-NG 构建一个新的工具链,但针对 OABI 而不是 EABI 配置它。
参见 Configuring crosstool-NG .

All debian releases (for ARM) upto and including Lenny were OABI.

引用:https://wiki.embeddedarm.com/wiki/EABI_vs_OABI

即使您的工具链前缀是 arm-none-eabi-,它生成的二进制文件看起来也像 OABI。
我有产生相同 readelf 输出的 OABI 二进制文件,以及具有与您想要的相同的 readelf 输出(“UNIX - System V”)的 EABI 二进制文件。

question描述了一个与您相似但相反的情况,即他的工具链正在生成 EABI 二进制文件,但他需要 OABI。

显然,您的工具链是为生成 OABI 而构建的,但使用了误导性前缀。
您需要使用 crosstool-NG 构建一个新的工具链,但将其配置为 EABI 而不是 OABI。
除非启用 Use obsolete features,否则较新版本的 crosstool-NG 实际上会强制选择 EABI,从而使 OABI 的配置变得困难。


附录

You say "but configure it for OABI rather than EABI.", but how?

使用 crosstool-NG v1.18 安装,我可以指定&构建
* Linux 内核版本 2.6.31.14,
* gcc 版本 4.3.2,
* binutils 版本 2.18a 2.19.1a,
* glibc 版本 2.8。

为了取消选择Target options ---> Use EABI(取消选择意味着使用OABI),
我首先必须选择 Paths and misc options ---> Use obsolete features

在这个版本的 crosstool-NG 中,Use EABI 被自动选中。


Use EABI 菜单项的描述有:

Set up the toolchain so that it generates EABI-compliant binaries.

If you say 'n' here, then the toolchain will generate OABI binaries.
OABI has long been deprecated, and is now considered legacy.

由于 OABI 在此版本的 crosstool-NG 中被认为已弃用,因此除非指定 Use obsolete features,否则配置符号 ARCH_ARM_EABI_FORCE 处于事件状态。

关于arm - 如何使用 crosstool-ng 为系统构建 OS/ABI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46258701/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com