From a0ff7f2eda50de4d4096265a086c94ac640fab7c Mon Sep 17 00:00:00 2001 From: wdenk Date: Thu, 9 Oct 2003 13:16:55 +0000 Subject: * Patch by Martin Krause, 09 Oct 2003: Fixes for TRAB board - /board/trab/rs485.c: correct baudrate - /board/trab/cmd_trab.c: bug fix for problem with timer overflow in udelay(); fix some timing problems with adc controller - /board/trab/trab_fkt.c: add new commands: gain, eeprom and power; modify commands: touch and buzzer * Disable CONFIG_SUPPORT_VFAT when used with CONFIG_AUTO_UPDATE (quick & dirty workaround for rogue pointer problem in get_vfatname()); Use direct function calls for auto_update instead of hush commands --- fs/fat/fat.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'fs/fat/fat.c') diff --git a/fs/fat/fat.c b/fs/fat/fat.c index 972ef33d03..1f27133268 100644 --- a/fs/fat/fat.c +++ b/fs/fat/fat.c @@ -33,6 +33,11 @@ #if (CONFIG_COMMANDS & CFG_CMD_FAT) +#ifdef CONFIG_AUTO_UPDATE +/* the VFAT code has a bug which breaks auto update */ +#undef CONFIG_SUPPORT_VFAT +#endif + /* * Convert a string to lowercase. */ -- cgit v1.2.1