Module Name:    src
Committed By:   christos
Date:           Wed Aug 25 16:32:51 UTC 2010

Modified Files:
        src/sys/arch/i386/stand/lib: exec.c

Log Message:
use LOAD_BACKWARDS instead of LOAD_NOTE for floppy book.


To generate a diff of this commit:
cvs rdiff -u -r1.43 -r1.44 src/sys/arch/i386/stand/lib/exec.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/i386/stand/lib/exec.c
diff -u src/sys/arch/i386/stand/lib/exec.c:1.43 src/sys/arch/i386/stand/lib/exec.c:1.44
--- src/sys/arch/i386/stand/lib/exec.c:1.43	Fri Jun 25 11:35:08 2010
+++ src/sys/arch/i386/stand/lib/exec.c	Wed Aug 25 12:32:51 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: exec.c,v 1.43 2010/06/25 15:35:08 tsutsui Exp $	 */
+/*	$NetBSD: exec.c,v 1.44 2010/08/25 16:32:51 christos Exp $	 */
 
 /*-
  * Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
@@ -228,7 +228,7 @@
 #endif
 	marks[MARK_START] = loadaddr;
 	if ((fd = loadfile(file, marks,
-	    LOAD_KERNEL & ~(floppy ? LOAD_NOTE : 0))) == -1)
+	    LOAD_KERNEL & ~(floppy ? LOAD_BACKWARDS : 0))) == -1)
 		return EIO;
 
 	close(fd);

Reply via email to