For unknown reasons, the coreutils tool 'od' on MacOS outputs an extra empty line, which appears in the new auto-generated files. Modify the script bin2char.sh to drop every empty line. Change-Id: Id835fecadb58ad4ddfc11ef9f9a2e8d75c5dffe9 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: https://review.openocd.org/c/openocd/+/8051 Reviewed-by: Erhan Kurubas <erhan.kurubas@espressif.com> Tested-by: jenkins Reviewed-by: Henrik Nordström <henrik.nordstrom@addiva.se>
16 lines
497 B
Bash
Executable File
16 lines
497 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
[ $# != 0 ] && {
|
|
echo "Usage: $0"
|
|
echo
|
|
echo "Read binary data from standard input and write it as a comma separated"
|
|
echo "list of hexadecimal byte values to standard output. The output is usable"
|
|
echo "as a C array initializer. It is terminated with a comma so it can be"
|
|
echo "continued e.g. for zero termination."
|
|
exit 1
|
|
}
|
|
|
|
echo "/* Autogenerated with $0 */"
|
|
od -v -A n -t x1 | sed 's/ *\(..\) */0x\1,/g;/^$/d'
|