svn commit: r241367 - head/sys/boot/forth

Devin Teske dteske at FreeBSD.org
Tue Oct 9 06:32:27 UTC 2012


Author: dteske
Date: Tue Oct  9 03:54:53 2012
New Revision: 241367
URL: http://svn.freebsd.org/changeset/base/241367

Log:
  Fix a typo (s/prefix/suffix/) and comment.
  
  NOTE: This is in an unused portion of the menu framework.
  
  Reviewed by:	eadler, adrian (co-mentor)
  Approved by:	adrian (co-mentor)

Modified:
  head/sys/boot/forth/menu-commands.4th

Modified: head/sys/boot/forth/menu-commands.4th
==============================================================================
--- head/sys/boot/forth/menu-commands.4th	Tue Oct  9 03:41:59 2012	(r241366)
+++ head/sys/boot/forth/menu-commands.4th	Tue Oct  9 03:54:53 2012	(r241367)
@@ -164,8 +164,8 @@ marker task-menu-commands.4th
 	@                        \ dereference address into value
 	48 +                     \ convert to ASCII numeral
 
-	s" set root=${root_prefix}${root[N]}${root_prefix}"
-	                          \ command to assemble full kernel-path
+	s" set root=${root_prefix}${root[N]}${root_suffix}"
+	                          \ command to assemble root image-path
 	-rot tuck 30 + c! swap    \ replace 'N' with array index value
 	evaluate                  \ sets $kernel to full kernel-path
 


More information about the svn-src-head mailing list