Commit f5dc4c7c9f36561d9edf65162335d5e0666c3883
1 parent
ebd7fc50
Add BIOS build instructions (Andre Przywara)
aliguori: did a little indenting and motion for aesthics. Signed-off-by: Andre Przywara <andre.przywara@amd.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6109 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
21 additions
and
0 deletions
pc-bios/README
... | ... | @@ -4,6 +4,27 @@ |
4 | 4 | that HEAD refers to is located at |
5 | 5 | git://git.kernel.org/pub/scm/virt/bochs/bochs.git |
6 | 6 | |
7 | + To build these use the following instructions: | |
8 | + using guilt: | |
9 | + $ export QEMUSRC=/path/to/qemu/svn | |
10 | + $ git clone git://git.kernel.org/pub/scm/virt/bochs/bochs.git | |
11 | + $ cd bochs | |
12 | + $ git checkout -b qemu-bios $(cat $QEMUSRC/pc-bios/bios-pq/HEAD) | |
13 | + | |
14 | + $ mkdir -p .git/patches | |
15 | + $ ln -s $QEMUSRC/pc-bios/bios-pq .git/patches/qemu-bios | |
16 | + $ touch .git/patches/qemu-bios/status | |
17 | + $ guilt push -a | |
18 | + $ ./configure | |
19 | + $ cd bios | |
20 | + $ make | |
21 | + $ cp BIOS-bochs-latest $QEMUSRC/pc-bios/bios.bin | |
22 | + | |
23 | + or alternatively (after the git checkout): | |
24 | + $ for p in $(cat $QEMUSRC/pc-bios/bios-pq/series); do git am $p; done | |
25 | + $ ./configure | |
26 | + $ make bios | |
27 | + | |
7 | 28 | - The VGA BIOS and the Cirrus VGA BIOS come from the LGPL VGA bios |
8 | 29 | project (http://www.nongnu.org/vgabios/). The binary is based on the revision |
9 | 30 | in vgabios-pq/HEAD with the patches in vgabios-pq/series applied. The git | ... | ... |