我正在尝试重新构建内核,因为我想将jiffies更改为1ms。
我正在跟踪一个塔楼,并且声明我将执行chmod a+x debian/scripts/*,但是我找不到debian文件夹或脚本文件夹。我在哪能找到这个?
发布于 2015-05-06 18:15:18
如果从Ubuntu或使用deb源包克隆源,则debian目录位于第二层。就像这样
git clone git://kernel.ubuntu.com/ubuntu/ubuntu-precise.git
cd ubuntu-precise你会在ls中看到"debian“。但实际上你不需要设置+x,它肯定已经存在了。就这么做
fakeroot debian/rules clean
fakeroot debian/rules binary-headers binary-generic它会建造的。
https://askubuntu.com/questions/620125
复制相似问题