Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我复制了位于 /usr/src/sys/i386/conf 中的 GENERIC 配置文件,将其名称更改为 MYKERNEL,对其进行了修改,特别删除了 RAID、火线和软盘支持。然后运行 cd /usr/src make buildkernel KERNCONF=MYKERNEL
构建成功,但是当我签入 /boot/kernel 时,内核的大小与 kernel.old 中的大小保持一致。我做错了什么?如何减小内核大小?
运行make buildkernel只构建内核和模块。它不安装它们。
make buildkernel
为此,您还需要运行make installkernel.
make installkernel