qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/1] Misc 20190111 patches
@ 2019-01-11 11:47 Gerd Hoffmann
  2019-01-11 11:47 ` [Qemu-devel] [PULL 1/1] roms: seabios: Rename CROSS_COMPILE to CROSS_PREFIX Gerd Hoffmann
  2019-01-11 19:08 ` [Qemu-devel] [PULL 0/1] Misc 20190111 patches Peter Maydell
  0 siblings, 2 replies; 3+ messages in thread
From: Gerd Hoffmann @ 2019-01-11 11:47 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

The following changes since commit 291741033f611a4f0bbce3f7c9dead84ce315f96:

  Merge remote-tracking branch 'remotes/kraxel/tags/audio-20190110-pull-request' into staging (2019-01-10 18:45:23 +0000)

are available in the git repository at:

  git://git.kraxel.org/qemu tags/misc-20190111-pull-request

for you to fetch changes up to 78ac44af547e09bdddc75e41a525cdc8eec60be4:

  roms: seabios: Rename CROSS_COMPILE to CROSS_PREFIX (2019-01-11 12:46:07 +0100)

----------------------------------------------------------------
misc: fix seabios cross build.

----------------------------------------------------------------

Roman Bolshakov (1):
  roms: seabios: Rename CROSS_COMPILE to CROSS_PREFIX

 roms/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
2.9.3

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

* [Qemu-devel] [PULL 1/1] roms: seabios: Rename CROSS_COMPILE to CROSS_PREFIX
  2019-01-11 11:47 [Qemu-devel] [PULL 0/1] Misc 20190111 patches Gerd Hoffmann
@ 2019-01-11 11:47 ` Gerd Hoffmann
  2019-01-11 19:08 ` [Qemu-devel] [PULL 0/1] Misc 20190111 patches Peter Maydell
  1 sibling, 0 replies; 3+ messages in thread
From: Gerd Hoffmann @ 2019-01-11 11:47 UTC (permalink / raw)
  To: qemu-devel; +Cc: Roman Bolshakov, Gerd Hoffmann

From: Roman Bolshakov <r.bolshakov@yadro.com>

SeaBIOS introduced CROSS_PREFIX in 2013 but it's not set in roms
Makefile.

With the change it's possible to cross-compile SeaBIOS on macOS,
if acpica/iasl is installed:
  cd roms
  export PATH=/path/to/cross/x86_64-unknown-linux-gnu/bin:$PATH
  make bios system=unknown-linux-gnu

Signed-off-by: Roman Bolshakov <r.bolshakov@yadro.com>
Message-id: 20181121203720.75916-1-r.bolshakov@yadro.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
 roms/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/roms/Makefile b/roms/Makefile
index f4141e1d96..a6043eff37 100644
--- a/roms/Makefile
+++ b/roms/Makefile
@@ -83,12 +83,12 @@ build-seabios-config-%: config.%
 	cp $< seabios/builds/$*/.config
 	$(MAKE) -C seabios \
 		EXTRAVERSION=$(SEABIOS_EXTRAVERSION) \
-		CROSS_COMPILE=$(x86_64_cross_prefix) \
+		CROSS_PREFIX=$(x86_64_cross_prefix) \
 		KCONFIG_CONFIG=$(CURDIR)/seabios/builds/$*/.config \
 		OUT=$(CURDIR)/seabios/builds/$*/ oldnoconfig
 	$(MAKE) -C seabios \
 		EXTRAVERSION=$(SEABIOS_EXTRAVERSION) \
-		CROSS_COMPILE=$(x86_64_cross_prefix) \
+		CROSS_PREFIX=$(x86_64_cross_prefix) \
 		KCONFIG_CONFIG=$(CURDIR)/seabios/builds/$*/.config \
 		OUT=$(CURDIR)/seabios/builds/$*/ all
 
-- 
2.9.3

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

* Re: [Qemu-devel] [PULL 0/1] Misc 20190111 patches
  2019-01-11 11:47 [Qemu-devel] [PULL 0/1] Misc 20190111 patches Gerd Hoffmann
  2019-01-11 11:47 ` [Qemu-devel] [PULL 1/1] roms: seabios: Rename CROSS_COMPILE to CROSS_PREFIX Gerd Hoffmann
@ 2019-01-11 19:08 ` Peter Maydell
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Maydell @ 2019-01-11 19:08 UTC (permalink / raw)
  To: Gerd Hoffmann; +Cc: QEMU Developers

On Fri, 11 Jan 2019 at 11:48, Gerd Hoffmann <kraxel@redhat.com> wrote:
>
> The following changes since commit 291741033f611a4f0bbce3f7c9dead84ce315f96:
>
>   Merge remote-tracking branch 'remotes/kraxel/tags/audio-20190110-pull-request' into staging (2019-01-10 18:45:23 +0000)
>
> are available in the git repository at:
>
>   git://git.kraxel.org/qemu tags/misc-20190111-pull-request
>
> for you to fetch changes up to 78ac44af547e09bdddc75e41a525cdc8eec60be4:
>
>   roms: seabios: Rename CROSS_COMPILE to CROSS_PREFIX (2019-01-11 12:46:07 +0100)
>
> ----------------------------------------------------------------
> misc: fix seabios cross build.
>
> ----------------------------------------------------------------
>
> Roman Bolshakov (1):
>   roms: seabios: Rename CROSS_COMPILE to CROSS_PREFIX
>
>  roms/Makefile | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>

Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/4.0
for any user-visible changes.

-- PMM

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

end of thread, other threads:[~2019-01-11 19:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-01-11 11:47 [Qemu-devel] [PULL 0/1] Misc 20190111 patches Gerd Hoffmann
2019-01-11 11:47 ` [Qemu-devel] [PULL 1/1] roms: seabios: Rename CROSS_COMPILE to CROSS_PREFIX Gerd Hoffmann
2019-01-11 19:08 ` [Qemu-devel] [PULL 0/1] Misc 20190111 patches Peter Maydell

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).