public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] unbreak booting with virtio
@ 2009-07-31 18:19 Glauber Costa
  2009-07-31 19:55 ` Alexander Graf
  2009-08-03 12:37 ` Avi Kivity
  0 siblings, 2 replies; 10+ messages in thread
From: Glauber Costa @ 2009-07-31 18:19 UTC (permalink / raw)
  To: kvm; +Cc: avi, Alexander Graf

Since commit 89e671e3, extboot is broken due to wrong checksum

The problem is that printf "\\$sum" syntax will require an octal
representation, so the fix I'm proposing is to convert it first.

Signed-off-by: Glauber Costa <glommer@redhat.com>
CC: Alexander Graf <agraf@suse.de>
---
 pc-bios/optionrom/signrom.sh |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/pc-bios/optionrom/signrom.sh b/pc-bios/optionrom/signrom.sh
index 4322811..3512cc4 100755
--- a/pc-bios/optionrom/signrom.sh
+++ b/pc-bios/optionrom/signrom.sh
@@ -42,4 +42,5 @@ sum=$(( 256 - $sum ))
 
 # and write the output file
 cp "$1" "$2"
+sum=$(echo "obase=8; $sum" | bc)
 printf "\\$sum" | dd of="$2" bs=1 count=1 seek=$size conv=notrunc 2>/dev/null
-- 
1.6.2.2


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2009-08-03 12:31 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-31 18:19 [PATCH] unbreak booting with virtio Glauber Costa
2009-07-31 19:55 ` Alexander Graf
2009-07-31 23:39   ` Glauber Costa
2009-08-01  8:23     ` Alexander Graf
2009-08-01  7:04   ` Ján ONDREJ (SAL)
2009-08-01  8:01     ` Ján ONDREJ (SAL)
2009-08-01  8:19       ` Alexander Graf
2009-08-01  8:47         ` Ján ONDREJ (SAL)
2009-08-01  8:20   ` Paolo Bonzini
2009-08-03 12:37 ` Avi Kivity

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox