21 lines
1.1 KiB
Bash
Executable File
21 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
NM=avr-nm
|
|
|
|
SYMBOLS=`$NM $* | perl -ne 'print ".global $2\n$2 = 0x$1\n" if(/([0-9a-f]+) [ABDRST] (.+)$/);' | grep -v ^_ | grep -v _reset_vector | grep = | perl -ne 'print "{\"$1\", (char *)$2},\n" if(/(\w+) = (\w+)/)' | wc -l`
|
|
SYMBOLS=`expr $SYMBOLS + 1`
|
|
|
|
echo \#ifndef __SYMBOLS_H__ > symbols.h
|
|
echo \#define __SYMBOLS_H__ >> symbols.h
|
|
echo \#include '"loader/symbols-def.h"' >> symbols.h
|
|
echo "extern const struct symbols symbols[$SYMBOLS];" >> symbols.h
|
|
echo \#endif >> symbols.h
|
|
|
|
echo \#include '"symbols.h"' > symbols.c
|
|
echo \#include '<avr/pgmspace.h>' >> symbols.c
|
|
$NM $* | perl -ne 'print ".global $2\n$2 = 0x$1\n" if(/([0-9a-f]+) [ABDRST] (.+)$/);' | grep -v ^_ | grep -v _reset_vector | grep = | perl -ne 'print "static const unsigned char s_$1 [] PROGMEM = \"$1\";\n" if(/(\w+) = (\w+)/)' | sort >> symbols.c
|
|
|
|
echo "PROGMEM const struct symbols symbols[] = {" >> symbols.c
|
|
avr-nm $* | perl -ne 'print ".global $2\n$2 = 0x$1\n" if(/([0-9a-f]+) [ABDRST] (.+)$/);' | grep -v ^_ | grep -v _reset_vector | grep = | perl -ne 'print "{(const char*)s_$1, (void*)$2},\n" if(/(\w+) = (\w+)/)' | sort >> symbols.c
|
|
echo "{(const char *)0, (void*)0} };" >> symbols.c
|