9
0
Fork 0

svn_rev_511

This commit is contained in:
Sascha Hauer 2007-07-05 18:02:00 +02:00 committed by Sascha Hauer
parent 84e84863d8
commit e935d1a452
2 changed files with 15 additions and 0 deletions

View File

@ -5,6 +5,9 @@ config ZLIB
config BZLIB
bool
config GREGORIAN_CALENDER
bool
menu "general settings"
config PROMPT
@ -77,6 +80,17 @@ config ERRNO_MESSAGES
prompt "print error values as text"
default y
config TIMESTAMP
bool
default y
select GREGORIAN_CALENDER
prompt "print timestamp information from images"
help
When CONFIG_TIMESTAMP is selected, the timestamp
(date and time) of an image is printed by image
commands like bootm or iminfo. This option is
automatically enabled when you select CFG_CMD_DATE .
endmenu
menu "Commands"

View File

@ -18,6 +18,7 @@ obj-$(CONFIG_HUSH_PARSER) += hush.o
obj-$(CONFIG_SIMPLE_PARSER) += parser.o
obj-$(CONFIG_CMDLINE_EDITING) += readline.o
obj-$(CONFIG_SIMPLE_READLINE) += readline_simple.o
obj-$(CONFIG_GREGORIAN_CALENDER) += date.o
obj-y += cmd_fs.o
obj-y += exports.o