looks like missing " (double quote character) somewhere in the project configuration files or maybe redundant.
a typical QEMU call is qemu-system-arm -kernel path/to/zImage -initrd path/to/test_rootfs -append "root=/dev/ram rdinit=/test"
if you skip the first double quote immediately after -append - qemu will think rdinit=/test is a disk image and try to open it as a file
one possible solution is grep for the eclipse project dir for the keyword "rdinit" and examine all grep results for missing / redundant quotes
cd /your/project/dir grep -rw rdinit .
source share