diff options
author | blueswir1 | 2008-04-23 21:38:07 +0200 |
---|---|---|
committer | blueswir1 | 2008-04-23 21:38:07 +0200 |
commit | 938255d2f7aaea5ca476be0a5d1aed9f2c526fe9 (patch) | |
tree | e4b0a0ec4feea03794befa36414f3693557ef12b /Makefile | |
parent | Document the shift values (diff) | |
download | qemu-938255d2f7aaea5ca476be0a5d1aed9f2c526fe9.tar.gz qemu-938255d2f7aaea5ca476be0a5d1aed9f2c526fe9.tar.xz qemu-938255d2f7aaea5ca476be0a5d1aed9f2c526fe9.zip |
Copy Sparc64 firmware when installing (Hervé Poussineau)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4244 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -200,7 +200,7 @@ ifneq ($(TOOLS),) endif mkdir -p "$(DESTDIR)$(datadir)" set -e; for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \ - video.x openbios-sparc32 pxe-ne2k_pci.bin \ + video.x openbios-sparc32 openbios-sparc64 pxe-ne2k_pci.bin \ pxe-rtl8139.bin pxe-pcnet.bin; do \ $(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \ done @@ -302,6 +302,7 @@ tarbin: $(datadir)/ppc_rom.bin \ $(datadir)/video.x \ $(datadir)/openbios-sparc32 \ + $(datadir)/openbios-sparc64 \ $(datadir)/pxe-ne2k_pci.bin \ $(datadir)/pxe-rtl8139.bin \ $(datadir)/pxe-pcnet.bin \ |