buildrootschalter/package/openocd/0001-Fix-compilation-error-in-src-flash-nor-mini51.c.patch
claurita aa441aa84c openocd: bump to version 0.8.0
This patch adds the management of (almost) all the config options of
openocd 0.8.0. A BR config variable is added for (almost) every
adapter known to openocd and all the dependencies are automatically
calculated from the chosen adapters, so only the necessary libraries
are built.

Note that CMSIS_DAP adapter requires hidapi (not libhid) and hidapi is
not actually included in buildroot, so it has been removed.  Also
zy1000 adapters are actually broken in openocd and have been removed.

The host version of the package enables all the possible adapters and
the related libraries.

[Thomas:
 - Slightly fixup the commit log.
 - Rename the patches to the new patch naming convention.
 - Update hash file using a contribution from Vincent Stehlé.
 - Move the thread dependency from the OpenOCD option down to each
   sub-option that actually needs it (when it needs libusb,
   libusb-compat or libftdi). We keep only one comment, as we would
   otherwise have to add too many repeatitive comments.
 - Remove commented options.
 - Add missing dependency on BR2_ARCH_HAS_ATOMICS when selecting
   BR2_PACKAGE_LIBFTDI.
 - Remove trailing white spaces.
 - Pass -std=gnu99, needed to build with a basic toolchain.
 - Write the OPENOCD_DEPENDENCIES and OPENOCD_CONF_OPTS conditions in
   a more compact way.
 - Adjust indentation for HOST_OPENOCD_CONF_OPTS.
 - Reword the comment above HOST_OPENOCD_CONF_OPTS.]

Signed-off-by: Claudio Laurita <claudio.laurita@integrazionetotale.it>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-01-02 16:30:15 +01:00

31 lines
971 B
Diff

From 893330638a26ea2868c6e7606047acf9b6fe31ea Mon Sep 17 00:00:00 2001
From: Claudio Laurita <claudio.laurita@integrazionetotale.it>
Date: Sun, 30 Nov 2014 17:30:36 +0100
Subject: [PATCH 1/1] Fix compilation error in src/flash/nor/mini51.c
0001-Fix-compilation-error-in-src-flash-nor-mini51.c.patch
gcc complains about missing initialization of
local variable flash_size and compilation aborts
Signed-off-by: Claudio Laurita <claudio.laurita@integrazionetotale.it>
---
src/flash/nor/mini51.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/flash/nor/mini51.c b/src/flash/nor/mini51.c
index 61aee5d..c7ba13a 100644
--- a/src/flash/nor/mini51.c
+++ b/src/flash/nor/mini51.c
@@ -397,7 +397,7 @@ static int mini51_write(struct flash_bank *bank, const uint8_t *buffer, uint32_t
static int mini51_probe(struct flash_bank *bank)
{
- uint32_t flash_size;
+ uint32_t flash_size = 0;
int retval;
int num_pages;
uint32_t offset = 0;
--
2.1.3