Author: pfg
Date: Sat Apr 30 02:47:41 2016
New Revision: 298831
URL: https://svnweb.freebsd.org/changeset/base/298831

Log:
  boot/forth: spelling fixes.
  
  Reviewed by: dteske
  MFC after: 2 weeks

Modified:
  head/sys/boot/forth/delay.4th
  head/sys/boot/forth/loader.4th
  head/sys/boot/forth/loader.conf
  head/sys/boot/forth/menu.4th
  head/sys/boot/forth/support.4th

Modified: head/sys/boot/forth/delay.4th
==============================================================================
--- head/sys/boot/forth/delay.4th       Sat Apr 30 01:24:24 2016        
(r298830)
+++ head/sys/boot/forth/delay.4th       Sat Apr 30 02:47:41 2016        
(r298831)
@@ -66,7 +66,7 @@ only forth definitions also delay-proces
 
        false delay_showdots ! \ reset to zero and read from environment
        s" delay_showdots" getenv dup -1 <> if
-               2drop \ don't need the value, just existance
+               2drop \ don't need the value, just existence
                true delay_showdots !
        else
                drop

Modified: head/sys/boot/forth/loader.4th
==============================================================================
--- head/sys/boot/forth/loader.4th      Sat Apr 30 01:24:24 2016        
(r298830)
+++ head/sys/boot/forth/loader.4th      Sat Apr 30 02:47:41 2016        
(r298831)
@@ -136,7 +136,7 @@ only forth definitions also support-func
 \ ***** start
 \
 \       Initializes support.4th global variables, sets loader_conf_files,
-\       processes conf files, and, if any one such file was succesfully
+\       processes conf files, and, if any one such file was successfully
 \       read to the end, loads kernel and modules.
 
 : start  ( -- ) ( throws: abort & user-defined )
@@ -144,7 +144,7 @@ only forth definitions also support-func
   include_conf_files
   include_nextboot_file
   \ Will *NOT* try to load kernel and modules if no configuration file
-  \ was succesfully loaded!
+  \ was successfully loaded!
   any_conf_read? if
     s" loader_delay" getenv -1 = if
       load_xen_throw

Modified: head/sys/boot/forth/loader.conf
==============================================================================
--- head/sys/boot/forth/loader.conf     Sat Apr 30 01:24:24 2016        
(r298830)
+++ head/sys/boot/forth/loader.conf     Sat Apr 30 02:47:41 2016        
(r298831)
@@ -159,7 +159,7 @@ module_path="/boot/modules" # Set the mo
 #kern.cam.boot_delay="10000"   # Delay (in ms) of root mount for CAM bus
                                # registration, useful for USB sticks as root
 #kern.cam.scsi_delay="2000"    # Delay (in ms) before probing SCSI
-#kern.ipc.maxsockets=""                # Set the maximum number of sockets 
avaliable
+#kern.ipc.maxsockets=""                # Set the maximum number of sockets 
available
 #kern.ipc.nmbclusters=""       # Set the number of mbuf clusters
 #kern.ipc.nsfbufs=""           # Set the number of sendfile(2) bufs
 #net.inet.tcp.tcbhashsize=""   # Set the value of TCBHASHSIZE

Modified: head/sys/boot/forth/menu.4th
==============================================================================
--- head/sys/boot/forth/menu.4th        Sat Apr 30 01:24:24 2016        
(r298830)
+++ head/sys/boot/forth/menu.4th        Sat Apr 30 02:47:41 2016        
(r298831)
@@ -282,7 +282,7 @@ also menu-infrastructure definitions
 ;
 
 \ This function parses $kernels into variables that are used by the menu to
-\ display wich kernel to boot when the [overloaded] `boot' word is interpreted.
+\ display which kernel to boot when the [overloaded] `boot' word is 
interpreted.
 \ Used internally by menu-create, you need not (nor should you) call this
 \ directly.
 \ 
@@ -790,7 +790,7 @@ also menu-infrastructure definitions
        again
 ;
 
-: menu-erase ( -- ) \ Erases menu and resets positioning variable to positon 1.
+: menu-erase ( -- ) \ Erases menu and resets positioning variable to position 
1.
 
        \ Clear the screen area associated with the interactive menu
        menuX @ menuY @

Modified: head/sys/boot/forth/support.4th
==============================================================================
--- head/sys/boot/forth/support.4th     Sat Apr 30 01:24:24 2016        
(r298830)
+++ head/sys/boot/forth/support.4th     Sat Apr 30 02:47:41 2016        
(r298831)
@@ -56,7 +56,7 @@
 \ string conf_files            configuration files to be loaded
 \ cell modules_options         pointer to first module information
 \ value verbose?               indicates if user wants a verbose loading
-\ value any_conf_read?         indicates if a conf file was succesfully read
+\ value any_conf_read?         indicates if a conf file was successfully read
 \
 \ Other exported words:
 \    note, strlen is internal
@@ -960,7 +960,7 @@ only forth also support-functions defini
 
 string current_file_name_ref   \ used to print the file name
 
-\ Indicates if any conf file was succesfully read
+\ Indicates if any conf file was successfully read
 
 0 value any_conf_read?
 
@@ -1133,7 +1133,7 @@ string current_file_name_ref      \ used to p
       then
     else
       after_load
-      load_succesful_message true      \ Succesful, do not retry
+      load_succesful_message true      \ Successful, do not retry
     then
   until
 ;
@@ -1325,7 +1325,7 @@ also builtins
 \   1. /boot/path
 \   2. path
 \
-\ The module_path variable is overridden if load is succesful, by
+\ The module_path variable is overridden if load is successful, by
 \ prepending the successful path.
 
 : load_from_directory ( path len 1 | flags len' path len 2 -- flag )
@@ -1412,7 +1412,7 @@ also builtins
 \ will first be tried as a full path, and, next, search on the
 \ directories pointed by module_path.
 \
-\ The module_path variable is overridden if load is succesful, by
+\ The module_path variable is overridden if load is successful, by
 \ prepending the successful path.
 
 : load_directory_or_file ( path len 1 | flags len' path len 2 -- flag )
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to