qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Anthony Liguori <aliguori@us.ibm.com>
To: qemu-devel@nongnu.org
Cc: Anthony Liguori <aliguori@us.ibm.com>,
	Avi Kivity <avi@redhat.com>, Alex Graf <agraf@suse.de>
Subject: [Qemu-devel] [PATCH 1/7] Rename pc-bios/optionrom -> roms/multiboot
Date: Wed, 29 Jul 2009 13:45:53 -0500	[thread overview]
Message-ID: <1248893159-18785-1-git-send-email-aliguori@us.ibm.com> (raw)

We'll be storing all of our rom source code in roms/

Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
---
 configure                                         |    6 +++---
 {pc-bios/optionrom => roms/multiboot}/Makefile    |    4 ++--
 {pc-bios/optionrom => roms/multiboot}/multiboot.S |    0
 {pc-bios/optionrom => roms/multiboot}/signrom.sh  |    0
 4 files changed, 5 insertions(+), 5 deletions(-)
 rename {pc-bios/optionrom => roms/multiboot}/Makefile (79%)
 rename {pc-bios/optionrom => roms/multiboot}/multiboot.S (100%)
 rename {pc-bios/optionrom => roms/multiboot}/signrom.sh (100%)

diff --git a/configure b/configure
index 8160bed..264cc7b 100755
--- a/configure
+++ b/configure
@@ -1743,7 +1743,7 @@ echo "TOOLS=$tools" >> $config_host_mak
 roms=
 if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \
         "$targetos" != "Darwin" ; then
-  roms="pc-bios/optionrom"
+  roms="roms/multiboot"
 fi
 echo "ROMS=$roms" >> $config_host_mak
 
@@ -2111,11 +2111,11 @@ done # for target in $targets
 
 # build tree in object directory if source path is different from current one
 if test "$source_path_used" = "yes" ; then
-    DIRS="tests tests/cris slirp audio block pc-bios/optionrom"
+    DIRS="tests tests/cris slirp audio block roms/multiboot"
     FILES="Makefile tests/Makefile"
     FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
     FILES="$FILES tests/test-mmap.c"
-    FILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps pc-bios/video.x"
+    FILES="$FILES roms/multiboot/Makefile pc-bios/keymaps pc-bios/video.x"
     for bios_file in $source_path/pc-bios/*.bin $source_path/pc-bios/*.dtb $source_path/pc-bios/openbios-*; do
         FILES="$FILES pc-bios/`basename $bios_file`"
     done
diff --git a/pc-bios/optionrom/Makefile b/roms/multiboot/Makefile
similarity index 79%
rename from pc-bios/optionrom/Makefile
rename to roms/multiboot/Makefile
index ace142d..c6b5ca4 100644
--- a/pc-bios/optionrom/Makefile
+++ b/roms/multiboot/Makefile
@@ -3,7 +3,7 @@ all: build-all
 include ../../config-host.mak
 include $(SRC_PATH)/rules.mak
 
-VPATH=$(SRC_PATH)/pc-bios/optionrom
+VPATH=$(SRC_PATH)/roms/multiboot
 
 CPPFLAGS = -Wall -Wstrict-prototypes -Werror -fomit-frame-pointer -fno-builtin
 CPPFLAGS += -I$(SRC_PATH)
@@ -18,7 +18,7 @@ build-all: multiboot.bin
 	$(call quiet-command,$(OBJCOPY) -O binary -j .text $< $@,"  Building $(TARGET_DIR)$@")
 
 %.bin: %.raw
-	$(call quiet-command,$(SRC_PATH)/pc-bios/optionrom/signrom.sh $< $@,"  Signing $(TARGET_DIR)$@")
+	$(call quiet-command,$(SRC_PATH)/roms/multiboot/signrom.sh $< $@,"  Signing $(TARGET_DIR)$@")
 
 clean:
 	$(RM) *.o *.img *.bin *~
diff --git a/pc-bios/optionrom/multiboot.S b/roms/multiboot/multiboot.S
similarity index 100%
rename from pc-bios/optionrom/multiboot.S
rename to roms/multiboot/multiboot.S
diff --git a/pc-bios/optionrom/signrom.sh b/roms/multiboot/signrom.sh
similarity index 100%
rename from pc-bios/optionrom/signrom.sh
rename to roms/multiboot/signrom.sh
-- 
1.6.2.5

             reply	other threads:[~2009-07-29 18:46 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-07-29 18:45 Anthony Liguori [this message]
2009-07-29 18:45 ` [Qemu-devel] [PATCH 2/7] Always build roms in a separate directory Anthony Liguori
2009-07-29 18:45 ` [Qemu-devel] [PATCH 3/7] If we built a rom, install it. Otherwise, use shipped copy Anthony Liguori
     [not found]   ` <m37hxr46rt.fsf@neno.mitica>
2009-07-29 22:16     ` [Qemu-devel] " Anthony Liguori
2009-07-30  9:34       ` Avi Kivity
2009-07-30  9:39         ` Alexander Graf
2009-07-30 10:07           ` Avi Kivity
2009-07-30 10:04             ` Alexander Graf
2009-07-29 18:45 ` [Qemu-devel] [PATCH 4/7] Allow a cross compiler to be used for rom builds Anthony Liguori
2009-07-29 18:45 ` [Qemu-devel] [PATCH 5/7] Add proper headers to all BIOS patches Anthony Liguori
2009-07-29 18:45 ` [Qemu-devel] [PATCH 6/7] Add pc-bios as a git submodule Anthony Liguori
2009-07-29 21:25   ` [Qemu-devel] " Alexander Graf
2009-07-29 21:40     ` Anthony Liguori
2009-07-29 21:51       ` Alexander Graf
2009-07-29 22:10   ` [Qemu-devel] " Jordan Justen
2009-07-29 22:13     ` Anthony Liguori
2009-07-29 18:45 ` [Qemu-devel] [PATCH 7/7] Remove BIOS patches from the queue and update the README Anthony Liguori
2009-07-30  9:38   ` [Qemu-devel] " Avi Kivity
     [not found] ` <m3eirz474o.fsf@neno.mitica>
2009-07-29 19:35   ` [Qemu-devel] Re: [PATCH 1/7] Rename pc-bios/optionrom -> roms/multiboot Anthony Liguori
2009-07-30  9:38   ` Avi Kivity

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1248893159-18785-1-git-send-email-aliguori@us.ibm.com \
    --to=aliguori@us.ibm.com \
    --cc=agraf@suse.de \
    --cc=avi@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).