From owner-svn-src-head@FreeBSD.ORG Thu Apr 3 16:21:38 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 51C0E7F1; Thu, 3 Apr 2014 16:21:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3ED65C0; Thu, 3 Apr 2014 16:21:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s33GLcLH066279; Thu, 3 Apr 2014 16:21:38 GMT (envelope-from emaste@svn.freebsd.org) Received: (from emaste@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s33GLc0x066278; Thu, 3 Apr 2014 16:21:38 GMT (envelope-from emaste@svn.freebsd.org) Message-Id: <201404031621.s33GLc0x066278@svn.freebsd.org> From: Ed Maste Date: Thu, 3 Apr 2014 16:21:38 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r264078 - head/sys/boot/i386/efi X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 16:21:38 -0000 Author: emaste Date: Thu Apr 3 16:21:37 2014 New Revision: 264078 URL: http://svnweb.freebsd.org/changeset/base/264078 Log: Put each source file on a separate line This will simplify rebasing the amd64 UEFI patch set. Sponsored by: The FreeBSD Foundation Modified: head/sys/boot/i386/efi/Makefile Modified: head/sys/boot/i386/efi/Makefile ============================================================================== --- head/sys/boot/i386/efi/Makefile Thu Apr 3 15:04:32 2014 (r264077) +++ head/sys/boot/i386/efi/Makefile Thu Apr 3 16:21:37 2014 (r264078) @@ -10,8 +10,18 @@ PROG= loader.sym INTERNALPROG= # architecture-specific loader code -SRCS= main.c exec.c conf.c vers.c reloc.c start.S elf32_freebsd.c -SRCS+= i386_copy.c bootinfo.c autoload.c devicename.c efimd.c +SRCS= autoload.c \ + bootinfo.c \ + conf.c \ + devicename.c \ + efimd.c \ + elf32_freebsd.c \ + exec.c \ + i386_copy.c \ + main.c \ + reloc.c \ + vers.c +SRCS+= start.S CFLAGS+= -I${.CURDIR}/../../efi/include CFLAGS+= -I${.CURDIR}/../../efi/include/i386