Module Name: src
Committed By: dholland
Date: Thu Aug 20 05:40:08 UTC 2015
Modified Files:
src/sys/arch/sparc/stand/bootblk: bootblk.fth
Log Message:
Use lfs32_dinode_SIZEOF instead of ufs1_dinode_SIZEOF for lfs. These
are the same so it doesn't make any difference, but technically one
should use lfs parts with lfs.
To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/sys/arch/sparc/stand/bootblk/bootblk.fth
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/sparc/stand/bootblk/bootblk.fth
diff -u src/sys/arch/sparc/stand/bootblk/bootblk.fth:1.14 src/sys/arch/sparc/stand/bootblk/bootblk.fth:1.15
--- src/sys/arch/sparc/stand/bootblk/bootblk.fth:1.14 Sun Aug 16 10:58:54 2015
+++ src/sys/arch/sparc/stand/bootblk/bootblk.fth Thu Aug 20 05:40:08 2015
@@ -1,4 +1,4 @@
-\ $NetBSD: bootblk.fth,v 1.14 2015/08/16 10:58:54 jdc Exp $
+\ $NetBSD: bootblk.fth,v 1.15 2015/08/20 05:40:08 dholland Exp $
\
\ IEEE 1275 Open Firmware Boot Block
\
@@ -581,7 +581,7 @@ create cur-blockno -1 l, -1 l, \ Curren
' dlfs_SIZEOF to fs-size
' di1_size to di-size
' di1_mode to di-mode
- ' ufs1_dinode_SIZEOF to /dino
+ ' lfs32_dinode_SIZEOF to /dino
' cgbase to cgstart
' di-db-v1@ to di-db@
' di-ib-v1@ to di-ib@
@@ -890,7 +890,7 @@ create cur-blockno -1 l, -1 l, \ Curren
: do-boot ( bootfile -- )
." NetBSD IEEE 1275 Multi-FS Bootblock" cr
- ." Version $NetBSD: bootblk.fth,v 1.14 2015/08/16 10:58:54 jdc Exp $" cr
+ ." Version $NetBSD: bootblk.fth,v 1.15 2015/08/20 05:40:08 dholland Exp $" cr
boot-path load-file ( -- load-base )
dup 0<> if " init-program " evaluate then
;