2

我已经生成了一个core-image-minimalusing yoctofor Raspberry Pi zero W
我正在尝试qemu-system-arm使用以下命令运行它:

sudo qemu-system-arm -kernel uImage-1-4.19.93+git0+3fdcc814c5-r0-raspberrypi0-wifi-20200208095028.bin \
-cpu arm1176 \
-m 512 \
-M raspi2 \
-no-reboot \
-serial stdio \
-append "root=/dev/sda2 panic=1 rootfstype=ext4 rw init=/bin/bash" \
-drive "file=core-image-minimal-raspberrypi0-wifi-20200208095028.rootfs.tar.bz2,index=0,media=disk,format=raw"

但模拟器运行为空白屏幕。

我的变化local.conf

MACHINE ??= "raspberrypi0-wifi"
RPI_USE_U_BOOT = "1"
ENABLE_UART = "1"
IMAGE_FSTYPES = "tar.bz2 ext4.xz"
SDIMG_ROOTFS_TYPE = "ext4.xz"
DISTRO_FEATURES_remove = "x11"
4

1 回答 1

1

Raspberry Pi 2 具有不同的处理器 BCM2836(四核)和不同的内存映射 RPiZero 或 RPi1 我所做的是修改和重新编译 QEMU 以支持 Raspberry Pi Zero W。您可以在以下位置找到我的补丁叉: https://github。 com/igwtech/qemu

于 2020-04-09T22:00:38.503 回答