diff options
author | Joe Hershberger <joe.hershberger@ni.com> | 2012-10-03 11:15:51 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2012-10-03 16:01:23 -0700 |
commit | c167cc02033e45913ce6a3ba4575e7890ce55f07 (patch) | |
tree | 40793b2d1f8b7149a9eecec4c75ee3c4b50c692e /common/Makefile | |
parent | 36180d96ccb4eadb6dc46b362f216d6c26dce008 (diff) | |
download | u-boot-imx-c167cc02033e45913ce6a3ba4575e7890ce55f07.zip u-boot-imx-c167cc02033e45913ce6a3ba4575e7890ce55f07.tar.gz u-boot-imx-c167cc02033e45913ce6a3ba4575e7890ce55f07.tar.bz2 |
Add a new "ini" command
This allows you to read ini-formatted data from anywhere and then
import one of the sections into the environment
This is based on rev 16 at http://code.google.com/p/inih/
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'common/Makefile')
-rw-r--r-- | common/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/Makefile b/common/Makefile index 125b2be..92e06de 100644 --- a/common/Makefile +++ b/common/Makefile @@ -107,6 +107,7 @@ COBJS-$(CONFIG_CMD_GPIO) += cmd_gpio.o COBJS-$(CONFIG_CMD_I2C) += cmd_i2c.o COBJS-$(CONFIG_CMD_IDE) += cmd_ide.o COBJS-$(CONFIG_CMD_IMMAP) += cmd_immap.o +COBJS-$(CONFIG_CMD_INI) += cmd_ini.o COBJS-$(CONFIG_CMD_IRQ) += cmd_irq.o COBJS-$(CONFIG_CMD_ITEST) += cmd_itest.o COBJS-$(CONFIG_CMD_JFFS2) += cmd_jffs2.o |