From: drath Date: Fri, 18 Apr 2008 16:23:21 +0000 (+0000) Subject: - Flash auto-erase is disabled by default X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=da742a2d1c419a38696614cdfcc8b32fb0ba858b;p=fw%2Fopenocd - Flash auto-erase is disabled by default git-svn-id: svn://svn.berlios.de/openocd/trunk@592 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- diff --git a/src/flash/flash.c b/src/flash/flash.c index 12f844181..0be0afc57 100644 --- a/src/flash/flash.c +++ b/src/flash/flash.c @@ -88,8 +88,9 @@ flash_driver_t *flash_drivers[] = flash_bank_t *flash_banks; static command_t *flash_cmd; -/* enabled by default*/ -static int auto_erase = 1; + +/* flash auto-erase is disabled by default*/ +static int auto_erase = 0; /* wafer thin wrapper for invoking the flash driver */ static int flash_driver_write(struct flash_bank_s *bank, u8 *buffer, u32 offset, u32 count)