summaryrefslogtreecommitdiff
path: root/src/basic/arphrd-to-name.awk
blob: 57e4680f17454e0c0c2df421f4e8b64f9c4815ed (plain)
1
2
3
4
5
BEGIN{ print "static const char* const arphrd_names[] = { "}
!/CISCO/ {
    printf "        [ARPHRD_%s] = \"%s\",\n", $1, $1
}
END{print "};"}