changeset 117:8b6a5294347a

Move root= into run_emulator()
author Rob Landley <rob@landley.net>
date Wed, 28 Feb 2007 19:46:31 -0500
parents 9ab75bd7bab8
children 85582f847bd6
files run-mini-native.sh sources/configs/i686 sources/configs/mipsel
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/run-mini-native.sh	Wed Feb 28 19:44:44 2007 -0500
+++ b/run-mini-native.sh	Wed Feb 28 19:46:31 2007 -0500
@@ -3,4 +3,4 @@
 source include.sh
 
 run_emulator build/image-"$1".ext2 build/mini-native-"$1"/zImage-"$1" \
-	"root=/dev/hda rw init=/tools/bin/sh panic=1"
+	"rw init=/tools/bin/sh panic=1"
--- a/sources/configs/i686	Wed Feb 28 19:44:44 2007 -0500
+++ b/sources/configs/i686	Wed Feb 28 19:46:31 2007 -0500
@@ -6,7 +6,7 @@
 
 run_emulator()
 {
-  qemu -nographic -hda "$1" -kernel "$2" -append "$3 console=ttyS0"
+  qemu -nographic -hda "$1" -kernel "$2" -append "$3 root=/dev/hda console=ttyS0"
 }
 
 # Write out uClibc .config file.
--- a/sources/configs/mipsel	Wed Feb 28 19:44:44 2007 -0500
+++ b/sources/configs/mipsel	Wed Feb 28 19:46:31 2007 -0500
@@ -7,7 +7,7 @@
 run_emulator()
 {
   qemu-system-mips -M mips -no-reboot -nographic -hda "$1" -kernel "$2" \
-	-append "$3 console=ttyS0 root=hda"
+	-append "$3 console=ttyS0 root=/dev/hda"
 }
 
 # Write out uClibc .config file.