目标‘vmlinux’的配方失败了吗?

目标‘vmlinux’的配方失败了吗?

我正在尝试为 QEMU 构建一个内核来模拟树莓派: http://xecdesign.com/compiling-a-kernel/ https://www.raspberrypi.org/documentation/linux/kernel/building.md

但是,运行命令:make ARCH=arm

它编译得很好很长一段时间,但当它收到此消息时停止了:

kevin@kevin-laptop:~/linux$ make ARCH=arm
  CHK     include/config/kernel.release
  CHK     include/generated/uapi/linux/version.h
  CHK     include/generated/utsrelease.h
make[1]: 'include/generated/mach-types.h' is up to date.
  CALL    scripts/checksyscalls.sh
  CHK     include/generated/compile.h
  CHK     kernel/config_data.h
  LINK    vmlinux
  LD      vmlinux.o
  MODPOST vmlinux.o
  GEN     .version
  CHK     include/generated/compile.h
  UPD     include/generated/compile.h
  CC      init/version.o
  LD      init/built-in.o
drivers/built-in.o: In function `mmc_fixup_device':
of_iommu.c:(.text+0xb9674): undefined reference to `mmc_debug'
Makefile:923: recipe for target 'vmlinux' failed
make: *** [vmlinux] Error 1

我不太清楚它告诉我的是什么。我猜是它在编译时找不到所需的库。我正在使用 raspberry pi 工具包(如果他们在 git 上为官方 Pi 工具链提供了该工具包,那么它似乎应该是即插即用的)

有什么帮助吗?

答案1

将以下驱动程序添加到文件(arch/arm/configs/bcm2835_defconfig)

 CONFIG_MMC_BCM2835=y
 CONFIG_MMC_BCM2835_DMA=y
 CONFIG_DMADEVICES=y
 CONFIG_DMA_BCM2708=y

cp arch/arm/configs/bcm2835_defconfig ./.config
make ARCH=arm CROSS_COMPILE=/usr/bin/arm-linux-gnueabi- menuconfig
make ARCH=arm CROSS_COMPILE=/usr/bin/arm-linux-gnueabi-

这个对我有用。

就是这样。

答案2

使用 Debian jessie 交叉工具链时遇到了同样的问题。使用 rpi-3.18.y 内核。追溯到mmc_debug定义不正确:


christoph@debian:~/raspidev/linux$ find drivers/mmc -name \*.c -exec -H grep mmc_debug {} \;
drivers/mmc/host/bcm2835-mmc.c
drivers/mmc/host/omap_hsmmc.c
drivers/mmc/core/quirks.c

进一步查看,只有bcm2835-mmc.cquirks.c有定义的符号:


bcm2835-mmc.c:
/*static */unsigned mmc_debug;
/*static */unsigned mmc_debug2;
module_param(mmc_debug, uint, 0644);
module_param(mmc_debug2, uint, 0644);

quirks.c:
extern unsigned mmc_debug;

所以我返回并在我的配置中启用了 MMC 驱动程序以及 BCM2835 主机适配器。这添加到已应用的配置补丁中。


diff --git a/drivers/mmc/host/Kconfig b/drivers/mmc/host/Kconfig
index 3e7abcd..95eb332 100644
--- a/drivers/mmc/host/Kconfig
+++ b/drivers/mmc/host/Kconfig
@@ -6,7 +6,7 @@ comment "MMC/SD/SDIO Host Controller Drivers"

 config MMC_BCM2835
        tristate "MMC support on BCM2835"
-       depends on MACH_BCM2708 || MACH_BCM2709 || ARCH_BCM2835
+       depends on MACH_BCM2708 || MACH_BCM2709 || ARCH_BCM2835 || ARCH_VERSATILE_PB || ARCH_VERSATILE_AB
        help
          This selects the MMC Interface on BCM2835.

然后在配置中激活 BCM2835 并进行编译。对我有用。

相关内容