9
0
Fork 0

filetype: add config to disable it

remove 160 bytes

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
This commit is contained in:
Jean-Christophe PLAGNIOL-VILLARD 2012-01-08 14:23:19 +08:00
parent e7aa252938
commit 507319e13b
4 changed files with 6 additions and 1 deletions

View File

@ -311,6 +311,7 @@ config CMD_BOOTM
default y
select CRC32
select UNCOMPRESS
select FILETYPE
prompt "bootm"
config CMD_BOOTM_SHOW_TYPE

View File

@ -40,6 +40,9 @@ config BLOCK_WRITE
config HAVE_NOSHELL
bool
config FILETYPE
bool
menu "General Settings "
config LOCALVERSION

View File

@ -28,7 +28,7 @@ obj-$(CONFIG_CMD_BOOTM) += uimage.o
obj-y += startup.o
obj-y += misc.o
obj-y += memsize.o
obj-y += filetype.o
obj-$(CONFIG_FILETYPE) += filetype.o
obj-y += resource.o
obj-$(CONFIG_MENU) += menu.o
obj-$(CONFIG_PASSWORD) += password.o

View File

@ -1,6 +1,7 @@
menu "Library routines"
config UNCOMPRESS
bool
select FILETYPE
config ZLIB
bool "include gzip uncompression support"