Module Name: src
Committed By: christos
Date: Wed Aug 25 16:35:57 UTC 2010
Modified Files:
src/sys/arch/newsmips/stand/boot: boot.c
Log Message:
s/LOAD_NOTE/LOAD_BACKWARDS/
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/arch/newsmips/stand/boot/boot.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/newsmips/stand/boot/boot.c
diff -u src/sys/arch/newsmips/stand/boot/boot.c:1.17 src/sys/arch/newsmips/stand/boot/boot.c:1.18
--- src/sys/arch/newsmips/stand/boot/boot.c:1.17 Tue Jan 20 08:12:26 2009
+++ src/sys/arch/newsmips/stand/boot/boot.c Wed Aug 25 12:35:57 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: boot.c,v 1.17 2009/01/20 13:12:26 tsutsui Exp $ */
+/* $NetBSD: boot.c,v 1.18 2010/08/25 16:35:57 christos Exp $ */
/*-
* Copyright (C) 1999 Tsubai Masanari. All rights reserved.
@@ -161,10 +161,9 @@
kernels[1] = NULL;
}
- /* disable LOAD_NOTE on floppy to avoid backward seek across volumes */
loadflag = LOAD_KERNEL;
if (devname[0] == 'f') /* XXX */
- loadflag &= ~LOAD_NOTE;
+ loadflag &= ~LOAD_BACKWARDS;
marks[MARK_START] = 0;