summaryrefslogtreecommitdiff
path: root/dhcpcd/genembedh
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-01-30 13:29:46 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-01-30 16:23:03 +0100
commitf2ed769880271654297a4be420f26ab94d39666b (patch)
tree4cbfc23184993e8ef11bb1d60b307cbb3644a259 /dhcpcd/genembedh
parent9979989ee04b63cdb5e99a6c628af2a0a72c1586 (diff)
DHCPCD(8): Import
Import DHCPCD(8) from: http://roy.marples.name/projects/dhcpcd/ The upstream sources can be obtained via: fossil clone http://roy.marples.name/projects/dhcpcd The imported version is 2014-01-29 19:46:44 [6b209507bb].
Diffstat (limited to 'dhcpcd/genembedh')
-rwxr-xr-xdhcpcd/genembedh15
1 files changed, 15 insertions, 0 deletions
diff --git a/dhcpcd/genembedh b/dhcpcd/genembedh
new file mode 100755
index 00000000..a155cfae
--- /dev/null
+++ b/dhcpcd/genembedh
@@ -0,0 +1,15 @@
+#!/bin/sh
+set -e
+
+: ${TOOL_SED:=sed}
+: ${TOOL_GREP:=grep}
+: ${TOOL_WC:=wc}
+CONF=${1:-dhcpcd-definitions.conf}
+H=${2:-dhcpcd-embedded.h.in}
+
+INITDEFINES=$($TOOL_GREP "^define " $CONF | $TOOL_WC -l)
+INITDEFINE6S=$($TOOL_GREP "^define6 " $CONF | $TOOL_WC -l)
+$TOOL_SED \
+ -e "s/@INITDEFINES@/$INITDEFINES/" \
+ -e "s/@INITDEFINE6S@/$INITDEFINE6S/" \
+ $H