Make this public domain.
authorhpa <hpa>
Wed, 28 Jun 2000 19:47:23 +0000 (19:47 +0000)
committerhpa <hpa>
Wed, 28 Jun 2000 19:47:23 +0000 (19:47 +0000)
mbr.asm

diff --git a/mbr.asm b/mbr.asm
index f3247cb..f4cd4d5 100644 (file)
--- a/mbr.asm
+++ b/mbr.asm
@@ -2,13 +2,9 @@
 ; $Id$
 ; -----------------------------------------------------------------------
 ;   
-;   Copyright 2000 H. Peter Anvin - All Rights Reserved
+;   NOT Copyright 2000 H. Peter Anvin
 ;
-;   This program is free software; you can redistribute it and/or modify
-;   it under the terms of the GNU General Public License as published by
-;   the Free Software Foundation, Inc., 675 Mass Ave, Cambridge MA 02139,
-;   USA; either version 2 of the License, or (at your option) any later
-;   version; incorporated herein by reference.
+;   This file is in the public domain.  Enjoy.
 ;
 ; -----------------------------------------------------------------------
 
 ; mbr.asm
 ;
 ; Simple Master Boot Record, including support for EBIOS extensions.
-;
+; 
 ; The MBR lives in front of the boot sector, and is responsible for
-; loading the boot sector of the active partition.  The EBIOS support is needed
-; if the active partition starts beyond cylinder 1024.
-;
-; This MBR determines all geometry info at runtime.  It uses only the linear
-; block field in the partition table.  It does, however, pass the partition table
-; information unchanged to the target OS.
+; loading the boot sector of the active partition.  The EBIOS support
+; is needed if the active partition starts beyond cylinder 1024.
+; 
+; This MBR determines all geometry info at runtime.  It uses only the
+; linear block field in the partition table.  It does, however, pass
+; the partition table information unchanged to the target OS.
 ;
 ; This MBR should be "8086-clean", i.e. not require a 386.
 ;