]> git.sur5r.net Git - u-boot/commitdiff
u-boot: Fix several typos
authorShyam Saini <mayhs11saini@gmail.com>
Thu, 7 Jun 2018 14:17:19 +0000 (19:47 +0530)
committerTom Rini <trini@konsulko.com>
Wed, 13 Jun 2018 11:49:13 +0000 (07:49 -0400)
's/environemnt/environment/' and
's/Environemnt/Environment/'

Signed-off-by: Shyam Saini <shyam@amarulasolutions.com>
cmd/nvedit.c
common/image.c
common/spl/Kconfig
env/Kconfig
include/configs/mx28evk.h
include/environment.h
tools/env/fw_env.c

index 11489b0123b304ee1e0f351dd24d7c2ee2608f67..ddc888a4fdfc7c98216d9a1ded75f0e8bcea5cd4 100644 (file)
@@ -720,7 +720,7 @@ int env_get_f(const char *name, char *buf, unsigned len)
 /**
  * Decode the integer value of an environment variable and return it.
  *
- * @param name         Name of environemnt variable
+ * @param name         Name of environment variable
  * @param base         Number base to use (normally 10, or 16 for hex)
  * @param default_val  Default value to return if the variable is not
  *                     found
index 214ac3372062b94ca78e8828c3ee9ad8f2301419..4f201289ee32cc0801f07552baa0b4200cd4d4ce 100644 (file)
@@ -1413,7 +1413,7 @@ int boot_get_loadable(int argc, char * const argv[], bootm_headers_t *images,
  * @cmd_end: pointer to a ulong variable, will hold cmdline end
  *
  * boot_get_cmdline() allocates space for kernel command line below
- * BOOTMAPSZ + env_get_bootm_low() address. If "bootargs" U-Boot environemnt
+ * BOOTMAPSZ + env_get_bootm_low() address. If "bootargs" U-Boot environment
  * variable is present its contents is copied to allocated kernel
  * command line.
  *
index 431710a93bd98a2af525c70bb2651950a7318f56..1f1479718e9dc77527fd00b0b6db13ff7ffa0e2c 100644 (file)
@@ -334,7 +334,7 @@ config SPL_SAVEENV
          example OS may set "reboot_image" environment variable to
          "recovery" inorder to boot recovery image by SPL. The SPL read
          "reboot_image" and act accordingly and change the reboot_image
-         to default mode using setenv and save the environemnt.
+         to default mode using setenv and save the environment.
 
 config SPL_ETH_SUPPORT
        bool "Support Ethernet"
index f403906b6f90c3231f6e99c17157a01aeb3fad2b..ec66c1346a4d73f1877ed3f6b1374697589d562e 100644 (file)
@@ -15,7 +15,7 @@ config ENV_IS_NOWHERE
        default y
        help
          Define this if you don't want to or can't have an environment stored
-         on a storage medium. In this case the environemnt will still exist
+         on a storage medium. In this case the environment will still exist
          while U-Boot is running, but once U-Boot exits it will not be
          stored. U-Boot will therefore always start up with a default
          environment.
@@ -391,7 +391,7 @@ config ENV_FAT_DEVICE_AND_PART
                           partition table then means device D.
 
 config ENV_FAT_FILE
-       string "Name of the FAT file to use for the environemnt"
+       string "Name of the FAT file to use for the environment"
        depends on ENV_IS_IN_FAT
        default "uboot.env"
        help
@@ -423,7 +423,7 @@ config ENV_EXT4_DEVICE_AND_PART
                           partition table then means device D.
 
 config ENV_EXT4_FILE
-       string "Name of the EXT4 file to use for the environemnt"
+       string "Name of the EXT4 file to use for the environment"
        depends on ENV_IS_IN_EXT4
        default "uboot.env"
        help
index f373b1e24e90e1beecd772bc9e0117098556f0c7..dc4db2bec8e99db8049eaf0ad4121645537688b9 100644 (file)
@@ -43,7 +43,7 @@
                (CONFIG_ENV_OFFSET + CONFIG_ENV_RANGE)
 #endif
 
-/* Environemnt is in SPI flash */
+/* Environment is in SPI flash */
 #if defined(CONFIG_CMD_SF) && defined(CONFIG_ENV_IS_IN_SPI_FLASH)
 #define CONFIG_SYS_REDUNDAND_ENVIRONMENT
 #define CONFIG_ENV_OFFSET              0x40000         /* 256K */
index 50c62c5645c8dbfbe8b528c3e9add17d1bcdb8bf..70b7eda428b660ca0ed72e7c81b152b80e876b3e 100644 (file)
@@ -292,7 +292,7 @@ int env_import_redund(const char *buf1, int buf1_status,
 /**
  * env_get_char() - Get a character from the early environment
  *
- * This reads from the pre-relocation environemnt
+ * This reads from the pre-relocation environment
  *
  * @index: Index of character to read (0 = first)
  * @return character read, or -ve on error
index 0b22345a91460fcb20196b2ae1228048c068512a..a5d75958e1b65970ac5c8a486cab045959a3fdce 100644 (file)
@@ -842,10 +842,10 @@ int fw_parse_script(char *fname, struct env_opts *opts)
 }
 
 /**
- * environment_end() - compute offset of first byte right after environemnt
+ * environment_end() - compute offset of first byte right after environment
  * @dev - index of enviroment buffer
  * Return:
- *  device offset of first byte right after environemnt
+ *  device offset of first byte right after environment
  */
 off_t environment_end(int dev)
 {