e12bfcae70
Fix non-SUSE code path in update_git.sh: It couldn't find the v1.0.1 tag, so add and update the upstream git repository as remote. Also remove any previous temporary git checkout first. OBS-URL: https://build.opensuse.org/request/show/108212 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=61
24 lines
689 B
Diff
24 lines
689 B
Diff
From 4c1134246f3bd0af9b9b512a2094010ed12e7895 Mon Sep 17 00:00:00 2001
|
|
From: Alexander Graf <agraf@suse.de>
|
|
Date: Mon, 5 Dec 2011 23:37:52 +0100
|
|
Subject: [PATCH] XXX move qemu binary lower in address space so we have space
|
|
for guest stuff
|
|
|
|
---
|
|
x86_64.ld | 2 +-
|
|
1 files changed, 1 insertions(+), 1 deletions(-)
|
|
|
|
diff --git a/x86_64.ld b/x86_64.ld
|
|
index b7a9f4e..1151d8c 100644
|
|
--- a/x86_64.ld
|
|
+++ b/x86_64.ld
|
|
@@ -5,7 +5,7 @@ ENTRY(_start)
|
|
SECTIONS
|
|
{
|
|
/* Read-only sections, merged into text segment: */
|
|
- . = 0x60000000 + SIZEOF_HEADERS;
|
|
+ . = 0x8000000 + SIZEOF_HEADERS;
|
|
.interp : { *(.interp) }
|
|
.hash : { *(.hash) }
|
|
.dynsym : { *(.dynsym) }
|