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 | |
parent | ce456306dad3fdf42494830011dacae213c48edf (diff) | |
download | poky-5c8fad6544421e238da2ff33f5bbf1ed68fbc8be.tar.gz |
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>
-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 | |||
238 | KERNCMDLINE="root=/dev/hda console=ttyS0 console=tty $KERNEL_NETWORK_CMD mem=$QEMU_MEMORY" | 238 | KERNCMDLINE="root=/dev/hda console=ttyS0 console=tty $KERNEL_NETWORK_CMD mem=$QEMU_MEMORY" |
239 | QEMUOPTIONS="$QEMU_NETWORK_CMD -M $MACHINE_SUBTYPE -hda $HDIMAGE -no-reboot $QEMU_UI_OPTIONS" | 239 | QEMUOPTIONS="$QEMU_NETWORK_CMD -M $MACHINE_SUBTYPE -hda $HDIMAGE -no-reboot $QEMU_UI_OPTIONS" |
240 | fi | 240 | fi |
241 | if [ "$TYPE" = "nfs" ]; then | ||
242 | if [ "$NFS_SERVER" = "192.168.7.1" -a ! -d "$NFS_DIR" ]; then | ||
243 | echo "Error: NFS mount point $HDIMAGE doesn't exist" | ||
244 | release_lock | ||
245 | return | ||
246 | fi | ||
247 | KERNCMDLINE="root=/dev/nfs console=ttyS0 console=tty nfsroot=$NFS_SERVER:$NFS_DIR,$UNFS_OPTS rw $KERNEL_NETWORK_CMD mem=$QEMU_MEMORY" | ||
248 | QEMUOPTIONS="$QEMU_NETWORK_CMD -M $MACHINE_SUBTYPE -no-reboot $QEMU_UI_OPTIONS" | ||
249 | fi | ||
241 | fi | 250 | fi |
242 | 251 | ||
243 | if [ "$MACHINE" = "qemuppc" ]; then | 252 | if [ "$MACHINE" = "qemuppc" ]; then |
@@ -250,6 +259,15 @@ if [ "$MACHINE" = "qemuppc" ]; then | |||
250 | KERNCMDLINE="root=/dev/hda console=ttyS0 console=tty0 $KERNEL_NETWORK_CMD mem=$QEMU_MEMORY" | 259 | KERNCMDLINE="root=/dev/hda console=ttyS0 console=tty0 $KERNEL_NETWORK_CMD mem=$QEMU_MEMORY" |
251 | QEMUOPTIONS="$QEMU_NETWORK_CMD -cpu $CPU_SUBTYPE -M $MACHINE_SUBTYPE -bios $BIOS -hda $HDIMAGE -no-reboot $QEMU_UI_OPTIONS" | 260 | QEMUOPTIONS="$QEMU_NETWORK_CMD -cpu $CPU_SUBTYPE -M $MACHINE_SUBTYPE -bios $BIOS -hda $HDIMAGE -no-reboot $QEMU_UI_OPTIONS" |
252 | fi | 261 | fi |
262 | if [ "$TYPE" = "nfs" ]; then | ||
263 | if [ "$NFS_SERVER" = "192.168.7.1" -a ! -d "$NFS_DIR" ]; then | ||
264 | echo "Error: NFS mount point $HDIMAGE doesn't exist" | ||
265 | release_lock | ||
266 | return | ||
267 | fi | ||
268 | KERNCMDLINE="root=/dev/nfs console=ttyS0 console=tty0 nfsroot=$NFS_SERVER:$NFS_DIR,$UNFS_OPTS rw $KERNEL_NETWORK_CMD mem=$QEMU_MEMORY" | ||
269 | QEMUOPTIONS="$QEMU_NETWORK_CMD -cpu $CPU_SUBTYPE -M $MACHINE_SUBTYPE -bios $BIOS -no-reboot $QEMU_UI_OPTIONS" | ||
270 | fi | ||
253 | fi | 271 | fi |
254 | 272 | ||
255 | if [ "$MACHINE" = "akita" ]; then | 273 | if [ "$MACHINE" = "akita" ]; then |