Changes between Version 45 and Version 46 of Developer/Simulators/QEMU/CANEmulation


Ignore:
Timestamp:
08/14/13 09:49:47 (11 years ago)
Author:
C Rempel
Comment:

/* Starting Custom Qemu */

Legend:

Unmodified
Added
Removed
Modified
  • Developer/Simulators/QEMU/CANEmulation

    v45 v46  
    305305
    306306Finally, we can start our patched qemu by
     307
     308'''TODO:''' ran into an error like: ~/qemu/ifup-qemu: could not launch network script
     309qemu-system-i386: -net tap,vlan=0,ifname=tap0,script=~/qemu/ifup-qemu: Device 'tap' could not be initialized.
     310Need to add instructions for permitting the TAP device to work...
     311
    307312 /opt/qemu/bin/qemu-system-i386 -s -m 128 -kernel bzImage \
    308313    -append "notsc clocksource=acpi_pm root=/dev/nfs \
    309    nfsroot=192.168.9.33:~qemu/rootfs rw \
     314   nfsroot=192.168.9.33:~/qemu/rootfs rw \
    310315   ip=192.168.9.88:192.168.9.33:192.168.9.33:255.255.255.0::eth0:auto \
    311316    init=/sbin/init" \
    312317    -net nic,model=e1000,vlan=0,macaddr=00:cd:ef:00:02:01 \
    313     -net tap,vlan=0,ifname=tap0,script=~qemu/ifup-qemu
     318    -net tap,vlan=0,ifname=tap0,script=~/qemu/ifup-qemu
    314319
    315320This can be done through the following commands.