From owner-cvs-all@FreeBSD.ORG Tue Jul 20 07:01:02 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E6D7716A4CE; Tue, 20 Jul 2004 07:01:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E18CC43D3F; Tue, 20 Jul 2004 07:01:02 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6K712NW083427; Tue, 20 Jul 2004 07:01:02 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6K712tC083426; Tue, 20 Jul 2004 07:01:02 GMT (envelope-from marcel) Message-Id: <200407200701.i6K712tC083426@repoman.freebsd.org> From: Marcel Moolenaar Date: Tue, 20 Jul 2004 07:01:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/boot/efi/libefi/arch/ia64 ldscript.ia64 src/sys/boot/efi/loader Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jul 2004 07:01:03 -0000 marcel 2004-07-20 07:01:02 UTC FreeBSD src repository Modified files: sys/boot/efi/libefi/arch/ia64 ldscript.ia64 sys/boot/efi/loader Makefile Log: Fix the creation of EFI images that got broken by the import of binutils 2.15. The linker now creates a .rela.dyn section for dynamic relocations, while our script created a .rela section. Likewise, we copied the .rela section to the EFI image, but not the .rela.dyn section. The fix is to rename .rela to .rela.dyn in the linker script so that all relocations end up in the same section again. This we copy into the EFI image. Revision Changes Path 1.8 +1 -1 src/sys/boot/efi/libefi/arch/ia64/ldscript.ia64 1.22 +2 -2 src/sys/boot/efi/loader/Makefile