没有您的负载和入口点不正确。通常在下面是加载和入口地址
Image Name: Linux-3.9.0Created: Thu Dec 26 09:50:57 2013Image Type: ARM Linux Kernel Image (uncompressed)Data Size: 1908056 Bytes = 1863.34 kB = 1.82 MBLoad Address: 00008000Entry Point: 00008000
而且,如果您尝试使用命令,内核将
be panic在没有rootfs的情况下使用。initrd参数丢失。同样,在构建内核时,您可能会缺少一些配置。
请尝试以下步骤:
1)
make ARCH=arm distclean
2)
make ARCH=arm versatile_defconfig
3)
make ARCH=arm menuconfig
在这里,您需要启用以下功能。
Kernel Features --->
[*] Use the ARM EABI to compile the kernel. (enablethis).
4)
make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- uImage
5)
qemu-system-arm -M versatilepb -m 128M -kernel arch/arm/boot/uImage -append"console=tty1"
在这里,您将获得控制台提示说内核崩溃。为了避免这种情况,请传递您的rootfs参数。
我猜你是从busybox构建rootfs的,如果这样,请尝试使用以下命令完全启动系统
6)
qemu-system-arm -M versatilepb -m 128M -kernel arch/arm/boot/uImage -initrdrootfs.img -append "root=/dev/ram mem=128M rdinit=/sbin/init" -serial stdio.



