diff options
author | Dongxiao Xu <dongxiao.xu@intel.com> | 2010-09-25 11:22:23 +0800 |
---|---|---|
committer | Saul Wold <Saul.Wold@intel.com> | 2010-09-27 08:59:15 -0700 |
commit | 5c8fad6544421e238da2ff33f5bbf1ed68fbc8be (patch) | |
tree | fd3fc1552a3fa541b0d8bfcaaa6bf109d2f194cf /scripts/poky-qemu-internal | |
parent | ce456306dad3fdf42494830011dacae213c48edf (diff) | |
download | openembedded-core-5c8fad6544421e238da2ff33f5bbf1ed68fbc8be.tar.gz openembedded-core-5c8fad6544421e238da2ff33f5bbf1ed68fbc8be.tar.bz2 openembedded-core-5c8fad6544421e238da2ff33f5bbf1ed68fbc8be.zip |
poky-qemu-internal: Add userspace nfs support for mips and ppc
Add userspace nfs support for mips and ppc architecture.
This fixes [BUGID #343]
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Diffstat (limited to 'scripts/poky-qemu-internal')
-rwxr-xr-x | scripts/poky-qemu-internal | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/scripts/poky-qemu-internal b/scripts/poky-qemu-internal index c28568049c..e7b7af3930 100755 --- a/scripts/poky-qemu-internal +++ b/scripts/poky-qemu-internal @@ -238,6 +238,15 @@ if [ "$MACHINE" = "qemumips" ]; then KERNCMDLINE="root=/dev/hda console=ttyS0 console=tty $KERNEL_NETWORK_CMD mem=$QEMU_MEMORY" QEMUOPTIONS="$QEMU_NETWORK_CMD -M $MACHINE_SUBTYPE -hda $HDIMAGE -no-reboot $QEMU_UI_OPTIONS" fi + if [ "$TYPE" = "nfs" ]; then + if [ "$NFS_SERVER" = "192.168.7.1" -a ! -d "$NFS_DIR" ]; then + echo "Error: NFS mount point $HDIMAGE doesn't exist" + release_lock + return + fi + KERNCMDLINE="root=/dev/nfs console=ttyS0 console=tty nfsroot=$NFS_SERVER:$NFS_DIR,$UNFS_OPTS rw $KERNEL_NETWORK_CMD mem=$QEMU_MEMORY" + QEMUOPTIONS="$QEMU_NETWORK_CMD -M $MACHINE_SUBTYPE -no-reboot $QEMU_UI_OPTIONS" + fi fi if [ "$MACHINE" = "qemuppc" ]; then @@ -250,6 +259,15 @@ if [ "$MACHINE" = "qemuppc" ]; then KERNCMDLINE="root=/dev/hda console=ttyS0 console=tty0 $KERNEL_NETWORK_CMD mem=$QEMU_MEMORY" QEMUOPTIONS="$QEMU_NETWORK_CMD -cpu $CPU_SUBTYPE -M $MACHINE_SUBTYPE -bios $BIOS -hda $HDIMAGE -no-reboot $QEMU_UI_OPTIONS" fi + if [ "$TYPE" = "nfs" ]; then + if [ "$NFS_SERVER" = "192.168.7.1" -a ! -d "$NFS_DIR" ]; then + echo "Error: NFS mount point $HDIMAGE doesn't exist" + release_lock + return + fi + KERNCMDLINE="root=/dev/nfs console=ttyS0 console=tty0 nfsroot=$NFS_SERVER:$NFS_DIR,$UNFS_OPTS rw $KERNEL_NETWORK_CMD mem=$QEMU_MEMORY" + QEMUOPTIONS="$QEMU_NETWORK_CMD -cpu $CPU_SUBTYPE -M $MACHINE_SUBTYPE -bios $BIOS -no-reboot $QEMU_UI_OPTIONS" + fi fi if [ "$MACHINE" = "akita" ]; then |