2015-11-13 92 views
1

我從linux源碼克隆了最新的git樹。我運行在虛擬框中的所有(第一個內存是4096 MB,因爲seg-fault我增加到8096 MB,然後也是相同的錯誤)。眼下VM已3.19.0安裝Segmentation while running make modules_install

>clone latest git tree 
>make localmodconfig 
>make -j1 
>sudo make mosules_install 

All install work fine. 
    but with depmod it's giving me below error 

DEPMOD 4.3.0-11785-gca4ba96 
depmod: WARNING: found 2 modules in dependency cycles! 
depmod: WARNING: /lib/modules/4.3.0-11785-gca4ba96/kernel/drivers/staging/lustre/lnet/lnet/lnet.ko in dependency cycle! 
depmod: WARNING: /lib/modules/4.3.0-11785-gca4ba96/kernel/drivers/staging/lustre/lustre/libcfs/libcfs.ko in dependency cycle! 
./scripts/depmod.sh: line 57: 23221 Killed     "$DEPMOD" "[email protected]" "$KERNELRELEASE" $SYMBOL_PREFIX 
make: *** [_modinst_post] Error 137 

早些時候我得到了賽格故障同一行,這時候,它殺死了,因爲我試過depmod -a版本(4.3.0 .....)

此外,當我嘗試手動depmod -a VERSION(4.3.0 .....)它沒有給我任何錯誤,它工作正常。

回答

1

libcfs/libcfs/module.c並刪除開關殼體件爲IOC_LIBCFS_PING_TEST - 這是一個過時的codepiece,它會像一個魅力

0

我有同樣的問題。在文件scripts/depmod.sh中註釋掉"$DEPMOD" "[email protected]" "$KERNELRELEASE" $SYMBOL_PREFIX行解決了它。

相關問題