From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1MQsrJ-0002P2-6d for mharc-grub-devel@gnu.org; Tue, 14 Jul 2009 21:00:33 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MQsrH-0002Ns-Md for grub-devel@gnu.org; Tue, 14 Jul 2009 21:00:31 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MQsrC-0002Gh-DG for grub-devel@gnu.org; Tue, 14 Jul 2009 21:00:30 -0400 Received: from [199.232.76.173] (port=50000 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MQsrC-0002GC-3l for grub-devel@gnu.org; Tue, 14 Jul 2009 21:00:26 -0400 Received: from c60.cesmail.net ([216.154.195.49]:38773) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_ARCFOUR_SHA1:16) (Exim 4.60) (envelope-from ) id 1MQsrB-0004s1-H6 for grub-devel@gnu.org; Tue, 14 Jul 2009 21:00:25 -0400 Received: from unknown (HELO smtprelay2.cesmail.net) ([192.168.1.112]) by c60.cesmail.net with ESMTP; 14 Jul 2009 21:00:25 -0400 Received: from mj.roinet.com (static-72-92-88-10.phlapa.fios.verizon.net [72.92.88.10]) by smtprelay2.cesmail.net (Postfix) with ESMTPSA id 5FBF434C6D for ; Tue, 14 Jul 2009 21:09:50 -0400 (EDT) To: grub-devel@gnu.org From: Pavel Roskin Date: Tue, 14 Jul 2009 21:00:23 -0400 Message-ID: <20090715010023.17865.41238.stgit@mj.roinet.com> In-Reply-To: <20090715010017.17865.58915.stgit@mj.roinet.com> References: <20090715010017.17865.58915.stgit@mj.roinet.com> User-Agent: StGit/0.15-rc1-4-g4ce8 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [PATCH 2/7] Remove unused version information from boot/i386/pc/boot.S X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: The development of GRUB 2 List-Id: The development of GRUB 2 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Jul 2009 01:00:32 -0000 ChangeLog: * boot/i386/pc/boot.S (boot_version): Remove. * include/grub/i386/pc/boot.h (GRUB_BOOT_MACHINE_VER_MAJ): Remove. --- boot/i386/pc/boot.S | 3 --- include/grub/i386/pc/boot.h | 3 --- 2 files changed, 0 insertions(+), 6 deletions(-) diff --git a/boot/i386/pc/boot.S b/boot/i386/pc/boot.S index fb90947..e5685dc 100644 --- a/boot/i386/pc/boot.S +++ b/boot/i386/pc/boot.S @@ -92,9 +92,6 @@ cylinder_start: * End of BIOS parameter block. */ - . = _start + GRUB_BOOT_MACHINE_VER_MAJ -boot_version: - .byte GRUB_BOOT_VERSION_MAJOR, GRUB_BOOT_VERSION_MINOR kernel_address: .word GRUB_BOOT_MACHINE_KERNEL_ADDR kernel_segment: diff --git a/include/grub/i386/pc/boot.h b/include/grub/i386/pc/boot.h index 221ed38..a91f55a 100644 --- a/include/grub/i386/pc/boot.h +++ b/include/grub/i386/pc/boot.h @@ -28,9 +28,6 @@ /* The offset of the end of BPB (BIOS Parameter Block). */ #define GRUB_BOOT_MACHINE_BPB_END 0x3e -/* The offset of the major version. */ -#define GRUB_BOOT_MACHINE_VER_MAJ 0x3e - /* The offset of KERNEL_SECTOR. */ #define GRUB_BOOT_MACHINE_KERNEL_SECTOR 0x44