* [PATCH 0/2] runqemu minor fixes
@ 2012-07-05 17:12 Scott Garman
2012-07-05 17:12 ` [PATCH 1/2] runqemu: fix support for ext4 rootfs images Scott Garman
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Scott Garman @ 2012-07-05 17:12 UTC (permalink / raw)
To: openembedded-core
Hello,
These two commits fix yocto bug #2611.
Scott
The following changes since commit dcc43c34bfa9304233ecfd3f518a84ddfdc2fd90:
perf: remove unconditional python-ext install (2012-07-05 15:56:17 +0100)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib sgarman/runqemu-minor-fixes-oe
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=runqemu-minor-fixes-oe
Scott Garman (2):
runqemu: fix support for ext4 rootfs images
runqemu: fix usage() help for MACHINE setting
scripts/runqemu | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--
1.7.9.5
^ permalink raw reply [flat|nested] 4+ messages in thread* [PATCH 1/2] runqemu: fix support for ext4 rootfs images
2012-07-05 17:12 [PATCH 0/2] runqemu minor fixes Scott Garman
@ 2012-07-05 17:12 ` Scott Garman
2012-07-05 17:12 ` [PATCH 2/2] runqemu: fix usage() help for MACHINE setting Scott Garman
2012-07-09 17:06 ` [PATCH 0/2] runqemu minor fixes Saul Wold
2 siblings, 0 replies; 4+ messages in thread
From: Scott Garman @ 2012-07-05 17:12 UTC (permalink / raw)
To: openembedded-core
Partial fix for [YOCTO #2611]
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
---
scripts/runqemu | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/runqemu b/scripts/runqemu
index 9fdbd54..84674e2 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -98,7 +98,7 @@ while true; do
[ -z "$MACHINE" ] && MACHINE=$arg || \
error "conflicting MACHINE types [$MACHINE] and [$arg]"
;;
- "ext2" | "ext3" | "jffs2" | "nfs" | "btrfs")
+ "ext2" | "ext3" | "ext4" | "jffs2" | "nfs" | "btrfs")
[ -z "$FSTYPE" -o "$FSTYPE" = "$arg" ] && FSTYPE=$arg || \
error "conflicting FSTYPE types [$FSTYPE] and [$arg]"
;;
--
1.7.9.5
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH 2/2] runqemu: fix usage() help for MACHINE setting
2012-07-05 17:12 [PATCH 0/2] runqemu minor fixes Scott Garman
2012-07-05 17:12 ` [PATCH 1/2] runqemu: fix support for ext4 rootfs images Scott Garman
@ 2012-07-05 17:12 ` Scott Garman
2012-07-09 17:06 ` [PATCH 0/2] runqemu minor fixes Saul Wold
2 siblings, 0 replies; 4+ messages in thread
From: Scott Garman @ 2012-07-05 17:12 UTC (permalink / raw)
To: openembedded-core
Partial fix for [YOCTO #2611]
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
---
scripts/runqemu | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/runqemu b/scripts/runqemu
index 84674e2..8d149a2 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -25,7 +25,7 @@ usage() {
echo " QEMUARCH - the qemu machine architecture to use"
echo " KERNEL - the kernel image file to use"
echo " ROOTFS - the rootfs image file or nfsroot directory to use"
- echo " MACHINE=xyz - the machine name (optional, autodetected from KERNEL filename if unspecified)"
+ echo " MACHINE - the machine name (optional, autodetected from KERNEL filename if unspecified)"
echo " Simplified QEMU command-line options can be passed with:"
echo " nographic - disables video console"
echo " serial - enables a serial console on /dev/ttyS0"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH 0/2] runqemu minor fixes
2012-07-05 17:12 [PATCH 0/2] runqemu minor fixes Scott Garman
2012-07-05 17:12 ` [PATCH 1/2] runqemu: fix support for ext4 rootfs images Scott Garman
2012-07-05 17:12 ` [PATCH 2/2] runqemu: fix usage() help for MACHINE setting Scott Garman
@ 2012-07-09 17:06 ` Saul Wold
2 siblings, 0 replies; 4+ messages in thread
From: Saul Wold @ 2012-07-09 17:06 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer; +Cc: Scott Garman
On 07/05/2012 10:12 AM, Scott Garman wrote:
> Hello,
>
> These two commits fix yocto bug #2611.
>
> Scott
>
> The following changes since commit dcc43c34bfa9304233ecfd3f518a84ddfdc2fd90:
>
> perf: remove unconditional python-ext install (2012-07-05 15:56:17 +0100)
>
> are available in the git repository at:
>
> git://git.yoctoproject.org/poky-contrib sgarman/runqemu-minor-fixes-oe
> http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=runqemu-minor-fixes-oe
>
> Scott Garman (2):
> runqemu: fix support for ext4 rootfs images
> runqemu: fix usage() help for MACHINE setting
>
> scripts/runqemu | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
Merged into OE-Core
Thanks
Sau!
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-07-09 17:18 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-05 17:12 [PATCH 0/2] runqemu minor fixes Scott Garman
2012-07-05 17:12 ` [PATCH 1/2] runqemu: fix support for ext4 rootfs images Scott Garman
2012-07-05 17:12 ` [PATCH 2/2] runqemu: fix usage() help for MACHINE setting Scott Garman
2012-07-09 17:06 ` [PATCH 0/2] runqemu minor fixes Saul Wold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox