summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhpa <hpa>2000-06-28 19:47:23 +0000
committerhpa <hpa>2000-06-28 19:47:23 +0000
commit73c21d2a54eb7b69e67734d48507e9e18fa799ac (patch)
tree8e2e03ee147340b4e2389bb662c1a479bafead45
parentf9c6f336623b694b4ecb3e720509bc261fc8fb70 (diff)
downloadsyslinux-73c21d2a54eb7b69e67734d48507e9e18fa799ac.tar.gz
Make this public domain.
-rw-r--r--mbr.asm22
1 files changed, 9 insertions, 13 deletions
diff --git a/mbr.asm b/mbr.asm
index f3247cbb..f4cd4d55 100644
--- 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.
;
; -----------------------------------------------------------------------
@@ -16,14 +12,14 @@
; 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.
;