WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] [xen-unstable] MiniOS: no-stack-protector added to the c

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [xen-unstable] MiniOS: no-stack-protector added to the cflags if needed,
From: Xen patchbot-unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Tue, 09 Oct 2007 14:10:13 -0700
Delivery-date: Tue, 09 Oct 2007 14:10:54 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User Keir Fraser <keir@xxxxxxxxxxxxx>
# Date 1191942410 -3600
# Node ID dcab07f0776de86c71a60f2afc2a9a10ad84c553
# Parent  a18dbd4a96e68456dc0e2db3dc1268fce914dd40
MiniOS: no-stack-protector added to the cflags if needed,
and the default domain config file fixed.

From: Grzegorz Milos <gm281@xxxxxxxxx>
Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx>
---
 extras/mini-os/domain_config |    2 +-
 extras/mini-os/minios.mk     |    1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff -r a18dbd4a96e6 -r dcab07f0776d extras/mini-os/domain_config
--- a/extras/mini-os/domain_config      Tue Oct 09 16:05:43 2007 +0100
+++ b/extras/mini-os/domain_config      Tue Oct 09 16:06:50 2007 +0100
@@ -8,7 +8,7 @@
 
 #----------------------------------------------------------------------------
 # Kernel image file.
-kernel = "mini-os.elf"
+kernel = "mini-os.gz"
 
 # Initial memory allocation (in megabytes) for the new domain.
 memory = 32
diff -r a18dbd4a96e6 -r dcab07f0776d extras/mini-os/minios.mk
--- a/extras/mini-os/minios.mk  Tue Oct 09 16:05:43 2007 +0100
+++ b/extras/mini-os/minios.mk  Tue Oct 09 16:06:50 2007 +0100
@@ -7,6 +7,7 @@ debug = y
 # Define some default flags.
 # NB. '-Wcast-qual' is nasty, so I omitted it.
 DEF_CFLAGS := -fno-builtin -Wall -Werror -Wredundant-decls -Wno-format
+DEF_CFLAGS += $(call cc-option,$(CC),-fno-stack-protector,)
 DEF_CFLAGS += -Wstrict-prototypes -Wnested-externs -Wpointer-arith -Winline
 DEF_CFLAGS += -D__XEN_INTERFACE_VERSION__=$(XEN_INTERFACE_VERSION)
 

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [xen-unstable] MiniOS: no-stack-protector added to the cflags if needed,, Xen patchbot-unstable <=