From owner-svn-src-user@FreeBSD.ORG Wed Jul 4 13:00:49 2012 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 515F4106567B; Wed, 4 Jul 2012 13:00:49 +0000 (UTC) (envelope-from ae@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3D3AB8FC14; Wed, 4 Jul 2012 13:00:49 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q64D0n7M011847; Wed, 4 Jul 2012 13:00:49 GMT (envelope-from ae@svn.freebsd.org) Received: (from ae@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q64D0nfa011844; Wed, 4 Jul 2012 13:00:49 GMT (envelope-from ae@svn.freebsd.org) Message-Id: <201207041300.q64D0nfa011844@svn.freebsd.org> From: "Andrey V. Elsukov" Date: Wed, 4 Jul 2012 13:00:49 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r238101 - in user/ae/bootcode/sys/boot/i386: libi386 loader X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jul 2012 13:00:49 -0000 Author: ae Date: Wed Jul 4 13:00:48 2012 New Revision: 238101 URL: http://svn.freebsd.org/changeset/base/238101 Log: Remove unneeded flags, they are set by default in the common code. Modified: user/ae/bootcode/sys/boot/i386/libi386/Makefile user/ae/bootcode/sys/boot/i386/loader/Makefile Modified: user/ae/bootcode/sys/boot/i386/libi386/Makefile ============================================================================== --- user/ae/bootcode/sys/boot/i386/libi386/Makefile Wed Jul 4 12:59:20 2012 (r238100) +++ user/ae/bootcode/sys/boot/i386/libi386/Makefile Wed Jul 4 13:00:48 2012 (r238101) @@ -39,10 +39,6 @@ CFLAGS+= -DSMBIOS_LITTLE_ENDIAN_UUID .endif .endif -.if !defined(LOADER_NO_GPT_SUPPORT) -CFLAGS+= -DLOADER_GPT_SUPPORT -.endif - # Include simple terminal emulation (cons25-compatible) CFLAGS+= -DTERM_EMU Modified: user/ae/bootcode/sys/boot/i386/loader/Makefile ============================================================================== --- user/ae/bootcode/sys/boot/i386/loader/Makefile Wed Jul 4 12:59:20 2012 (r238100) +++ user/ae/bootcode/sys/boot/i386/loader/Makefile Wed Jul 4 13:00:48 2012 (r238101) @@ -50,12 +50,6 @@ CFLAGS+= -DLOADER_BZIP2_SUPPORT .if !defined(LOADER_NO_GZIP_SUPPORT) CFLAGS+= -DLOADER_GZIP_SUPPORT .endif -.if !defined(LOADER_NO_MBR_SUPPORT) -CFLAGS+= -DLOADER_MBR_SUPPORT -.endif -.if !defined(LOADER_NO_GPT_SUPPORT) -CFLAGS+= -DLOADER_GPT_SUPPORT -.endif .if defined(LOADER_NANDFS_SUPPORT) CFLAGS+= -DLOADER_NANDFS_SUPPORT .endif