- Feb 19, 2018
-
-
Sebastian Kuzminsky authored
-
Sebastian Kuzminsky authored
Whitespace changes only, no content changes.
-
- Jun 28, 2017
-
-
Sebastian Kuzminsky authored
-
Sebastian Kuzminsky authored
Conflicts: debian/changelog eeprom_local.c pci_boards.c
-
Sebastian Kuzminsky authored
-
- Jun 26, 2017
-
-
Sebastian Kuzminsky authored
Bump the version of the package from 3.2.0 to 3.2.0-1.
-
Sebastian Kuzminsky authored
Also rename the variable "access" to "board_access" to avoid collission with the access() function declared by unistd.h .
-
Sebastian Kuzminsky authored
-
Sebastian Kuzminsky authored
Also rename the variable "access" to "board_access", to avoid collission with the access() function that unistd.h declares.
-
Sebastian Kuzminsky authored
ppoll() is a _GNU_SOURCE feature, and since mesaflash is GPL 2+ we can enable _GNU_SOURCE here.
-
Sebastian Kuzminsky authored
This declares close(), which avoids an 'implicit declaration' warning from GCC 6.3 in Debian Stretch.
-
Sebastian Kuzminsky authored
This provides the declaration of isprint(), which is needed to avoid an 'implicit declaration' warning from GCC 6.3 in Debian Stretch.
-
Sebastian Kuzminsky authored
mesaflash uses the standard return value -1 for indicating errors, so use it here too.
-
Sebastian Kuzminsky authored
This provides the declaration of eeprom_init(), avoiding an "implicit declaration" warning on GCC 6.3 on Debian Stretch.
-
Sebastian Kuzminsky authored
This C file calls functions in libpci, so make sure we declare them. This fixes the situation on Linux, no idea about Windows.
-
Sebastian Kuzminsky authored
These functions are used by encoder_module, so we need to declare them to avoid an "implicit declaration" warning from GCC 6.3 in Debian Stretch.
-
Sebastian Kuzminsky authored
This avoids an "implicit declaration" warning from GCC 6.3 in Debian Stretch.
-
Sebastian Kuzminsky authored
This provides the declaration of gettimeofday(), squelching a compile warning on GCC 6.3 in Debian Stretch.
-
Sebastian Kuzminsky authored
This defines some serial_boards_*() functions that anyio.c uses.
-
Sebastian Kuzminsky authored
-
Sebastian Kuzminsky authored
GCC 6.3 in Debian Strech uses C99 inline semantics, so it complains: In file included from eeprom_local.c:31:0: eeprom_local.c: At top level: epp_boards.h:37:13: warning: inline function ‘epp_write8’ declared but never defined inline void epp_write8(board_t *board, u8 data); ^~~~~~~~~~ The function declaration needs to be non-inline, and the function definition can be inline.
-
- Apr 28, 2017
-
-
Sebastian Kuzminsky authored
-
Sebastian Kuzminsky authored
Some debian changelog parsing tools don't like it if there isn't a single changelog entry. This commit adds a placeholder changelog entry to placate those tools.
-
- Oct 23, 2016
-
-
Michael authored
fall back to 8-bit word if 32-bit per word set fails. Recognize fall…
-
Michael authored
New ethernet boards
-
Jeff Epler authored
Signed-off-by:Jeff Epler <jepler@unpythonic.net>
-
Jeff Epler authored
Signed-off-by:Jeff Epler <jepler@unpythonic.net>
-
Jeff Epler authored
Signed-off-by:Jeff Epler <jepler@unpythonic.net>
-
Jeff Epler authored
Signed-off-by:Jeff Epler <jepler@unpythonic.net>
-
Jeff Epler authored
Signed-off-by:Jeff Epler <jepler@unpythonic.net>
-
- Oct 16, 2016
-
-
Joseph Heath authored
fall back to 8-bit word if 32-bit per word set fails. Recognize fallback and reorder buffer to compensate for int to byte change.
-
- Jul 05, 2016
- Jul 03, 2016
-
-
Jeff Epler authored
Signed-off-by:Jeff Epler <jepler@unpythonic.net>
-
Jeff Epler authored
-
Jeff Epler authored
At the next release, this will require * Creating a tag on github like "v3.2.0" * Using a Debian version number like "3.2.0+dsfg-1" but it will get us what we want for a Debian package (a source tarball that excludes the non-DFSG-free 'winio' packages) without breaking the mesaflash git repository's ability to build for/on Windows. Since there are no tags at the moment, I tested this by temporarily naming jepler/mesaflash in debian/watch, and creating a tag there. It seems to work. Signed-off-by:Jeff Epler <jepler@unpythonic.net>
-
- Jul 02, 2016
-
-
Jeff Epler authored
All these produced a diagnostic when -Wunused-variables was specified.
-
Jeff Epler authored
These functions always produced diagnostics with -Wreturn-type enabled. Add an explicit 'return 0;' to indicate success.
-