summaryrefslogtreecommitdiff
path: root/src/basic/arphrd-to-name.awk
diff options
context:
space:
mode:
Diffstat (limited to 'src/basic/arphrd-to-name.awk')
-rw-r--r--src/basic/arphrd-to-name.awk5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/basic/arphrd-to-name.awk b/src/basic/arphrd-to-name.awk
new file mode 100644
index 0000000000..57e4680f17
--- /dev/null
+++ b/src/basic/arphrd-to-name.awk
@@ -0,0 +1,5 @@
+BEGIN{ print "static const char* const arphrd_names[] = { "}
+!/CISCO/ {
+ printf " [ARPHRD_%s] = \"%s\",\n", $1, $1
+}
+END{print "};"}