summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2012-01-08 14:23:19 +0800
committerJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2012-01-11 21:22:34 +0800
commit507319e13bd5e0ad13138970e90e8426d08f5817 (patch)
treee7636398ce920f541a2e3f91d4f4c017dace6137 /common
parente7aa25293860087158f652c07be7b30299410b8b (diff)
downloadbarebox-507319e13bd5e0ad13138970e90e8426d08f5817.tar.gz
barebox-507319e13bd5e0ad13138970e90e8426d08f5817.tar.xz
filetype: add config to disable it
remove 160 bytes Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'common')
-rw-r--r--common/Kconfig3
-rw-r--r--common/Makefile2
2 files changed, 4 insertions, 1 deletions
diff --git a/common/Kconfig b/common/Kconfig
index d184d9ed37..20e4050d4c 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -40,6 +40,9 @@ config BLOCK_WRITE
config HAVE_NOSHELL
bool
+config FILETYPE
+ bool
+
menu "General Settings "
config LOCALVERSION
diff --git a/common/Makefile b/common/Makefile
index eaf74a616c..76fe407398 100644
--- a/common/Makefile
+++ b/common/Makefile
@@ -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