- 论坛徽章:
- 0
|
我在a机器上编译完后,将结果复制b机器运行,出现错误,过程如下:
1. 在a机器编译
export ARCH=i386 -- Set cpu type
export INSTALL_MOD_PATH=/home/kkk -- Set modules install path
make mrproper
time menuconfig [ defconfig, allnoconfig ]
make dep
make clean
time make -j32
make modules
make modules_install
2. 复制到b机器
cp arch/x86/boot/bzImage /boot/bzImage.2.6.26.2.defcfg
cp linux-2.6.26.2/System.map /boot/System.map.2.6.26.2.defcfg
cp /home/kkk/lib/modules/2.6.26.2 /lib/modules/2.6.26.2.defcfg
mkinitrd initrd.2.6.26.2.defcfg.img 2.6.26.2.defcfg ------------ ERROR
No module mptbase found for kernel 2.6.26.2.defcfg, aborting.
请问怎么解决? |
|