0

我正在运行带有面包块的 ARMv7 Chromebook。我想安装 CIFS 共享,但似乎 CIFS 不在内核中。所以我下载了与我相同的内核版本源,编译了 cifs.ko 模块,并尝试加载它。但我收到了这个错误:

# insmod cifs.ko
insmod: ERROR: could not insert module cifs.ko: Operation not permitted

该模块被编译为 ARM 模块,我检查了文件:

# file cifs.kocifs.ko: ELF 32-bit LSB relocatable, ARM, version 1, BuildID[sha1]=e14d1772583fae478e2b113b57ce81c214e511af, not stripped

是什么赋予了?

4

1 回答 1

0

Chromium OS 默认不允许添加内核模块。使用此脚本禁用模块锁定。https://github.com/divx118/crouton-packages/blob/master/README.md

有关修改 Chromium OS 内核的更多信息可以在这里找到: https://github.com/dnschneid/crouton/wiki/Build-kernel-headers-and-install-Virtualbox-(x86)通常整个 crouton 存储库/wiki 是很多帮助。

于 2016-06-01T01:25:38.260 回答