From patchwork Fri Dec 11 17:04:45 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nathan Froyd X-Patchwork-Id: 40917 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id D0462B6F08 for ; Sat, 12 Dec 2009 04:50:44 +1100 (EST) Received: from localhost ([127.0.0.1]:60338 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NJ9da-0004TO-9R for incoming@patchwork.ozlabs.org; Fri, 11 Dec 2009 12:50:42 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NJ91p-0003ty-An for qemu-devel@nongnu.org; Fri, 11 Dec 2009 12:11:41 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NJ91k-0003qR-K2 for qemu-devel@nongnu.org; Fri, 11 Dec 2009 12:11:40 -0500 Received: from [199.232.76.173] (port=46076 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NJ91k-0003qK-BI for qemu-devel@nongnu.org; Fri, 11 Dec 2009 12:11:36 -0500 Received: from mx20.gnu.org ([199.232.41.8]:41335) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NJ91k-00065a-3T for qemu-devel@nongnu.org; Fri, 11 Dec 2009 12:11:36 -0500 Received: from mail.codesourcery.com ([38.113.113.100]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NJ91i-0007L4-Ua for qemu-devel@nongnu.org; Fri, 11 Dec 2009 12:11:35 -0500 Received: (qmail 10200 invoked from network); 11 Dec 2009 17:04:52 -0000 Received: from unknown (HELO localhost) (froydnj@127.0.0.2) by mail.codesourcery.com with ESMTPA; 11 Dec 2009 17:04:52 -0000 From: Nathan Froyd To: qemu-devel@nongnu.org Date: Fri, 11 Dec 2009 09:04:45 -0800 Message-Id: <1260551091-2890-2-git-send-email-froydnj@codesourcery.com> X-Mailer: git-send-email 1.6.3.2 In-Reply-To: <1260551091-2890-1-git-send-email-froydnj@codesourcery.com> References: <1260551091-2890-1-git-send-email-froydnj@codesourcery.com> X-detected-operating-system: by mx20.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) Subject: [Qemu-devel] [PATCH 1/7] linux-user: fix ELF_USE_CORE_DUMP/USE_ELF_CORE_DUMP confusion X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Nathan Froyd --- linux-user/elfload.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/linux-user/elfload.c b/linux-user/elfload.c index 682a813..76eb031 100644 --- a/linux-user/elfload.c +++ b/linux-user/elfload.c @@ -1767,7 +1767,7 @@ int load_elf_binary(struct linux_binprm * bprm, struct target_pt_regs * regs, * Core dump code is copied from linux kernel (fs/binfmt_elf.c). * * Porting ELF coredump for target is (quite) simple process. First you - * define ELF_USE_CORE_DUMP in target ELF code (where init_thread() for + * define USE_ELF_CORE_DUMP in target ELF code (where init_thread() for * the target resides): * * #define USE_ELF_CORE_DUMP