web-dev-qa-db-ja.com

ターゲット「vmlinux」のレシピが失敗しましたか?

QEMU用のカーネルを構築してRaspberry Piをエミュレートしようとしています: 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ツールキットを使用しています(公式のPiツールチェーンのgitでそれを持っている場合、本質的にプラグアンドプレイであるように思われます)

助けがありますか?

1
user138741

以下のドライバーをファイルに追加します(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-

わたしにはできる。

それでおしまい。

3
steve

Debian jessie crossツールチェーンを使用して同じ問題を抱えていました。 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をアクティブにし、コンパイルします。私のために働いた。

1
Christoph