* [Qemu-devel] [PULL 0/2] update seabios to 1.6.3.2
@ 2012-03-19 13:37 Gerd Hoffmann
2012-03-19 13:37 ` [Qemu-devel] [PATCH 1/2] Add seabios build scripts to roms/ Gerd Hoffmann
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Gerd Hoffmann @ 2012-03-19 13:37 UTC (permalink / raw)
To: qemu-devel; +Cc: Gerd Hoffmann
Hi,
Second try, no changes, just rebased and this time including the tree to
pull from in the cover letter ...
cheers,
Gerd
The following changes since commit 5bd33de6635577744b3c10dd3913bfe8c5ffaf40:
tcg: fix sparc host for AREG0 free operation (2012-03-18 19:15:32 +0000)
are available in the git repository at:
git://git.kraxel.org/qemu seabios-1.6.3.2
Gerd Hoffmann (2):
Add seabios build scripts to roms/
Update seabios to 1.6.3.2
pc-bios/bios.bin | Bin 131072 -> 131072 bytes
roms/Makefile | 10 ++++++++++
roms/config.seabios | 1 +
roms/configure-seabios.sh | 5 +++++
roms/seabios | 2 +-
5 files changed, 17 insertions(+), 1 deletions(-)
create mode 100644 roms/Makefile
create mode 100644 roms/config.seabios
create mode 100755 roms/configure-seabios.sh
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Qemu-devel] [PATCH 1/2] Add seabios build scripts to roms/
2012-03-19 13:37 [Qemu-devel] [PULL 0/2] update seabios to 1.6.3.2 Gerd Hoffmann
@ 2012-03-19 13:37 ` Gerd Hoffmann
2012-03-19 13:41 ` Peter Maydell
2012-03-19 13:37 ` [Qemu-devel] [PATCH 2/2] Update seabios to 1.6.3.2 Gerd Hoffmann
2012-03-19 19:24 ` [Qemu-devel] [PULL 0/2] update " Anthony Liguori
2 siblings, 1 reply; 6+ messages in thread
From: Gerd Hoffmann @ 2012-03-19 13:37 UTC (permalink / raw)
To: qemu-devel; +Cc: Gerd Hoffmann
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
roms/Makefile | 10 ++++++++++
roms/config.seabios | 1 +
roms/configure-seabios.sh | 5 +++++
3 files changed, 16 insertions(+), 0 deletions(-)
create mode 100644 roms/Makefile
create mode 100644 roms/config.seabios
create mode 100755 roms/configure-seabios.sh
diff --git a/roms/Makefile b/roms/Makefile
new file mode 100644
index 0000000..0114e6f
--- /dev/null
+++ b/roms/Makefile
@@ -0,0 +1,10 @@
+
+default:
+ @echo "nothing is build by default"
+ @echo "available build targets:"
+ @echo " bios -- update bios.bin (seabios)"
+
+bios: config.seabios
+ sh configure-seabios.sh $<
+ make -C seabios out/bios.bin
+ cp seabios/out/bios.bin ../pc-bios/bios.bin
diff --git a/roms/config.seabios b/roms/config.seabios
new file mode 100644
index 0000000..c373b87
--- /dev/null
+++ b/roms/config.seabios
@@ -0,0 +1 @@
+# empty, default config works for us
diff --git a/roms/configure-seabios.sh b/roms/configure-seabios.sh
new file mode 100755
index 0000000..98f59a2
--- /dev/null
+++ b/roms/configure-seabios.sh
@@ -0,0 +1,5 @@
+#!/bin/sh
+config="$1"
+make -C seabios clean distclean
+cp "$config" seabios/.config
+make -C seabios oldnoconfig
--
1.7.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [Qemu-devel] [PATCH 2/2] Update seabios to 1.6.3.2
2012-03-19 13:37 [Qemu-devel] [PULL 0/2] update seabios to 1.6.3.2 Gerd Hoffmann
2012-03-19 13:37 ` [Qemu-devel] [PATCH 1/2] Add seabios build scripts to roms/ Gerd Hoffmann
@ 2012-03-19 13:37 ` Gerd Hoffmann
2012-03-19 19:24 ` [Qemu-devel] [PULL 0/2] update " Anthony Liguori
2 siblings, 0 replies; 6+ messages in thread
From: Gerd Hoffmann @ 2012-03-19 13:37 UTC (permalink / raw)
To: qemu-devel; +Cc: Gerd Hoffmann
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
pc-bios/bios.bin | Bin 131072 -> 131072 bytes
roms/seabios | 2 +-
2 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/pc-bios/bios.bin b/pc-bios/bios.bin
index 41e2b38ea24e009baa58739ead6eaecb8dbe6611..e1f3923681492bbd6a005924f5becf2f948d61e0 100644
GIT binary patch
[ snipped to not spam the list ]
diff --git a/roms/seabios b/roms/seabios
index 80d11e8..2e8bd61 160000
--- a/roms/seabios
+++ b/roms/seabios
@@ -1 +1 @@
-Subproject commit 80d11e8577bf03e98f2eb1b0cb3a281ab2879c9e
+Subproject commit 2e8bd611ce4e1e36b5a80c9ca6e256e23802f095
--
1.7.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] [PULL 0/2] update seabios to 1.6.3.2
2012-03-19 13:37 [Qemu-devel] [PULL 0/2] update seabios to 1.6.3.2 Gerd Hoffmann
2012-03-19 13:37 ` [Qemu-devel] [PATCH 1/2] Add seabios build scripts to roms/ Gerd Hoffmann
2012-03-19 13:37 ` [Qemu-devel] [PATCH 2/2] Update seabios to 1.6.3.2 Gerd Hoffmann
@ 2012-03-19 19:24 ` Anthony Liguori
2 siblings, 0 replies; 6+ messages in thread
From: Anthony Liguori @ 2012-03-19 19:24 UTC (permalink / raw)
To: Gerd Hoffmann; +Cc: qemu-devel
On 03/19/2012 08:37 AM, Gerd Hoffmann wrote:
> Hi,
>
> Second try, no changes, just rebased and this time including the tree to
> pull from in the cover letter ...
Sorry for the confusion on this PULL. I had the other one in my queue but was
blocked on a few things (upgrading to a version of gcc that SeaBIOS agreed with
and a nasty bug in my test suite).
I've pulled the branch and responded to the other note. Thanks!
Regards,
Anthony Liguori
> cheers,
> Gerd
>
> The following changes since commit 5bd33de6635577744b3c10dd3913bfe8c5ffaf40:
>
> tcg: fix sparc host for AREG0 free operation (2012-03-18 19:15:32 +0000)
>
> are available in the git repository at:
> git://git.kraxel.org/qemu seabios-1.6.3.2
>
> Gerd Hoffmann (2):
> Add seabios build scripts to roms/
> Update seabios to 1.6.3.2
>
> pc-bios/bios.bin | Bin 131072 -> 131072 bytes
> roms/Makefile | 10 ++++++++++
> roms/config.seabios | 1 +
> roms/configure-seabios.sh | 5 +++++
> roms/seabios | 2 +-
> 5 files changed, 17 insertions(+), 1 deletions(-)
> create mode 100644 roms/Makefile
> create mode 100644 roms/config.seabios
> create mode 100755 roms/configure-seabios.sh
>
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Qemu-devel] [PULL] Update seabios to 1.6.3.2
@ 2012-03-12 13:08 Gerd Hoffmann
2012-03-12 13:08 ` [Qemu-devel] [PATCH 1/2] Add seabios build scripts to roms/ Gerd Hoffmann
0 siblings, 1 reply; 6+ messages in thread
From: Gerd Hoffmann @ 2012-03-12 13:08 UTC (permalink / raw)
To: qemu-devel; +Cc: Gerd Hoffmann
Hi,
New seabios release on the 1.6.3 stable branch -- lets update.
Also add a Makefile + script to simplify seabios updating.
please pull,
Gerd
Gerd Hoffmann (2):
Add seabios build scripts to roms/
Update seabios to 1.6.3.2
pc-bios/bios.bin | Bin 131072 -> 131072 bytes
roms/Makefile | 10 ++++++++++
roms/config.seabios | 1 +
roms/configure-seabios.sh | 5 +++++
roms/seabios | 2 +-
5 files changed, 17 insertions(+), 1 deletions(-)
create mode 100644 roms/Makefile
create mode 100644 roms/config.seabios
create mode 100755 roms/configure-seabios.sh
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Qemu-devel] [PATCH 1/2] Add seabios build scripts to roms/
2012-03-12 13:08 [Qemu-devel] [PULL] Update " Gerd Hoffmann
@ 2012-03-12 13:08 ` Gerd Hoffmann
0 siblings, 0 replies; 6+ messages in thread
From: Gerd Hoffmann @ 2012-03-12 13:08 UTC (permalink / raw)
To: qemu-devel; +Cc: Gerd Hoffmann
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
roms/Makefile | 10 ++++++++++
roms/config.seabios | 1 +
roms/configure-seabios.sh | 5 +++++
3 files changed, 16 insertions(+), 0 deletions(-)
create mode 100644 roms/Makefile
create mode 100644 roms/config.seabios
create mode 100755 roms/configure-seabios.sh
diff --git a/roms/Makefile b/roms/Makefile
new file mode 100644
index 0000000..0114e6f
--- /dev/null
+++ b/roms/Makefile
@@ -0,0 +1,10 @@
+
+default:
+ @echo "nothing is build by default"
+ @echo "available build targets:"
+ @echo " bios -- update bios.bin (seabios)"
+
+bios: config.seabios
+ sh configure-seabios.sh $<
+ make -C seabios out/bios.bin
+ cp seabios/out/bios.bin ../pc-bios/bios.bin
diff --git a/roms/config.seabios b/roms/config.seabios
new file mode 100644
index 0000000..c373b87
--- /dev/null
+++ b/roms/config.seabios
@@ -0,0 +1 @@
+# empty, default config works for us
diff --git a/roms/configure-seabios.sh b/roms/configure-seabios.sh
new file mode 100755
index 0000000..98f59a2
--- /dev/null
+++ b/roms/configure-seabios.sh
@@ -0,0 +1,5 @@
+#!/bin/sh
+config="$1"
+make -C seabios clean distclean
+cp "$config" seabios/.config
+make -C seabios oldnoconfig
--
1.7.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2012-03-19 19:24 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-19 13:37 [Qemu-devel] [PULL 0/2] update seabios to 1.6.3.2 Gerd Hoffmann
2012-03-19 13:37 ` [Qemu-devel] [PATCH 1/2] Add seabios build scripts to roms/ Gerd Hoffmann
2012-03-19 13:41 ` Peter Maydell
2012-03-19 13:37 ` [Qemu-devel] [PATCH 2/2] Update seabios to 1.6.3.2 Gerd Hoffmann
2012-03-19 19:24 ` [Qemu-devel] [PULL 0/2] update " Anthony Liguori
-- strict thread matches above, loose matches on Subject: below --
2012-03-12 13:08 [Qemu-devel] [PULL] Update " Gerd Hoffmann
2012-03-12 13:08 ` [Qemu-devel] [PATCH 1/2] Add seabios build scripts to roms/ Gerd Hoffmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).